2006-10-01 Havoc Pennington <hp@redhat.com>
[platform/upstream/dbus.git] / bus / dispatch.c
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dispatch.c  Message dispatcher
3  *
4  * Copyright (C) 2003  CodeFactory AB
5  * Copyright (C) 2003, 2004, 2005  Red Hat, Inc.
6  * Copyright (C) 2004  Imendio HB
7  *
8  * Licensed under the Academic Free License version 2.1
9  * 
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.
14  *
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.
19  * 
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
23  *
24  */
25
26 #include "dispatch.h"
27 #include "connection.h"
28 #include "driver.h"
29 #include "services.h"
30 #include "activation.h"
31 #include "utils.h"
32 #include "bus.h"
33 #include "signals.h"
34 #include "test.h"
35 #include <dbus/dbus-internals.h>
36 #include <string.h>
37
38 static dbus_bool_t
39 send_one_message (DBusConnection *connection,
40                   BusContext     *context,
41                   DBusConnection *sender,
42                   DBusConnection *addressed_recipient,
43                   DBusMessage    *message,
44                   BusTransaction *transaction,
45                   DBusError      *error)
46 {
47   if (!bus_context_check_security_policy (context, transaction,
48                                           sender,
49                                           addressed_recipient,
50                                           connection,
51                                           message,
52                                           NULL))
53     return TRUE; /* silently don't send it */
54   
55   if (!bus_transaction_send (transaction,
56                              connection,
57                              message))
58     {
59       BUS_SET_OOM (error);
60       return FALSE;
61     }
62
63   return TRUE;
64 }
65
66 dbus_bool_t
67 bus_dispatch_matches (BusTransaction *transaction,
68                       DBusConnection *sender,
69                       DBusConnection *addressed_recipient,
70                       DBusMessage    *message,
71                       DBusError      *error)
72 {
73   DBusError tmp_error;
74   BusConnections *connections;
75   DBusList *recipients;
76   BusMatchmaker *matchmaker;
77   DBusList *link;
78   BusContext *context;
79
80   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
81
82   /* sender and recipient can both be NULL for the bus driver,
83    * or for signals with no particular recipient
84    */
85
86   _dbus_assert (sender == NULL || bus_connection_is_active (sender));
87   _dbus_assert (dbus_message_get_sender (message) != NULL);
88
89   connections = bus_transaction_get_connections (transaction);
90   
91   dbus_error_init (&tmp_error);
92   context = bus_transaction_get_context (transaction);
93   matchmaker = bus_context_get_matchmaker (context);
94
95   recipients = NULL;
96   if (!bus_matchmaker_get_recipients (matchmaker, connections,
97                                       sender, addressed_recipient, message,
98                                       &recipients))
99     {
100       BUS_SET_OOM (error);
101       return FALSE;
102     }
103
104   link = _dbus_list_get_first_link (&recipients);
105   while (link != NULL)
106     {
107       DBusConnection *dest;
108
109       dest = link->data;
110
111       if (!send_one_message (dest, context, sender, addressed_recipient,
112                              message, transaction, &tmp_error))
113         break;
114
115       link = _dbus_list_get_next_link (&recipients, link);
116     }
117
118   _dbus_list_clear (&recipients);
119   
120   if (dbus_error_is_set (&tmp_error))
121     {
122       dbus_move_error (&tmp_error, error);
123       return FALSE;
124     }
125   else
126     return TRUE;
127 }
128
129 static DBusHandlerResult
130 bus_dispatch (DBusConnection *connection,
131               DBusMessage    *message)
132 {
133   const char *sender, *service_name;
134   DBusError error;
135   BusTransaction *transaction;
136   BusContext *context;
137   DBusHandlerResult result;
138   DBusConnection *addressed_recipient;
139   
140   result = DBUS_HANDLER_RESULT_HANDLED;
141   
142   transaction = NULL;
143   addressed_recipient = NULL;
144   dbus_error_init (&error);
145   
146   context = bus_connection_get_context (connection);
147   _dbus_assert (context != NULL);
148   
149   /* If we can't even allocate an OOM error, we just go to sleep
150    * until we can.
151    */
152   while (!bus_connection_preallocate_oom_error (connection))
153     _dbus_wait_for_memory ();
154   
155   /* Ref connection in case we disconnect it at some point in here */
156   dbus_connection_ref (connection);
157   
158   service_name = dbus_message_get_destination (message);
159
160 #ifdef DBUS_ENABLE_VERBOSE_MODE
161   {
162     const char *interface_name, *member_name, *error_name;
163
164     interface_name = dbus_message_get_interface (message);
165     member_name = dbus_message_get_member (message);
166     error_name = dbus_message_get_error_name (message);
167     
168     _dbus_verbose ("DISPATCH: %s %s %s to %s\n",
169                    interface_name ? interface_name : "(no interface)",
170                    member_name ? member_name : "(no member)",
171                    error_name ? error_name : "(no error name)",
172                    service_name ? service_name : "peer");
173   }
174 #endif /* DBUS_ENABLE_VERBOSE_MODE */
175   
176   /* If service_name is NULL, if it's a signal we send it to all
177    * connections with a match rule. If it's not a signal, there
178    * are some special cases here but mostly we just bail out.
179    */
180   if (service_name == NULL)
181     {
182       if (dbus_message_is_signal (message,
183                                   DBUS_INTERFACE_LOCAL,
184                                   "Disconnected"))
185         {
186           bus_connection_disconnected (connection);
187           goto out;
188         }
189
190       if (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_SIGNAL)
191         {
192           /* DBusConnection also handles some of these automatically, we leave
193            * it to do so.
194            */
195           result = DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
196           goto out;
197         }
198     }
199   
200   /* Create our transaction */
201   transaction = bus_transaction_new (context);
202   if (transaction == NULL)
203     {
204       BUS_SET_OOM (&error);
205       goto out;
206     }
207   
208   /* Assign a sender to the message */
209   if (bus_connection_is_active (connection))
210     {
211       sender = bus_connection_get_name (connection);
212       _dbus_assert (sender != NULL);
213
214       if (!dbus_message_set_sender (message, sender))
215         {
216           BUS_SET_OOM (&error);
217           goto out;
218         }
219
220       /* We need to refetch the service name here, because
221        * dbus_message_set_sender can cause the header to be
222        * reallocated, and thus the service_name pointer will become
223        * invalid.
224        */
225       service_name = dbus_message_get_destination (message);
226     }
227   
228   if (service_name &&
229       strcmp (service_name, DBUS_SERVICE_DBUS) == 0) /* to bus driver */
230     {
231       if (!bus_context_check_security_policy (context, transaction,
232                                               connection, NULL, NULL, message, &error))
233         {
234           _dbus_verbose ("Security policy rejected message\n");
235           goto out;
236         }
237
238       _dbus_verbose ("Giving message to %s\n", DBUS_SERVICE_DBUS);
239       if (!bus_driver_handle_message (connection, transaction, message, &error))
240         goto out;
241     }
242   else if (!bus_connection_is_active (connection)) /* clients must talk to bus driver first */
243     {
244       _dbus_verbose ("Received message from non-registered client. Disconnecting.\n");
245       dbus_connection_close (connection);
246       goto out;
247     }
248   else if (service_name != NULL) /* route to named service */
249     {
250       DBusString service_string;
251       BusService *service;
252       BusRegistry *registry;
253
254       _dbus_assert (service_name != NULL);
255       
256       registry = bus_connection_get_registry (connection);
257       
258       _dbus_string_init_const (&service_string, service_name);
259       service = bus_registry_lookup (registry, &service_string);
260
261       if (service == NULL && dbus_message_get_auto_start (message))
262         {
263           BusActivation *activation;
264           /* We can't do the security policy check here, since the addressed
265            * recipient service doesn't exist yet. We do it before sending the
266            * message after the service has been created.
267            */
268           activation = bus_connection_get_activation (connection);
269
270           if (!bus_activation_activate_service (activation, connection, transaction, TRUE,
271                                                 message, service_name, &error))
272             {
273               _DBUS_ASSERT_ERROR_IS_SET (&error);
274               _dbus_verbose ("bus_activation_activate_service() failed: %s\n", error.name);
275               goto out;
276             }
277           
278           goto out;
279         }
280       else if (service == NULL)
281         {
282           dbus_set_error (&error,
283                           DBUS_ERROR_NAME_HAS_NO_OWNER,
284                           "Name \"%s\" does not exist",
285                           service_name);
286           goto out;
287         }
288       else
289         {
290           addressed_recipient = bus_service_get_primary_owners_connection (service);
291           _dbus_assert (addressed_recipient != NULL);
292           
293           if (!bus_context_check_security_policy (context, transaction,
294                                                   connection, addressed_recipient,
295                                                   addressed_recipient,
296                                                   message, &error))
297             goto out;
298           
299           /* Dispatch the message */
300           if (!bus_transaction_send (transaction, addressed_recipient, message))
301             {
302               BUS_SET_OOM (&error);
303               goto out;
304             }
305         }
306     }
307
308   /* Now match the messages against any match rules, which will send
309    * out signals and such. addressed_recipient may == NULL.
310    */
311   if (!bus_dispatch_matches (transaction, connection, addressed_recipient, message, &error))
312     goto out;
313   
314  out:
315   if (dbus_error_is_set (&error))
316     {
317       if (!dbus_connection_get_is_connected (connection))
318         {
319           /* If we disconnected it, we won't bother to send it any error
320            * messages.
321            */
322           _dbus_verbose ("Not sending error to connection we disconnected\n");
323         }
324       else if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
325         {
326           bus_connection_send_oom_error (connection, message);
327
328           /* cancel transaction due to OOM */
329           if (transaction != NULL)
330             {
331               bus_transaction_cancel_and_free (transaction);
332               transaction = NULL;
333             }
334         }
335       else
336         {
337           /* Try to send the real error, if no mem to do that, send
338            * the OOM error
339            */
340           _dbus_assert (transaction != NULL);
341           if (!bus_transaction_send_error_reply (transaction, connection,
342                                                  &error, message))
343             {
344               bus_connection_send_oom_error (connection, message);
345               
346               /* cancel transaction due to OOM */
347               if (transaction != NULL)
348                 {
349                   bus_transaction_cancel_and_free (transaction);
350                   transaction = NULL;
351                 }
352             }
353         }
354      
355       
356       dbus_error_free (&error);
357     }
358
359   if (transaction != NULL)
360     {
361       bus_transaction_execute_and_free (transaction);
362     }
363
364   dbus_connection_unref (connection);
365
366   return result;
367 }
368
369 static DBusHandlerResult
370 bus_dispatch_message_filter (DBusConnection     *connection,
371                              DBusMessage        *message,
372                              void               *user_data)
373 {
374   return bus_dispatch (connection, message);
375 }
376
377 dbus_bool_t
378 bus_dispatch_add_connection (DBusConnection *connection)
379 {  
380   if (!dbus_connection_add_filter (connection,
381                                    bus_dispatch_message_filter,
382                                    NULL, NULL))
383     return FALSE;
384   
385   return TRUE;
386 }
387
388 void
389 bus_dispatch_remove_connection (DBusConnection *connection)
390 {
391   /* Here we tell the bus driver that we want to get off. */
392   bus_driver_remove_connection (connection);
393
394   dbus_connection_remove_filter (connection,
395                                  bus_dispatch_message_filter,
396                                  NULL);
397 }
398
399 #ifdef DBUS_BUILD_TESTS
400
401 #include <stdio.h>
402
403 /* This is used to know whether we need to block in order to finish
404  * sending a message, or whether the initial dbus_connection_send()
405  * already flushed the queue.
406  */
407 #define SEND_PENDING(connection) (dbus_connection_has_messages_to_send (connection))
408
409 typedef dbus_bool_t (* Check1Func) (BusContext     *context);
410 typedef dbus_bool_t (* Check2Func) (BusContext     *context,
411                                     DBusConnection *connection);
412
413 static dbus_bool_t check_no_leftovers (BusContext *context);
414
415 static void
416 block_connection_until_message_from_bus (BusContext     *context,
417                                          DBusConnection *connection,
418                                          const char     *what_is_expected)
419 {
420   _dbus_verbose ("expecting: %s\n", what_is_expected);
421   
422   while (dbus_connection_get_dispatch_status (connection) ==
423          DBUS_DISPATCH_COMPLETE &&
424          dbus_connection_get_is_connected (connection))
425     {
426       bus_test_run_bus_loop (context, TRUE);
427       bus_test_run_clients_loop (FALSE);
428     }
429 }
430
431 static void
432 spin_connection_until_authenticated (BusContext     *context,
433                                      DBusConnection *connection)
434 {
435   _dbus_verbose ("Spinning to auth connection %p\n", connection);
436   while (!dbus_connection_get_is_authenticated (connection) &&
437          dbus_connection_get_is_connected (connection))
438     {
439       bus_test_run_bus_loop (context, FALSE);
440       bus_test_run_clients_loop (FALSE);
441     }
442   _dbus_verbose (" ... done spinning to auth connection %p\n", connection);
443 }
444
445 /* compensate for fact that pop_message() can return #NULL due to OOM */
446 static DBusMessage*
447 pop_message_waiting_for_memory (DBusConnection *connection)
448 {
449   while (dbus_connection_get_dispatch_status (connection) ==
450          DBUS_DISPATCH_NEED_MEMORY)
451     _dbus_wait_for_memory ();
452
453   return dbus_connection_pop_message (connection);
454 }
455
456 static DBusMessage*
457 borrow_message_waiting_for_memory (DBusConnection *connection)
458 {
459   while (dbus_connection_get_dispatch_status (connection) ==
460          DBUS_DISPATCH_NEED_MEMORY)
461     _dbus_wait_for_memory ();
462
463   return dbus_connection_borrow_message (connection);
464 }
465
466 static void
467 warn_unexpected_real (DBusConnection *connection,
468                       DBusMessage    *message,
469                       const char     *expected,
470                       const char     *function,
471                       int             line)
472 {
473   if (message)
474     _dbus_warn ("%s:%d received message interface \"%s\" member \"%s\" error name \"%s\" on %p, expecting %s\n",
475                 function, line,
476                 dbus_message_get_interface (message) ?
477                 dbus_message_get_interface (message) : "(unset)",
478                 dbus_message_get_member (message) ?
479                 dbus_message_get_member (message) : "(unset)",
480                 dbus_message_get_error_name (message) ?
481                 dbus_message_get_error_name (message) : "(unset)",
482                 connection,
483                 expected);
484   else
485     _dbus_warn ("%s:%d received no message on %p, expecting %s\n",
486                 function, line, connection, expected);
487 }
488
489 #define warn_unexpected(connection, message, expected) \
490   warn_unexpected_real (connection, message, expected, _DBUS_FUNCTION_NAME, __LINE__)
491
492 static void
493 verbose_message_received (DBusConnection *connection,
494                           DBusMessage    *message)
495 {
496   _dbus_verbose ("Received message interface \"%s\" member \"%s\" error name \"%s\" on %p\n",
497                  dbus_message_get_interface (message) ?
498                  dbus_message_get_interface (message) : "(unset)",
499                  dbus_message_get_member (message) ?
500                  dbus_message_get_member (message) : "(unset)",
501                  dbus_message_get_error_name (message) ?
502                  dbus_message_get_error_name (message) : "(unset)",
503                  connection);
504 }
505
506 typedef enum
507 {
508   SERVICE_CREATED,
509   OWNER_CHANGED,
510   SERVICE_DELETED
511 } ServiceInfoKind;
512
513 typedef struct
514 {
515   ServiceInfoKind expected_kind;
516   const char *expected_service_name;
517   dbus_bool_t failed;
518   DBusConnection *skip_connection;
519 } CheckServiceOwnerChangedData;
520
521 static dbus_bool_t
522 check_service_owner_changed_foreach (DBusConnection *connection,
523                                      void           *data)
524 {
525   CheckServiceOwnerChangedData *d = data;
526   DBusMessage *message;
527   DBusError error;
528   const char *service_name, *old_owner, *new_owner;
529
530   if (d->expected_kind == SERVICE_CREATED 
531       && connection == d->skip_connection)
532     return TRUE;
533
534   dbus_error_init (&error);
535   d->failed = TRUE;
536   
537   message = pop_message_waiting_for_memory (connection);
538   if (message == NULL)
539     {
540       _dbus_warn ("Did not receive a message on %p, expecting %s\n",
541                   connection, "NameOwnerChanged");
542       goto out;
543     }
544   else if (!dbus_message_is_signal (message,
545                                     DBUS_INTERFACE_DBUS,
546                                     "NameOwnerChanged"))
547     {
548       warn_unexpected (connection, message, "NameOwnerChanged");
549
550       goto out;
551     }
552   else
553     {
554     reget_service_info_data:
555       service_name = NULL;
556       old_owner = NULL;
557       new_owner = NULL;
558
559       dbus_message_get_args (message, &error,
560                              DBUS_TYPE_STRING, &service_name,
561                              DBUS_TYPE_STRING, &old_owner,
562                              DBUS_TYPE_STRING, &new_owner,
563                              DBUS_TYPE_INVALID);
564
565       if (dbus_error_is_set (&error))
566         {
567           if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
568             {
569               dbus_error_free (&error);
570               _dbus_wait_for_memory ();              
571               goto reget_service_info_data;
572             }
573           else
574             {
575               _dbus_warn ("Did not get the expected arguments\n");
576               goto out;
577             }
578         }
579
580       if ((d->expected_kind == SERVICE_CREATED    && ( old_owner[0] || !new_owner[0]))
581           || (d->expected_kind == OWNER_CHANGED   && (!old_owner[0] || !new_owner[0]))
582           || (d->expected_kind == SERVICE_DELETED && (!old_owner[0] ||  new_owner[0])))
583         {
584           _dbus_warn ("inconsistent NameOwnerChanged arguments");
585           goto out;
586         }
587
588       if (strcmp (service_name, d->expected_service_name) != 0)
589         {
590           _dbus_warn ("expected info on service %s, got info on %s\n",
591                       d->expected_service_name,
592                       service_name);
593           goto out;
594         }
595
596       if (*service_name == ':' && new_owner[0] 
597           && strcmp (service_name, new_owner) != 0)
598         {
599           _dbus_warn ("inconsistent ServiceOwnedChanged message (\"%s\" [ %s -> %s ])\n",
600                       service_name, old_owner, new_owner);
601           goto out;
602         }
603     }
604
605   d->failed = FALSE;
606   
607  out:
608   dbus_error_free (&error);
609   
610   if (message)
611     dbus_message_unref (message);
612
613   return !d->failed;
614 }
615
616
617 static void
618 kill_client_connection (BusContext     *context,
619                         DBusConnection *connection)
620 {
621   char *base_service;
622   const char *s;
623   CheckServiceOwnerChangedData socd;
624
625   _dbus_verbose ("killing connection %p\n", connection);
626   
627   s = dbus_bus_get_unique_name (connection);
628   _dbus_assert (s != NULL);
629
630   while ((base_service = _dbus_strdup (s)) == NULL)
631     _dbus_wait_for_memory ();
632
633   dbus_connection_ref (connection);
634   
635   /* kick in the disconnect handler that unrefs the connection */
636   dbus_connection_close (connection);
637
638   bus_test_run_everything (context);
639   
640   _dbus_assert (bus_test_client_listed (connection));
641   
642   /* Run disconnect handler in test.c */
643   if (bus_connection_dispatch_one_message (connection))
644     _dbus_assert_not_reached ("something received on connection being killed other than the disconnect");
645   
646   _dbus_assert (!dbus_connection_get_is_connected (connection));
647   dbus_connection_unref (connection);
648   connection = NULL;
649   _dbus_assert (!bus_test_client_listed (connection));
650   
651   socd.expected_kind = SERVICE_DELETED;
652   socd.expected_service_name = base_service;
653   socd.failed = FALSE;
654   socd.skip_connection = NULL;
655   
656   bus_test_clients_foreach (check_service_owner_changed_foreach,
657                             &socd);
658
659   dbus_free (base_service);
660   
661   if (socd.failed)
662     _dbus_assert_not_reached ("didn't get the expected NameOwnerChanged (deletion) messages");
663   
664   if (!check_no_leftovers (context))
665     _dbus_assert_not_reached ("stuff left in message queues after disconnecting a client");
666 }
667
668 static void
669 kill_client_connection_unchecked (DBusConnection *connection)
670 {
671   /* This kills the connection without expecting it to affect
672    * the rest of the bus.
673    */  
674   _dbus_verbose ("Unchecked kill of connection %p\n", connection);
675
676   dbus_connection_ref (connection);
677   dbus_connection_close (connection);
678   /* dispatching disconnect handler will unref once */
679   if (bus_connection_dispatch_one_message (connection))
680     _dbus_assert_not_reached ("message other than disconnect dispatched after failure to register");
681
682   _dbus_assert (!bus_test_client_listed (connection));
683   dbus_connection_unref (connection);
684 }
685
686 typedef struct
687 {
688   dbus_bool_t failed;
689 } CheckNoMessagesData;
690
691 static dbus_bool_t
692 check_no_messages_foreach (DBusConnection *connection,
693                            void           *data)
694 {
695   CheckNoMessagesData *d = data;
696   DBusMessage *message;
697
698   message = pop_message_waiting_for_memory (connection);
699   if (message != NULL)
700     {
701       warn_unexpected (connection, message, "no messages");
702
703       d->failed = TRUE;
704     }
705
706   if (message)
707     dbus_message_unref (message);
708   return !d->failed;
709 }
710
711 static dbus_bool_t
712 check_no_leftovers (BusContext *context)
713 {
714   CheckNoMessagesData nmd;
715
716   nmd.failed = FALSE;
717   bus_test_clients_foreach (check_no_messages_foreach,
718                             &nmd);
719   
720   if (nmd.failed)
721     {
722       _dbus_verbose ("%s: leftover message found\n",
723                      _DBUS_FUNCTION_NAME);
724       return FALSE;
725     }
726   else
727     return TRUE;
728 }
729
730 /* returns TRUE if the correct thing happens,
731  * but the correct thing may include OOM errors.
732  */
733 static dbus_bool_t
734 check_hello_message (BusContext     *context,
735                      DBusConnection *connection)
736 {
737   DBusMessage *message;
738   DBusMessage *name_message;
739   dbus_uint32_t serial;
740   dbus_bool_t retval;
741   DBusError error;
742   const char *name;
743   const char *acquired;
744
745   retval = FALSE;
746   dbus_error_init (&error);
747   name = NULL;
748   acquired = NULL;
749   message = NULL;
750   name_message = NULL;
751
752   _dbus_verbose ("check_hello_message for %p\n", connection);
753   
754   message = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
755                                           DBUS_PATH_DBUS,
756                                           DBUS_INTERFACE_DBUS,
757                                           "Hello");
758
759   if (message == NULL)
760     return TRUE;
761
762   dbus_connection_ref (connection); /* because we may get disconnected */
763   
764   if (!dbus_connection_send (connection, message, &serial))
765     {
766       dbus_message_unref (message);
767       dbus_connection_unref (connection);
768       return TRUE;
769     }
770
771   _dbus_assert (dbus_message_has_signature (message, ""));
772   
773   dbus_message_unref (message);
774   message = NULL;
775
776   if (!dbus_connection_get_is_connected (connection))
777     {
778       _dbus_verbose ("connection was disconnected (presumably auth failed)\n");
779       
780       dbus_connection_unref (connection);
781       
782       return TRUE;
783     }
784   
785   /* send our message */
786   bus_test_run_clients_loop (SEND_PENDING (connection));
787
788   if (!dbus_connection_get_is_connected (connection))
789     {
790       _dbus_verbose ("connection was disconnected (presumably auth failed)\n");
791       
792       dbus_connection_unref (connection);
793       
794       return TRUE;
795     }
796   
797   block_connection_until_message_from_bus (context, connection, "reply to Hello");
798
799   if (!dbus_connection_get_is_connected (connection))
800     {
801       _dbus_verbose ("connection was disconnected (presumably auth failed)\n");
802       
803       dbus_connection_unref (connection);
804       
805       return TRUE;
806     }
807
808   dbus_connection_unref (connection);
809   
810   message = pop_message_waiting_for_memory (connection);
811   if (message == NULL)
812     {
813       _dbus_warn ("Did not receive a reply to %s %d on %p\n",
814                   "Hello", serial, connection);
815       goto out;
816     }
817
818   verbose_message_received (connection, message);
819
820   if (!dbus_message_has_sender (message, DBUS_SERVICE_DBUS))
821     {
822       _dbus_warn ("Message has wrong sender %s\n",
823                   dbus_message_get_sender (message) ?
824                   dbus_message_get_sender (message) : "(none)");
825       goto out;
826     }
827   
828   if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_ERROR)
829     {
830       if (dbus_message_is_error (message,
831                                  DBUS_ERROR_NO_MEMORY))
832         {
833           ; /* good, this is a valid response */
834         }
835       else
836         {
837           warn_unexpected (connection, message, "not this error");
838
839           goto out;
840         }
841     }
842   else
843     {
844       CheckServiceOwnerChangedData socd;
845       
846       if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_METHOD_RETURN)
847         {
848           ; /* good, expected */
849         }
850       else
851         {
852           warn_unexpected (connection, message, "method return for Hello");
853
854           goto out;
855         }
856
857     retry_get_hello_name:
858       if (!dbus_message_get_args (message, &error,
859                                   DBUS_TYPE_STRING, &name,
860                                   DBUS_TYPE_INVALID))
861         {
862           if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
863             {
864               _dbus_verbose ("no memory to get service name arg from hello\n");
865               dbus_error_free (&error);
866               _dbus_wait_for_memory ();
867               goto retry_get_hello_name;
868             }
869           else
870             {
871               _dbus_assert (dbus_error_is_set (&error));
872               _dbus_warn ("Did not get the expected single string argument to hello\n");
873               goto out;
874             }
875         }
876
877       _dbus_verbose ("Got hello name: %s\n", name);
878
879       while (!dbus_bus_set_unique_name (connection, name))
880         _dbus_wait_for_memory ();
881       
882       socd.expected_kind = SERVICE_CREATED;
883       socd.expected_service_name = name;
884       socd.failed = FALSE;
885       socd.skip_connection = connection; /* we haven't done AddMatch so won't get it ourselves */
886       bus_test_clients_foreach (check_service_owner_changed_foreach,
887                                 &socd);
888       
889       if (socd.failed)
890         goto out;
891
892       name_message = message;
893       /* Client should also have gotten ServiceAcquired */
894
895       message = pop_message_waiting_for_memory (connection);
896       if (message == NULL)
897         {
898           _dbus_warn ("Expecting %s, got nothing\n",
899                       "NameAcquired");
900           goto out;
901         }
902       if (! dbus_message_is_signal (message, DBUS_INTERFACE_DBUS,
903                                     "NameAcquired"))
904         {
905           _dbus_warn ("Expecting %s, got smthg else\n",
906                       "NameAcquired");
907           goto out;
908         }
909       
910     retry_get_acquired_name:
911       if (!dbus_message_get_args (message, &error,
912                                   DBUS_TYPE_STRING, &acquired,
913                                   DBUS_TYPE_INVALID))
914         {
915           if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
916             {
917               _dbus_verbose ("no memory to get service name arg from acquired\n");
918               dbus_error_free (&error);
919               _dbus_wait_for_memory ();
920               goto retry_get_acquired_name;
921             }
922           else
923             {
924               _dbus_assert (dbus_error_is_set (&error));
925               _dbus_warn ("Did not get the expected single string argument to ServiceAcquired\n");
926               goto out;
927             }
928         }
929
930       _dbus_verbose ("Got acquired name: %s\n", acquired);
931
932       if (strcmp (acquired, name) != 0)
933         {
934           _dbus_warn ("Acquired name is %s but expected %s\n",
935                       acquired, name);
936           goto out;
937         }
938       acquired = NULL;
939     }
940
941   if (!check_no_leftovers (context))
942     goto out;
943   
944   retval = TRUE;
945   
946  out:
947   _dbus_verbose ("ending %s retval = %d\n", _DBUS_FUNCTION_NAME, retval);
948   
949   dbus_error_free (&error);
950   
951   if (message)
952     dbus_message_unref (message);
953
954   if (name_message)
955     dbus_message_unref (name_message);
956   
957   return retval;
958 }
959
960 /* returns TRUE if the correct thing happens,
961  * but the correct thing may include OOM errors.
962  */
963 static dbus_bool_t
964 check_double_hello_message (BusContext     *context,
965                             DBusConnection *connection)
966 {
967   DBusMessage *message;
968   dbus_uint32_t serial;
969   dbus_bool_t retval;
970   DBusError error;
971
972   retval = FALSE;
973   dbus_error_init (&error);
974   message = NULL;
975
976   _dbus_verbose ("check_double_hello_message for %p\n", connection);
977   
978   message = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
979                                           DBUS_PATH_DBUS,
980                                           DBUS_INTERFACE_DBUS,
981                                           "Hello");
982
983   if (message == NULL)
984     return TRUE;
985   
986   if (!dbus_connection_send (connection, message, &serial))
987     {
988       dbus_message_unref (message);
989       return TRUE;
990     }
991
992   dbus_message_unref (message);
993   message = NULL;
994
995   /* send our message */
996   bus_test_run_clients_loop (SEND_PENDING (connection));
997
998   dbus_connection_ref (connection); /* because we may get disconnected */
999   block_connection_until_message_from_bus (context, connection, "reply to Hello");
1000
1001   if (!dbus_connection_get_is_connected (connection))
1002     {
1003       _dbus_verbose ("connection was disconnected: %s %d\n", _DBUS_FUNCTION_NAME, __LINE__);
1004       
1005       dbus_connection_unref (connection);
1006       
1007       return TRUE;
1008     }
1009
1010   dbus_connection_unref (connection);
1011   
1012   message = pop_message_waiting_for_memory (connection);
1013   if (message == NULL)
1014     {
1015       _dbus_warn ("Did not receive a reply to %s %d on %p\n",
1016                   "Hello", serial, connection);
1017       goto out;
1018     }
1019
1020   verbose_message_received (connection, message);
1021
1022   if (!dbus_message_has_sender (message, DBUS_SERVICE_DBUS))
1023     {
1024       _dbus_warn ("Message has wrong sender %s\n",
1025                   dbus_message_get_sender (message) ?
1026                   dbus_message_get_sender (message) : "(none)");
1027       goto out;
1028     }
1029   
1030   if (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_ERROR)
1031     {
1032       warn_unexpected (connection, message, "method return for Hello");
1033       goto out;
1034     }
1035
1036   if (!check_no_leftovers (context))
1037     goto out;
1038   
1039   retval = TRUE;
1040   
1041  out:
1042   dbus_error_free (&error);
1043   
1044   if (message)
1045     dbus_message_unref (message);
1046   
1047   return retval;
1048 }
1049
1050 /* returns TRUE if the correct thing happens,
1051  * but the correct thing may include OOM errors.
1052  */
1053 static dbus_bool_t
1054 check_get_connection_unix_user (BusContext     *context,
1055                                 DBusConnection *connection)
1056 {
1057   DBusMessage *message;
1058   dbus_uint32_t serial;
1059   dbus_bool_t retval;
1060   DBusError error;
1061   const char *base_service_name;
1062   dbus_uint32_t uid;
1063
1064   retval = FALSE;
1065   dbus_error_init (&error);
1066   message = NULL;
1067
1068   _dbus_verbose ("check_get_connection_unix_user for %p\n", connection);
1069   
1070   message = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
1071                                           DBUS_PATH_DBUS,
1072                                           DBUS_INTERFACE_DBUS,
1073                                           "GetConnectionUnixUser");
1074
1075   if (message == NULL)
1076     return TRUE;
1077
1078   base_service_name = dbus_bus_get_unique_name (connection);
1079
1080   if (!dbus_message_append_args (message, 
1081                                  DBUS_TYPE_STRING, &base_service_name,
1082                                  DBUS_TYPE_INVALID))
1083     {
1084       dbus_message_unref (message);
1085       return TRUE;
1086     }
1087
1088   if (!dbus_connection_send (connection, message, &serial))
1089     {
1090       dbus_message_unref (message);
1091       return TRUE;
1092     }
1093
1094   /* send our message */
1095   bus_test_run_clients_loop (SEND_PENDING (connection));
1096
1097   dbus_message_unref (message);
1098   message = NULL;
1099
1100   dbus_connection_ref (connection); /* because we may get disconnected */
1101   block_connection_until_message_from_bus (context, connection, "reply to GetConnectionUnixUser");
1102
1103   if (!dbus_connection_get_is_connected (connection))
1104     {
1105       _dbus_verbose ("connection was disconnected: %s %d\n", _DBUS_FUNCTION_NAME, __LINE__);
1106       
1107       dbus_connection_unref (connection);
1108       
1109       return TRUE;
1110     }
1111
1112   dbus_connection_unref (connection);
1113
1114   message = pop_message_waiting_for_memory (connection);
1115   if (message == NULL)
1116     {
1117       _dbus_warn ("Did not receive a reply to %s %d on %p\n",
1118                   "GetConnectionUnixUser", serial, connection);
1119       goto out;
1120     }
1121
1122   verbose_message_received (connection, message);
1123
1124   if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_ERROR)
1125     {
1126       if (dbus_message_is_error (message, DBUS_ERROR_NO_MEMORY))
1127         {
1128           ; /* good, this is a valid response */
1129         }
1130       else
1131         {
1132           warn_unexpected (connection, message, "not this error");
1133
1134           goto out;
1135         }
1136     }
1137   else
1138     {
1139       if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_METHOD_RETURN)
1140         {
1141           ; /* good, expected */
1142         }
1143       else
1144         {
1145           warn_unexpected (connection, message,
1146                            "method_return for GetConnectionUnixUser");
1147
1148           goto out;
1149         }
1150
1151     retry_get_property:
1152
1153       if (!dbus_message_get_args (message, &error,
1154                                   DBUS_TYPE_UINT32, &uid,
1155                                   DBUS_TYPE_INVALID))
1156         {
1157           if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
1158             {
1159               _dbus_verbose ("no memory to get uid by GetConnectionUnixUser\n");
1160               dbus_error_free (&error);
1161               _dbus_wait_for_memory ();
1162               goto retry_get_property;
1163             }
1164           else
1165             {
1166               _dbus_assert (dbus_error_is_set (&error));
1167               _dbus_warn ("Did not get the expected DBUS_TYPE_UINT32 from GetConnectionUnixUser\n");
1168               goto out;
1169             }
1170         }
1171     }
1172
1173   if (!check_no_leftovers (context))
1174     goto out;
1175
1176   retval = TRUE;
1177
1178  out:
1179   dbus_error_free (&error);
1180   
1181   if (message)
1182     dbus_message_unref (message);
1183   
1184   return retval;
1185 }
1186
1187 /* returns TRUE if the correct thing happens,
1188  * but the correct thing may include OOM errors.
1189  */
1190 static dbus_bool_t
1191 check_get_connection_unix_process_id (BusContext     *context,
1192                                       DBusConnection *connection)
1193 {
1194   DBusMessage *message;
1195   dbus_uint32_t serial;
1196   dbus_bool_t retval;
1197   DBusError error;
1198   const char *base_service_name;
1199   dbus_uint32_t pid;
1200
1201   retval = FALSE;
1202   dbus_error_init (&error);
1203   message = NULL;
1204
1205   _dbus_verbose ("check_get_connection_unix_process_id for %p\n", connection);
1206   
1207   message = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
1208                                           DBUS_PATH_DBUS,
1209                                           DBUS_INTERFACE_DBUS,
1210                                           "GetConnectionUnixProcessID");
1211
1212   if (message == NULL)
1213     return TRUE;
1214
1215   base_service_name = dbus_bus_get_unique_name (connection);
1216
1217   if (!dbus_message_append_args (message, 
1218                                  DBUS_TYPE_STRING, &base_service_name,
1219                                  DBUS_TYPE_INVALID))
1220     {
1221       dbus_message_unref (message);
1222       return TRUE;
1223     }
1224
1225   if (!dbus_connection_send (connection, message, &serial))
1226     {
1227       dbus_message_unref (message);
1228       return TRUE;
1229     }
1230
1231   /* send our message */
1232   bus_test_run_clients_loop (SEND_PENDING (connection));
1233
1234   dbus_message_unref (message);
1235   message = NULL;
1236
1237   dbus_connection_ref (connection); /* because we may get disconnected */
1238   block_connection_until_message_from_bus (context, connection, "reply to GetConnectionUnixProcessID");
1239
1240   if (!dbus_connection_get_is_connected (connection))
1241     {
1242       _dbus_verbose ("connection was disconnected: %s %d\n", _DBUS_FUNCTION_NAME, __LINE__);
1243       
1244       dbus_connection_unref (connection);
1245       
1246       return TRUE;
1247     }
1248
1249   dbus_connection_unref (connection);
1250
1251   message = pop_message_waiting_for_memory (connection);
1252   if (message == NULL)
1253     {
1254       _dbus_warn ("Did not receive a reply to %s %d on %p\n",
1255                   "GetConnectionUnixProcessID", serial, connection);
1256       goto out;
1257     }
1258
1259   verbose_message_received (connection, message);
1260
1261   if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_ERROR)
1262     {
1263       if (dbus_message_is_error (message, DBUS_ERROR_NO_MEMORY))
1264         {
1265           ; /* good, this is a valid response */
1266         }
1267       else
1268         {
1269           warn_unexpected (connection, message, "not this error");
1270
1271           goto out;
1272         }
1273     }
1274   else
1275     {
1276       if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_METHOD_RETURN)
1277         {
1278           ; /* good, expected */
1279         }
1280       else
1281         {
1282           warn_unexpected (connection, message,
1283                            "method_return for GetConnectionUnixProcessID");
1284
1285           goto out;
1286         }
1287
1288     retry_get_property:
1289
1290       if (!dbus_message_get_args (message, &error,
1291                                   DBUS_TYPE_UINT32, &pid,
1292                                   DBUS_TYPE_INVALID))
1293         {
1294           if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
1295             {
1296               _dbus_verbose ("no memory to get pid by GetConnectionUnixProcessID\n");
1297               dbus_error_free (&error);
1298               _dbus_wait_for_memory ();
1299               goto retry_get_property;
1300             }
1301           else
1302             {
1303               _dbus_assert (dbus_error_is_set (&error));
1304               _dbus_warn ("Did not get the expected DBUS_TYPE_UINT32 from GetConnectionUnixProcessID\n");
1305               goto out;
1306             }
1307         } else {
1308
1309           /* test if returned pid is the same as our own pid
1310            *
1311            * @todo It would probably be good to restructure the tests
1312            *       in a way so our parent is the bus that we're testing
1313            *       cause then we can test that the pid returned matches
1314            *       getppid()
1315            */
1316           if (pid != (dbus_uint32_t) _dbus_getpid ())
1317             {
1318               _dbus_assert (dbus_error_is_set (&error));
1319               _dbus_warn ("Result from GetConnectionUnixProcessID is not our own pid\n");
1320               goto out;
1321             }
1322         }
1323     }
1324
1325   if (!check_no_leftovers (context))
1326     goto out;
1327
1328   retval = TRUE;
1329
1330  out:
1331   dbus_error_free (&error);
1332   
1333   if (message)
1334     dbus_message_unref (message);
1335   
1336   return retval;
1337 }
1338
1339 /* returns TRUE if the correct thing happens,
1340  * but the correct thing may include OOM errors.
1341  */
1342 static dbus_bool_t
1343 check_add_match_all (BusContext     *context,
1344                      DBusConnection *connection)
1345 {
1346   DBusMessage *message;
1347   dbus_bool_t retval;
1348   dbus_uint32_t serial;
1349   DBusError error;
1350   const char *empty = "";
1351
1352   retval = FALSE;
1353   dbus_error_init (&error);
1354   message = NULL;
1355
1356   _dbus_verbose ("check_add_match_all for %p\n", connection);
1357   
1358   message = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
1359                                           DBUS_PATH_DBUS,
1360                                           DBUS_INTERFACE_DBUS,
1361                                           "AddMatch");
1362
1363   if (message == NULL)
1364     return TRUE;
1365
1366   /* empty string match rule matches everything */
1367   if (!dbus_message_append_args (message, DBUS_TYPE_STRING, &empty,
1368                                  DBUS_TYPE_INVALID))
1369     {
1370       dbus_message_unref (message);
1371       return TRUE;
1372     }
1373   
1374   if (!dbus_connection_send (connection, message, &serial))
1375     {
1376       dbus_message_unref (message);
1377       return TRUE;
1378     }
1379
1380   dbus_message_unref (message);
1381   message = NULL;
1382
1383   dbus_connection_ref (connection); /* because we may get disconnected */
1384   
1385   /* send our message */
1386   bus_test_run_clients_loop (SEND_PENDING (connection));
1387
1388   if (!dbus_connection_get_is_connected (connection))
1389     {
1390       _dbus_verbose ("connection was disconnected: %s %d\n", _DBUS_FUNCTION_NAME, __LINE__);
1391       
1392       dbus_connection_unref (connection);
1393       
1394       return TRUE;
1395     }
1396   
1397   block_connection_until_message_from_bus (context, connection, "reply to AddMatch");
1398
1399   if (!dbus_connection_get_is_connected (connection))
1400     {
1401       _dbus_verbose ("connection was disconnected: %s %d\n", _DBUS_FUNCTION_NAME, __LINE__);
1402       
1403       dbus_connection_unref (connection);
1404       
1405       return TRUE;
1406     }
1407
1408   dbus_connection_unref (connection);
1409   
1410   message = pop_message_waiting_for_memory (connection);
1411   if (message == NULL)
1412     {
1413       _dbus_warn ("Did not receive a reply to %s %d on %p\n",
1414                   "AddMatch", serial, connection);
1415       goto out;
1416     }
1417
1418   verbose_message_received (connection, message);
1419
1420   if (!dbus_message_has_sender (message, DBUS_SERVICE_DBUS))
1421     {
1422       _dbus_warn ("Message has wrong sender %s\n",
1423                   dbus_message_get_sender (message) ?
1424                   dbus_message_get_sender (message) : "(none)");
1425       goto out;
1426     }
1427   
1428   if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_ERROR)
1429     {
1430       if (dbus_message_is_error (message,
1431                                  DBUS_ERROR_NO_MEMORY))
1432         {
1433           ; /* good, this is a valid response */
1434         }
1435       else
1436         {
1437           warn_unexpected (connection, message, "not this error");
1438
1439           goto out;
1440         }
1441     }
1442   else
1443     {
1444       if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_METHOD_RETURN)
1445         {
1446           ; /* good, expected */
1447           _dbus_assert (dbus_message_get_reply_serial (message) == serial);
1448         }
1449       else
1450         {
1451           warn_unexpected (connection, message, "method return for AddMatch");
1452
1453           goto out;
1454         }
1455     }
1456
1457   if (!check_no_leftovers (context))
1458     goto out;
1459   
1460   retval = TRUE;
1461   
1462  out:
1463   dbus_error_free (&error);
1464   
1465   if (message)
1466     dbus_message_unref (message);
1467   
1468   return retval;
1469 }
1470
1471 /* returns TRUE if the correct thing happens,
1472  * but the correct thing may include OOM errors.
1473  */
1474 static dbus_bool_t
1475 check_hello_connection (BusContext *context)
1476 {
1477   DBusConnection *connection;
1478   DBusError error;
1479
1480   dbus_error_init (&error);
1481
1482   connection = dbus_connection_open_private ("debug-pipe:name=test-server", &error);
1483   if (connection == NULL)
1484     {
1485       _DBUS_ASSERT_ERROR_IS_SET (&error);
1486       dbus_error_free (&error);
1487       return TRUE;
1488     }
1489
1490   if (!bus_setup_debug_client (connection))
1491     {
1492       dbus_connection_close (connection);
1493       dbus_connection_unref (connection);
1494       return TRUE;
1495     }
1496
1497   spin_connection_until_authenticated (context, connection);
1498   
1499   if (!check_hello_message (context, connection))
1500     return FALSE;
1501   
1502   if (dbus_bus_get_unique_name (connection) == NULL)
1503     {
1504       /* We didn't successfully register, so we can't
1505        * do the usual kill_client_connection() checks
1506        */
1507       kill_client_connection_unchecked (connection);
1508     }
1509   else
1510     {
1511       if (!check_add_match_all (context, connection))
1512         return FALSE;
1513       
1514       kill_client_connection (context, connection);
1515     }
1516
1517   return TRUE;
1518 }
1519
1520 #define NONEXISTENT_SERVICE_NAME "test.this.service.does.not.exist.ewuoiurjdfxcvn"
1521
1522 /* returns TRUE if the correct thing happens,
1523  * but the correct thing may include OOM errors.
1524  */
1525 static dbus_bool_t
1526 check_nonexistent_service_no_auto_start (BusContext     *context,
1527                                          DBusConnection *connection)
1528 {
1529   DBusMessage *message;
1530   dbus_uint32_t serial;
1531   dbus_bool_t retval;
1532   const char *nonexistent = NONEXISTENT_SERVICE_NAME;
1533   dbus_uint32_t flags;
1534   
1535   message = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
1536                                           DBUS_PATH_DBUS,
1537                                           DBUS_INTERFACE_DBUS,
1538                                           "StartServiceByName");
1539   
1540   if (message == NULL)
1541     return TRUE;
1542
1543   dbus_message_set_auto_start (message, FALSE);
1544   
1545   flags = 0;
1546   if (!dbus_message_append_args (message,
1547                                  DBUS_TYPE_STRING, &nonexistent,
1548                                  DBUS_TYPE_UINT32, &flags,
1549                                  DBUS_TYPE_INVALID))
1550     {
1551       dbus_message_unref (message);
1552       return TRUE;
1553     }
1554   
1555   if (!dbus_connection_send (connection, message, &serial))
1556     {
1557       dbus_message_unref (message);
1558       return TRUE;
1559     }
1560
1561   dbus_message_unref (message);
1562   message = NULL;
1563
1564   bus_test_run_everything (context);
1565   block_connection_until_message_from_bus (context, connection, "reply to ActivateService on nonexistent");
1566   bus_test_run_everything (context);
1567
1568   if (!dbus_connection_get_is_connected (connection))
1569     {
1570       _dbus_verbose ("connection was disconnected: %s %d\n", _DBUS_FUNCTION_NAME, __LINE__);
1571       return TRUE;
1572     }
1573   
1574   retval = FALSE;
1575   
1576   message = pop_message_waiting_for_memory (connection);
1577   if (message == NULL)
1578     {
1579       _dbus_warn ("Did not receive a reply to %s %d on %p\n",
1580                   "StartServiceByName", serial, connection);
1581       goto out;
1582     }
1583
1584   verbose_message_received (connection, message);
1585
1586   if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_ERROR)
1587     {
1588       if (!dbus_message_has_sender (message, DBUS_SERVICE_DBUS))
1589         {
1590           _dbus_warn ("Message has wrong sender %s\n",
1591                       dbus_message_get_sender (message) ?
1592                       dbus_message_get_sender (message) : "(none)");
1593           goto out;
1594         }
1595       
1596       if (dbus_message_is_error (message,
1597                                  DBUS_ERROR_NO_MEMORY))
1598         {
1599           ; /* good, this is a valid response */
1600         }
1601       else if (dbus_message_is_error (message,
1602                                       DBUS_ERROR_SERVICE_UNKNOWN))
1603         {
1604           ; /* good, this is expected also */
1605         }
1606       else
1607         {
1608           warn_unexpected (connection, message, "not this error");
1609           goto out;
1610         }
1611     }
1612   else
1613     {
1614       _dbus_warn ("Did not expect to successfully activate %s\n",
1615                   NONEXISTENT_SERVICE_NAME);
1616       goto out;
1617     }
1618
1619   retval = TRUE;
1620   
1621  out:
1622   if (message)
1623     dbus_message_unref (message);
1624   
1625   return retval;
1626 }
1627
1628 /* returns TRUE if the correct thing happens,
1629  * but the correct thing may include OOM errors.
1630  */
1631 static dbus_bool_t
1632 check_nonexistent_service_auto_start (BusContext     *context,
1633                                       DBusConnection *connection)
1634 {
1635   DBusMessage *message;
1636   dbus_uint32_t serial;
1637   dbus_bool_t retval;
1638     
1639   message = dbus_message_new_method_call (NONEXISTENT_SERVICE_NAME,
1640                                           "/org/freedesktop/TestSuite",
1641                                           "org.freedesktop.TestSuite",
1642                                           "Echo");
1643   
1644   if (message == NULL)
1645     return TRUE;
1646  
1647   if (!dbus_connection_send (connection, message, &serial))
1648     {
1649       dbus_message_unref (message);
1650       return TRUE;
1651     }
1652
1653   dbus_message_unref (message);
1654   message = NULL;
1655
1656   bus_test_run_everything (context);
1657   block_connection_until_message_from_bus (context, connection, "reply to Echo");
1658   bus_test_run_everything (context);
1659
1660   if (!dbus_connection_get_is_connected (connection))
1661     {
1662       _dbus_verbose ("connection was disconnected: %s %d\n", _DBUS_FUNCTION_NAME, __LINE__);
1663       return TRUE;
1664     }
1665   
1666   retval = FALSE;
1667   
1668   message = pop_message_waiting_for_memory (connection);
1669
1670   if (message == NULL)
1671     {
1672       _dbus_warn ("Did not receive a reply to %s %d on %p\n",
1673                   "Echo message (auto activation)", serial, connection);
1674       goto out;
1675     }
1676
1677   verbose_message_received (connection, message);
1678
1679   if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_ERROR)
1680     {
1681       if (!dbus_message_has_sender (message, DBUS_SERVICE_DBUS))
1682         {
1683           _dbus_warn ("Message has wrong sender %s\n",
1684                       dbus_message_get_sender (message) ?
1685                       dbus_message_get_sender (message) : "(none)");
1686           goto out;
1687         }
1688       
1689       if (dbus_message_is_error (message,
1690                                  DBUS_ERROR_NO_MEMORY))
1691         {
1692           ; /* good, this is a valid response */
1693         }
1694       else if (dbus_message_is_error (message,
1695                                       DBUS_ERROR_SERVICE_UNKNOWN))
1696         {
1697           ; /* good, this is expected also */
1698         }
1699       else
1700         {
1701           warn_unexpected (connection, message, "not this error");
1702           goto out;
1703         }
1704     }
1705   else
1706     {
1707       _dbus_warn ("Did not expect to successfully activate %s\n",
1708                   NONEXISTENT_SERVICE_NAME);
1709       goto out;
1710     }
1711
1712   retval = TRUE;
1713   
1714  out:
1715   if (message)
1716     dbus_message_unref (message);
1717   
1718   return retval;
1719 }
1720
1721 static dbus_bool_t
1722 check_base_service_activated (BusContext     *context,
1723                               DBusConnection *connection,
1724                               DBusMessage    *initial_message,
1725                               const char    **base_service_p)
1726 {
1727   DBusMessage *message;
1728   dbus_bool_t retval;
1729   DBusError error;
1730   const char *base_service, *base_service_from_bus, *old_owner;
1731   
1732   retval = FALSE;
1733   
1734   dbus_error_init (&error);
1735   base_service = NULL;
1736   old_owner = NULL;
1737   base_service_from_bus = NULL;
1738
1739   message = initial_message;
1740   dbus_message_ref (message);  
1741
1742   if (dbus_message_is_signal (message,
1743                               DBUS_INTERFACE_DBUS,
1744                               "NameOwnerChanged"))
1745     {
1746       CheckServiceOwnerChangedData socd;
1747
1748     reget_service_name_arg:
1749       base_service = NULL;
1750       old_owner = NULL;
1751       base_service_from_bus = NULL;
1752
1753       if (!dbus_message_get_args (message, &error,
1754                                   DBUS_TYPE_STRING, &base_service,
1755                                   DBUS_TYPE_STRING, &old_owner,
1756                                   DBUS_TYPE_STRING, &base_service_from_bus,
1757                                   DBUS_TYPE_INVALID))
1758         {
1759           if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
1760             {
1761               dbus_error_free (&error);
1762               _dbus_wait_for_memory ();
1763               goto reget_service_name_arg;
1764             }
1765           else
1766             {
1767               _dbus_warn ("Message %s doesn't have a service name: %s\n",
1768                           "NameOwnerChanged (creation)",
1769                           error.message);
1770               goto out;
1771             }
1772         }
1773
1774       if (*base_service != ':')
1775         {
1776           _dbus_warn ("Expected base service activation, got \"%s\" instead\n",
1777                       base_service);
1778           goto out;
1779         }
1780          
1781       if (strcmp (base_service, base_service_from_bus) != 0)
1782         {
1783           _dbus_warn ("Expected base service activation, got \"%s\" instead with owner \"%s\"\n",
1784                       base_service, base_service_from_bus);
1785           goto out;
1786         }
1787
1788       if (old_owner[0])
1789         {
1790           _dbus_warn ("Received an old_owner argument during base service activation, \"%s\"\n",
1791                       old_owner);
1792           goto out;
1793         }
1794      
1795       socd.expected_kind = SERVICE_CREATED;
1796       socd.expected_service_name = base_service;
1797       socd.failed = FALSE;
1798       socd.skip_connection = connection;
1799       bus_test_clients_foreach (check_service_owner_changed_foreach,
1800                                 &socd);
1801       
1802       if (socd.failed)
1803         goto out;
1804     }
1805   else
1806     {
1807       warn_unexpected (connection, message, "NameOwnerChanged (creation) for base service");
1808
1809       goto out;
1810     }
1811
1812   if (base_service_p)
1813     *base_service_p = base_service;
1814
1815   retval = TRUE;
1816   
1817  out:
1818   if (message)
1819     dbus_message_unref (message);
1820   dbus_error_free (&error);
1821
1822   return retval;
1823 }
1824
1825 static dbus_bool_t
1826 check_service_activated (BusContext     *context,
1827                          DBusConnection *connection,
1828                          const char     *activated_name,
1829                          const char     *base_service_name,
1830                          DBusMessage    *initial_message)
1831 {
1832   DBusMessage *message;
1833   dbus_bool_t retval;
1834   DBusError error;
1835   dbus_uint32_t activation_result;
1836   
1837   retval = FALSE;
1838   
1839   dbus_error_init (&error);
1840
1841   message = initial_message;
1842   dbus_message_ref (message);
1843
1844   if (dbus_message_is_signal (message,
1845                               DBUS_INTERFACE_DBUS,
1846                               "NameOwnerChanged"))
1847     {
1848       CheckServiceOwnerChangedData socd;
1849       const char *service_name, *base_service_from_bus, *old_owner;
1850
1851     reget_service_name_arg:
1852       service_name = NULL;
1853       old_owner = NULL;
1854       base_service_from_bus = NULL;
1855
1856       if (!dbus_message_get_args (message, &error,
1857                                   DBUS_TYPE_STRING, &service_name,
1858                                    DBUS_TYPE_STRING, &old_owner,
1859                                   DBUS_TYPE_STRING, &base_service_from_bus,
1860                                   DBUS_TYPE_INVALID))
1861         {
1862           if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
1863             {
1864               dbus_error_free (&error);
1865               _dbus_wait_for_memory ();
1866               goto reget_service_name_arg;
1867             }
1868           else
1869             {
1870               _dbus_warn ("Message %s doesn't have a service name: %s\n",
1871                           "NameOwnerChanged (creation)",
1872                           error.message);
1873               goto out;
1874             }
1875         }
1876
1877       if (strcmp (service_name, activated_name) != 0)
1878         {
1879           _dbus_warn ("Expected to see service %s created, saw %s instead\n",
1880                       activated_name, service_name);
1881           goto out;
1882         }
1883
1884       if (strcmp (base_service_name, base_service_from_bus) != 0)
1885         {
1886           _dbus_warn ("NameOwnerChanged reports wrong base service: %s owner, expected %s instead\n",
1887                       base_service_from_bus, base_service_name);
1888           goto out;
1889         }
1890
1891       if (old_owner[0])
1892         {
1893           _dbus_warn ("expected a %s, got a %s\n",
1894                       "NameOwnerChanged (creation)",
1895                       "NameOwnerChanged (change)");
1896           goto out;
1897         }
1898
1899       socd.expected_kind = SERVICE_CREATED;
1900       socd.skip_connection = connection;
1901       socd.failed = FALSE;
1902       socd.expected_service_name = service_name;
1903       bus_test_clients_foreach (check_service_owner_changed_foreach,
1904                                 &socd);
1905           
1906       if (socd.failed)
1907         goto out;
1908           
1909       dbus_message_unref (message);
1910       service_name = NULL;
1911       old_owner = NULL;
1912       base_service_from_bus = NULL;
1913       
1914       message = pop_message_waiting_for_memory (connection);
1915       if (message == NULL)
1916         {
1917           _dbus_warn ("Expected a reply to %s, got nothing\n",
1918                       "StartServiceByName");
1919           goto out;
1920         }
1921     }
1922   else
1923     {
1924       warn_unexpected (connection, message, "NameOwnerChanged for the activated name");
1925       
1926       goto out;
1927     }
1928   
1929   if (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_METHOD_RETURN)
1930     {
1931       warn_unexpected (connection, message, "reply to StartServiceByName");
1932
1933       goto out;
1934     }
1935
1936   activation_result = 0;
1937   if (!dbus_message_get_args (message, &error,
1938                               DBUS_TYPE_UINT32, &activation_result,
1939                               DBUS_TYPE_INVALID))
1940     {
1941       if (!dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
1942         {
1943           _dbus_warn ("Did not have activation result first argument to %s: %s\n",
1944                       "StartServiceByName", error.message);
1945           goto out;
1946         }
1947
1948       dbus_error_free (&error);
1949     }
1950   else
1951     {
1952       if (activation_result == DBUS_START_REPLY_SUCCESS)
1953         ; /* Good */
1954       else if (activation_result == DBUS_START_REPLY_ALREADY_RUNNING)
1955         ; /* Good also */
1956       else
1957         {
1958           _dbus_warn ("Activation result was %u, no good.\n",
1959                       activation_result);
1960           goto out;
1961         }
1962     }
1963
1964   dbus_message_unref (message);
1965   message = NULL;
1966       
1967   if (!check_no_leftovers (context))
1968     {
1969       _dbus_warn ("Messages were left over after verifying existent activation results\n");
1970       goto out;
1971     }
1972
1973   retval = TRUE;
1974   
1975  out:
1976   if (message)
1977     dbus_message_unref (message);
1978   dbus_error_free (&error);
1979   
1980   return retval;
1981 }
1982
1983 static dbus_bool_t
1984 check_service_auto_activated (BusContext     *context,
1985                               DBusConnection *connection,
1986                               const char     *activated_name,
1987                               const char     *base_service_name,
1988                               DBusMessage    *initial_message)
1989 {
1990   DBusMessage *message;
1991   dbus_bool_t retval;
1992   DBusError error;
1993   
1994   retval = FALSE;
1995   
1996   dbus_error_init (&error);
1997
1998   message = initial_message;
1999   dbus_message_ref (message);
2000
2001   if (dbus_message_is_signal (message,
2002                               DBUS_INTERFACE_DBUS,
2003                               "NameOwnerChanged"))
2004     {
2005       const char *service_name;
2006       CheckServiceOwnerChangedData socd;
2007       
2008     reget_service_name_arg:
2009       if (!dbus_message_get_args (message, &error,
2010                                   DBUS_TYPE_STRING, &service_name,
2011                                   DBUS_TYPE_INVALID))
2012         {
2013           if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
2014             {
2015               dbus_error_free (&error);
2016               _dbus_wait_for_memory ();
2017               goto reget_service_name_arg;
2018             }
2019           else
2020             {
2021               _dbus_warn ("Message %s doesn't have a service name: %s\n",
2022                           "NameOwnerChanged",
2023                           error.message);
2024               dbus_error_free (&error);
2025               goto out;
2026             }
2027         }
2028       
2029       if (strcmp (service_name, activated_name) != 0)
2030         {
2031           _dbus_warn ("Expected to see service %s created, saw %s instead\n",
2032                       activated_name, service_name);
2033           goto out;
2034         }
2035       
2036       socd.expected_kind = SERVICE_CREATED;
2037       socd.expected_service_name = service_name;
2038       socd.failed = FALSE;
2039       socd.skip_connection = connection; 
2040       bus_test_clients_foreach (check_service_owner_changed_foreach,
2041                                 &socd);
2042       
2043       if (socd.failed)
2044         goto out;
2045       
2046       /* Note that this differs from regular activation in that we don't get a
2047        * reply to ActivateService here.
2048        */
2049       
2050       dbus_message_unref (message);
2051       message = NULL;
2052       service_name = NULL;
2053     }
2054   else
2055     {
2056       warn_unexpected (connection, message, "NameOwnerChanged for the activated name");
2057       
2058       goto out;
2059     }
2060   
2061   retval = TRUE;
2062   
2063  out:
2064   if (message)
2065     dbus_message_unref (message);
2066   
2067   return retval;
2068 }
2069
2070 static dbus_bool_t
2071 check_service_deactivated (BusContext     *context,
2072                            DBusConnection *connection,
2073                            const char     *activated_name,
2074                            const char     *base_service)
2075 {
2076   dbus_bool_t retval;
2077   CheckServiceOwnerChangedData socd;
2078
2079   retval = FALSE;
2080   
2081   /* Now we are expecting ServiceOwnerChanged (deletion) messages for the base
2082    * service and the activated_name.  The base service
2083    * notification is required to come last.
2084    */
2085   socd.expected_kind = SERVICE_DELETED;
2086   socd.expected_service_name = activated_name;
2087   socd.failed = FALSE;
2088   socd.skip_connection = NULL;
2089   bus_test_clients_foreach (check_service_owner_changed_foreach,
2090                             &socd);      
2091
2092   if (socd.failed)
2093     goto out;
2094       
2095   socd.expected_kind = SERVICE_DELETED;
2096   socd.expected_service_name = base_service;
2097   socd.failed = FALSE;
2098   socd.skip_connection = NULL;
2099   bus_test_clients_foreach (check_service_owner_changed_foreach,
2100                             &socd);
2101
2102   if (socd.failed)
2103     goto out;
2104
2105   retval = TRUE;
2106   
2107  out:
2108   return retval;
2109 }
2110
2111 static dbus_bool_t
2112 check_send_exit_to_service (BusContext     *context,
2113                             DBusConnection *connection,
2114                             const char     *service_name,
2115                             const char     *base_service)
2116 {
2117   dbus_bool_t got_error;
2118   DBusMessage *message;
2119   dbus_uint32_t serial;
2120   dbus_bool_t retval;
2121   
2122   _dbus_verbose ("Sending exit message to the test service\n");
2123
2124   retval = FALSE;
2125   
2126   /* Kill off the test service by sending it a quit message */
2127   message = dbus_message_new_method_call (service_name,
2128                                           "/org/freedesktop/TestSuite",
2129                                           "org.freedesktop.TestSuite",
2130                                           "Exit");
2131       
2132   if (message == NULL)
2133     {
2134       /* Do this again; we still need the service to exit... */
2135       if (!check_send_exit_to_service (context, connection,
2136                                        service_name, base_service))
2137         goto out;
2138       
2139       return TRUE;
2140     }
2141       
2142   if (!dbus_connection_send (connection, message, &serial))
2143     {
2144       dbus_message_unref (message);
2145
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))
2149         goto out;
2150       
2151       return TRUE;
2152     }
2153
2154   dbus_message_unref (message);
2155   message = NULL;
2156
2157   /* send message */
2158   bus_test_run_clients_loop (SEND_PENDING (connection));
2159
2160   /* read it in and write it out to test service */
2161   bus_test_run_bus_loop (context, FALSE);
2162
2163   /* see if we got an error during message bus dispatching */
2164   bus_test_run_clients_loop (FALSE);
2165   message = borrow_message_waiting_for_memory (connection);
2166   got_error = message != NULL && dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_ERROR;
2167   if (message)
2168     {
2169       dbus_connection_return_message (connection, message);
2170       message = NULL;
2171     }
2172           
2173   if (!got_error)
2174     {
2175       /* If no error, wait for the test service to exit */
2176       block_connection_until_message_from_bus (context, connection, "test service to exit");
2177               
2178       bus_test_run_everything (context);
2179     }
2180
2181   if (got_error)
2182     {
2183       message = pop_message_waiting_for_memory (connection);
2184       _dbus_assert (message != NULL);
2185
2186       if (dbus_message_get_reply_serial (message) != serial)
2187         {
2188           warn_unexpected (connection, message,
2189                            "error with the correct reply serial");
2190           goto out;
2191         }
2192       
2193       if (!dbus_message_is_error (message,
2194                                   DBUS_ERROR_NO_MEMORY))
2195         {
2196           warn_unexpected (connection, message,
2197                            "a no memory error from asking test service to exit");
2198           goto out;
2199         }
2200
2201       _dbus_verbose ("Got error %s when asking test service to exit\n",
2202                      dbus_message_get_error_name (message));
2203
2204       /* Do this again; we still need the service to exit... */
2205       if (!check_send_exit_to_service (context, connection,
2206                                        service_name, base_service))
2207         goto out;
2208     }
2209   else
2210     {
2211       if (!check_service_deactivated (context, connection,
2212                                       service_name, base_service))
2213         goto out;
2214
2215       /* Should now have a NoReply error from the Exit() method
2216        * call; it should have come after all the deactivation
2217        * stuff.
2218        */
2219       message = pop_message_waiting_for_memory (connection);
2220           
2221       if (message == NULL)
2222         {
2223           warn_unexpected (connection, NULL,
2224                            "reply to Exit() method call");
2225           goto out;
2226         }
2227       if (!dbus_message_is_error (message,
2228                                   DBUS_ERROR_NO_REPLY))
2229         {
2230           warn_unexpected (connection, message,
2231                            "NoReply error from Exit() method call");
2232           goto out;
2233         }
2234
2235       if (dbus_message_get_reply_serial (message) != serial)
2236         {
2237           warn_unexpected (connection, message,
2238                            "error with the correct reply serial");
2239           goto out;
2240         }
2241           
2242       _dbus_verbose ("Got error %s after test service exited\n",
2243                      dbus_message_get_error_name (message));
2244       
2245       if (!check_no_leftovers (context))
2246         {
2247           _dbus_warn ("Messages were left over after %s\n",
2248                       _DBUS_FUNCTION_NAME);
2249           goto out;
2250         }
2251     }
2252   
2253   retval = TRUE;
2254   
2255  out:
2256   if (message)
2257     dbus_message_unref (message);
2258   
2259   return retval;
2260 }
2261
2262 static dbus_bool_t
2263 check_got_error (BusContext     *context,
2264                  DBusConnection *connection,
2265                  const char     *first_error_name,
2266                  ...)
2267 {
2268   DBusMessage *message;
2269   dbus_bool_t retval;
2270   va_list ap;
2271   dbus_bool_t error_found;
2272   const char *error_name;
2273   
2274   retval = FALSE;
2275   
2276   message = pop_message_waiting_for_memory (connection);
2277   if (message == NULL)
2278     {
2279       _dbus_warn ("Did not get an expected error\n");
2280       goto out;
2281     }
2282
2283   if (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_ERROR)
2284     {
2285       warn_unexpected (connection, message, "an error");
2286
2287       goto out;
2288     }
2289
2290   error_found = FALSE;
2291
2292   va_start (ap, first_error_name);
2293   error_name = first_error_name;
2294   while (error_name != NULL)
2295     {
2296       if (dbus_message_is_error (message, error_name))
2297         {
2298           error_found = TRUE;
2299           break;
2300         }
2301       error_name = va_arg (ap, char*);
2302     }
2303   va_end (ap);
2304
2305   if (!error_found)
2306     {
2307       _dbus_warn ("Expected error %s or other, got %s instead\n",
2308                   first_error_name,
2309                   dbus_message_get_error_name (message));
2310       goto out;
2311     }
2312
2313   retval = TRUE;
2314   
2315  out:
2316   if (message)
2317     dbus_message_unref (message);
2318   
2319   return retval;
2320 }
2321           
2322 typedef enum
2323
2324   GOT_SERVICE_CREATED,
2325   GOT_SERVICE_DELETED,
2326   GOT_ERROR,
2327   GOT_SOMETHING_ELSE 
2328 } GotServiceInfo;
2329
2330 static GotServiceInfo
2331 check_got_service_info (DBusMessage *message)
2332 {
2333   GotServiceInfo message_kind;
2334
2335   if (dbus_message_is_signal (message,
2336                               DBUS_INTERFACE_DBUS,
2337                               "NameOwnerChanged"))
2338     {
2339       DBusError error;
2340       const char *service_name, *old_owner, *new_owner;
2341       dbus_error_init (&error);
2342
2343     reget_service_info_data:
2344       service_name = NULL;
2345       old_owner = NULL;
2346       new_owner = NULL;
2347
2348       dbus_message_get_args (message, &error,
2349                              DBUS_TYPE_STRING, &service_name,
2350                              DBUS_TYPE_STRING, &old_owner,
2351                              DBUS_TYPE_STRING, &new_owner,
2352                              DBUS_TYPE_INVALID);
2353       if (dbus_error_is_set (&error))
2354         {
2355           if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
2356             {
2357               dbus_error_free (&error);
2358               goto reget_service_info_data;
2359             }
2360           else
2361             {
2362               _dbus_warn ("unexpected arguments for NameOwnerChanged message");
2363               message_kind = GOT_SOMETHING_ELSE;
2364             }
2365         }
2366       else if (!old_owner[0])
2367         message_kind = GOT_SERVICE_CREATED;
2368       else if (!new_owner[0])
2369         message_kind = GOT_SERVICE_DELETED;
2370       else
2371         message_kind = GOT_SOMETHING_ELSE;
2372
2373       dbus_error_free (&error);
2374     }
2375   else if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_ERROR)
2376     message_kind = GOT_ERROR;
2377   else
2378     message_kind = GOT_SOMETHING_ELSE;
2379
2380   return message_kind;
2381 }
2382
2383 #define EXISTENT_SERVICE_NAME "org.freedesktop.DBus.TestSuiteEchoService"
2384
2385 /* returns TRUE if the correct thing happens,
2386  * but the correct thing may include OOM errors.
2387  */
2388 static dbus_bool_t
2389 check_existent_service_no_auto_start (BusContext     *context,
2390                                       DBusConnection *connection)
2391 {
2392   DBusMessage *message;
2393   DBusMessage *base_service_message;
2394   const char *base_service;
2395   dbus_uint32_t serial;
2396   dbus_bool_t retval;
2397   const char *existent = EXISTENT_SERVICE_NAME;
2398   dbus_uint32_t flags;
2399
2400   base_service_message = NULL;
2401   
2402   message = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
2403                                           DBUS_PATH_DBUS,
2404                                           DBUS_INTERFACE_DBUS,
2405                                           "StartServiceByName");
2406
2407   if (message == NULL)
2408     return TRUE;
2409
2410   dbus_message_set_auto_start (message, FALSE);
2411   
2412   flags = 0;
2413   if (!dbus_message_append_args (message,
2414                                  DBUS_TYPE_STRING, &existent,
2415                                  DBUS_TYPE_UINT32, &flags,
2416                                  DBUS_TYPE_INVALID))
2417     {
2418       dbus_message_unref (message);
2419       return TRUE;
2420     }
2421   
2422   if (!dbus_connection_send (connection, message, &serial))
2423     {
2424       dbus_message_unref (message);
2425       return TRUE;
2426     }
2427
2428   dbus_message_unref (message);
2429   message = NULL;
2430
2431   bus_test_run_everything (context);
2432
2433   /* now wait for the message bus to hear back from the activated
2434    * service.
2435    */
2436   block_connection_until_message_from_bus (context, connection, "activated service to connect");
2437
2438   bus_test_run_everything (context);
2439
2440   if (!dbus_connection_get_is_connected (connection))
2441     {
2442       _dbus_verbose ("connection was disconnected: %s %d\n", _DBUS_FUNCTION_NAME, __LINE__);
2443       return TRUE;
2444     }
2445   
2446   retval = FALSE;
2447   
2448   message = pop_message_waiting_for_memory (connection);
2449   if (message == NULL)
2450     {
2451       _dbus_warn ("Did not receive any messages after %s %d on %p\n",
2452                   "StartServiceByName", serial, connection);
2453       goto out;
2454     }
2455
2456   verbose_message_received (connection, message);
2457   _dbus_verbose ("  (after sending %s)\n", "StartServiceByName");
2458
2459   if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_ERROR)
2460     {
2461       if (!dbus_message_has_sender (message, DBUS_SERVICE_DBUS))
2462         {
2463           _dbus_warn ("Message has wrong sender %s\n",
2464                       dbus_message_get_sender (message) ?
2465                       dbus_message_get_sender (message) : "(none)");
2466           goto out;
2467         }
2468       
2469       if (dbus_message_is_error (message,
2470                                  DBUS_ERROR_NO_MEMORY))
2471         {
2472           ; /* good, this is a valid response */
2473         }
2474       else if (dbus_message_is_error (message,
2475                                       DBUS_ERROR_SPAWN_CHILD_EXITED) ||
2476                dbus_message_is_error (message,
2477                                       DBUS_ERROR_SPAWN_CHILD_SIGNALED) ||
2478                dbus_message_is_error (message,
2479                                       DBUS_ERROR_SPAWN_EXEC_FAILED))
2480         {
2481           ; /* good, this is expected also */
2482         }
2483       else
2484         {
2485           _dbus_warn ("Did not expect error %s\n",
2486                       dbus_message_get_error_name (message));
2487           goto out;
2488         }
2489     }
2490   else
2491     {
2492       GotServiceInfo message_kind;
2493       
2494       if (!check_base_service_activated (context, connection,
2495                                          message, &base_service))
2496         goto out;
2497
2498       base_service_message = message;
2499       message = NULL;
2500
2501       /* We may need to block here for the test service to exit or finish up */
2502       block_connection_until_message_from_bus (context, connection, "test service to exit or finish up");
2503       
2504       message = dbus_connection_borrow_message (connection);
2505       if (message == NULL)
2506         {
2507           _dbus_warn ("Did not receive any messages after base service creation notification\n");
2508           goto out;
2509         }
2510
2511       message_kind = check_got_service_info (message);
2512
2513       dbus_connection_return_message (connection, message);
2514       message = NULL;
2515
2516       switch (message_kind)
2517         {
2518         case GOT_SOMETHING_ELSE:
2519           _dbus_warn ("Unexpected message after ActivateService "
2520                       "(should be an error or a service announcement");
2521           goto out;
2522
2523         case GOT_ERROR:
2524           if (!check_got_error (context, connection,
2525                                 DBUS_ERROR_SPAWN_CHILD_EXITED,
2526                                 DBUS_ERROR_NO_MEMORY,
2527                                 NULL))
2528             goto out;
2529           /* A service deleted should be coming along now after this error.
2530            * We can also get the error *after* the service deleted.
2531            */
2532
2533           /* fall through */
2534
2535         case GOT_SERVICE_DELETED:
2536           {
2537             /* The service started up and got a base address, but then
2538              * failed to register under EXISTENT_SERVICE_NAME
2539              */
2540             CheckServiceOwnerChangedData socd;
2541
2542             socd.expected_kind = SERVICE_DELETED;
2543             socd.expected_service_name = base_service;
2544             socd.failed = FALSE;
2545             socd.skip_connection = NULL;
2546             
2547             bus_test_clients_foreach (check_service_owner_changed_foreach,
2548                                       &socd);
2549
2550             if (socd.failed)
2551               goto out;
2552
2553             /* Now we should get an error about the service exiting
2554              * if we didn't get it before.
2555              */
2556             if (message_kind != GOT_ERROR)
2557               {
2558                 block_connection_until_message_from_bus (context, connection, "error about service exiting");
2559               
2560                 /* and process everything again */
2561                 bus_test_run_everything (context);
2562               
2563                 if (!check_got_error (context, connection,
2564                                       DBUS_ERROR_SPAWN_CHILD_EXITED,
2565                                       NULL))
2566                   goto out;
2567               }
2568             break;
2569           }
2570
2571         case GOT_SERVICE_CREATED:
2572           message = pop_message_waiting_for_memory (connection);
2573           if (message == NULL)
2574             {
2575               _dbus_warn ("Failed to pop message we just put back! "
2576                           "should have been a NameOwnerChanged (creation)\n");
2577               goto out;
2578             }
2579           
2580           if (!check_service_activated (context, connection, EXISTENT_SERVICE_NAME,
2581                                         base_service, message))
2582             goto out;
2583           
2584           dbus_message_unref (message);
2585           message = NULL;
2586
2587           if (!check_no_leftovers (context))
2588             {
2589               _dbus_warn ("Messages were left over after successful activation\n");
2590               goto out;
2591             }
2592
2593           if (!check_send_exit_to_service (context, connection,
2594                                            EXISTENT_SERVICE_NAME, base_service))
2595             goto out;
2596
2597           break;
2598         }
2599     }
2600
2601   retval = TRUE;
2602   
2603  out:
2604   if (message)
2605     dbus_message_unref (message);
2606
2607   if (base_service_message)
2608     dbus_message_unref (base_service_message);
2609   
2610   return retval;
2611 }
2612
2613 /* returns TRUE if the correct thing happens,
2614  * but the correct thing may include OOM errors.
2615  */
2616 static dbus_bool_t
2617 check_segfault_service_no_auto_start (BusContext     *context,
2618                                       DBusConnection *connection)
2619 {
2620   DBusMessage *message;
2621   dbus_uint32_t serial;
2622   dbus_bool_t retval;
2623   const char *segv_service;
2624   dbus_uint32_t flags;
2625   
2626   message = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
2627                                           DBUS_PATH_DBUS,
2628                                           DBUS_INTERFACE_DBUS,
2629                                           "StartServiceByName");
2630
2631   if (message == NULL)
2632     return TRUE;
2633
2634   dbus_message_set_auto_start (message, FALSE);
2635   
2636   segv_service = "org.freedesktop.DBus.TestSuiteSegfaultService";
2637   flags = 0;
2638   if (!dbus_message_append_args (message,
2639                                  DBUS_TYPE_STRING, &segv_service,
2640                                  DBUS_TYPE_UINT32, &flags,
2641                                  DBUS_TYPE_INVALID))
2642     {
2643       dbus_message_unref (message);
2644       return TRUE;
2645     }
2646   
2647   if (!dbus_connection_send (connection, message, &serial))
2648     {
2649       dbus_message_unref (message);
2650       return TRUE;
2651     }
2652
2653   dbus_message_unref (message);
2654   message = NULL;
2655
2656   bus_test_run_everything (context);
2657   block_connection_until_message_from_bus (context, connection, "reply to activating segfault service");
2658   bus_test_run_everything (context);
2659
2660   if (!dbus_connection_get_is_connected (connection))
2661     {
2662       _dbus_verbose ("connection was disconnected: %s %d\n", _DBUS_FUNCTION_NAME, __LINE__);
2663       return TRUE;
2664     }
2665   
2666   retval = FALSE;
2667   
2668   message = pop_message_waiting_for_memory (connection);
2669   if (message == NULL)
2670     {
2671       _dbus_warn ("Did not receive a reply to %s %d on %p\n",
2672                   "StartServiceByName", serial, connection);
2673       goto out;
2674     }
2675
2676   verbose_message_received (connection, message);
2677
2678   if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_ERROR)
2679     {
2680       if (!dbus_message_has_sender (message, DBUS_SERVICE_DBUS))
2681         {
2682           _dbus_warn ("Message has wrong sender %s\n",
2683                       dbus_message_get_sender (message) ?
2684                       dbus_message_get_sender (message) : "(none)");
2685           goto out;
2686         }
2687       
2688       if (dbus_message_is_error (message,
2689                                  DBUS_ERROR_NO_MEMORY))
2690         {
2691           ; /* good, this is a valid response */
2692         }
2693       else if (dbus_message_is_error (message,
2694                                       DBUS_ERROR_SPAWN_CHILD_SIGNALED))
2695         {
2696           ; /* good, this is expected also */
2697         }
2698       else
2699         {
2700           warn_unexpected (connection, message, "not this error");
2701
2702           goto out;
2703         }
2704     }
2705   else
2706     {
2707       _dbus_warn ("Did not expect to successfully activate segfault service\n");
2708       goto out;
2709     }
2710
2711   retval = TRUE;
2712   
2713  out:
2714   if (message)
2715     dbus_message_unref (message);
2716   
2717   return retval;
2718 }
2719
2720
2721 /* returns TRUE if the correct thing happens,
2722  * but the correct thing may include OOM errors.
2723  */
2724 static dbus_bool_t
2725 check_segfault_service_auto_start (BusContext     *context,
2726                                    DBusConnection *connection)
2727 {
2728   DBusMessage *message;
2729   dbus_uint32_t serial;
2730   dbus_bool_t retval;
2731
2732   message = dbus_message_new_method_call ("org.freedesktop.DBus.TestSuiteSegfaultService",
2733                                           "/org/freedesktop/TestSuite",
2734                                           "org.freedesktop.TestSuite",
2735                                           "Echo");
2736   
2737   if (message == NULL)
2738     return TRUE;
2739   
2740   if (!dbus_connection_send (connection, message, &serial))
2741     {
2742       dbus_message_unref (message);
2743       return TRUE;
2744     }
2745
2746   dbus_message_unref (message);
2747   message = NULL;
2748
2749   bus_test_run_everything (context);
2750   block_connection_until_message_from_bus (context, connection, "reply to Echo on segfault service");
2751   bus_test_run_everything (context);
2752
2753   if (!dbus_connection_get_is_connected (connection))
2754     {
2755       _dbus_verbose ("connection was disconnected: %s %d\n", _DBUS_FUNCTION_NAME, __LINE__);
2756       return TRUE;
2757     }
2758   
2759   retval = FALSE;
2760   
2761   message = pop_message_waiting_for_memory (connection);
2762   if (message == NULL)
2763     {
2764       _dbus_warn ("Did not receive a reply to %s %d on %p\n",
2765                   "Echo message (auto activation)", serial, connection);
2766       goto out;
2767     }
2768
2769   verbose_message_received (connection, message);
2770
2771   if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_ERROR)
2772     {
2773       if (!dbus_message_has_sender (message, DBUS_SERVICE_DBUS))
2774         {
2775           _dbus_warn ("Message has wrong sender %s\n",
2776                       dbus_message_get_sender (message) ?
2777                       dbus_message_get_sender (message) : "(none)");
2778           goto out;
2779         }
2780       
2781       if (dbus_message_is_error (message,
2782                                  DBUS_ERROR_NO_MEMORY))
2783         {
2784           ; /* good, this is a valid response */
2785         }
2786       else if (dbus_message_is_error (message,
2787                                       DBUS_ERROR_SPAWN_CHILD_SIGNALED))
2788         {
2789           ; /* good, this is expected also */
2790         }
2791       else
2792         {
2793           warn_unexpected (connection, message, "not this error");
2794
2795           goto out;
2796         }
2797     }
2798   else
2799     {
2800       _dbus_warn ("Did not expect to successfully activate segfault service\n");
2801       goto out;
2802     }
2803
2804   retval = TRUE;
2805   
2806  out:
2807   if (message)
2808     dbus_message_unref (message);
2809   
2810   return retval;
2811 }
2812
2813 #define TEST_ECHO_MESSAGE "Test echo message"
2814 #define TEST_RUN_HELLO_FROM_SELF_MESSAGE "Test sending message to self"
2815
2816 /* returns TRUE if the correct thing happens,
2817  * but the correct thing may include OOM errors.
2818  */
2819 static dbus_bool_t
2820 check_existent_hello_from_self (BusContext     *context,
2821                                 DBusConnection *connection)
2822 {
2823   DBusMessage *message;
2824   dbus_uint32_t serial;
2825   const char *text;
2826
2827   message = dbus_message_new_method_call (EXISTENT_SERVICE_NAME,
2828                                           "/org/freedesktop/TestSuite",
2829                                           "org.freedesktop.TestSuite",
2830                                           "RunHelloFromSelf");
2831   
2832   if (message == NULL)
2833     return TRUE;
2834
2835   text = TEST_RUN_HELLO_FROM_SELF_MESSAGE;
2836   if (!dbus_message_append_args (message,
2837                                  DBUS_TYPE_STRING, &text,
2838                                  DBUS_TYPE_INVALID))
2839     {
2840       dbus_message_unref (message);
2841       return TRUE;
2842     }
2843
2844   if (!dbus_connection_send (connection, message, &serial))
2845     {
2846       dbus_message_unref (message);
2847       return TRUE;
2848     }
2849
2850   dbus_message_unref (message);
2851   message = NULL;
2852
2853   bus_test_run_everything (context);
2854
2855   /* Note: if this test is run in OOM mode, it will block when the bus
2856    * doesn't send a reply due to OOM.
2857    */
2858   block_connection_until_message_from_bus (context, connection, "reply from running hello from self");
2859       
2860   message = pop_message_waiting_for_memory (connection);
2861   if (message == NULL)
2862     {
2863       _dbus_warn ("Failed to pop message! Should have been reply from RunHelloFromSelf message\n");
2864       return FALSE;
2865     }
2866
2867   if (dbus_message_get_reply_serial (message) != serial)
2868     {
2869       _dbus_warn ("Wrong reply serial\n");
2870       dbus_message_unref (message);
2871       return FALSE;
2872     }
2873
2874   dbus_message_unref (message);
2875   message = NULL;
2876       
2877   return TRUE;
2878 }
2879
2880 /* returns TRUE if the correct thing happens,
2881  * but the correct thing may include OOM errors.
2882  */
2883 static dbus_bool_t
2884 check_existent_ping (BusContext     *context,
2885                      DBusConnection *connection)
2886 {
2887   DBusMessage *message;
2888   dbus_uint32_t serial;
2889   message = dbus_message_new_method_call (EXISTENT_SERVICE_NAME,
2890                                           "/org/freedesktop/TestSuite",
2891                                           "org.freedesktop.DBus.Peer",
2892                                           "Ping");
2893   
2894   if (message == NULL)
2895     return TRUE;
2896
2897   if (!dbus_connection_send (connection, message, &serial))
2898     {
2899       dbus_message_unref (message);
2900       return TRUE;
2901     }
2902
2903   dbus_message_unref (message);
2904   message = NULL;
2905
2906   bus_test_run_everything (context);
2907
2908   /* Note: if this test is run in OOM mode, it will block when the bus
2909    * doesn't send a reply due to OOM.
2910    */
2911   block_connection_until_message_from_bus (context, connection, "reply from running Ping");
2912       
2913   message = pop_message_waiting_for_memory (connection);
2914   if (message == NULL)
2915     {
2916       _dbus_warn ("Failed to pop message! Should have been reply from Ping message\n");
2917       return FALSE;
2918     }
2919
2920   if (dbus_message_get_reply_serial (message) != serial)
2921     {
2922       _dbus_warn ("Wrong reply serial\n");
2923       dbus_message_unref (message);
2924       return FALSE;
2925     }
2926
2927   if (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_METHOD_RETURN)
2928     {
2929       _dbus_warn ("Unexpected message return during Ping\n");
2930       dbus_message_unref (message);
2931       return FALSE;
2932     }
2933
2934   dbus_message_unref (message);
2935   message = NULL;
2936       
2937   return TRUE;
2938 }
2939
2940 /* returns TRUE if the correct thing happens,
2941  * but the correct thing may include OOM errors.
2942  */
2943 static dbus_bool_t
2944 check_existent_get_machine_id (BusContext     *context,
2945                                DBusConnection *connection)
2946 {
2947   DBusMessage *message;
2948   dbus_uint32_t serial;
2949   const char *machine_id;
2950   
2951   message = dbus_message_new_method_call (EXISTENT_SERVICE_NAME,
2952                                           "/org/freedesktop/TestSuite",
2953                                           "org.freedesktop.DBus.Peer",
2954                                           "GetMachineId");
2955   
2956   if (message == NULL)
2957     return TRUE;
2958
2959   if (!dbus_connection_send (connection, message, &serial))
2960     {
2961       dbus_message_unref (message);
2962       return TRUE;
2963     }
2964
2965   dbus_message_unref (message);
2966   message = NULL;
2967
2968   bus_test_run_everything (context);
2969
2970   /* Note: if this test is run in OOM mode, it will block when the bus
2971    * doesn't send a reply due to OOM.
2972    */
2973   block_connection_until_message_from_bus (context, connection, "reply from running GetMachineId");
2974       
2975   message = pop_message_waiting_for_memory (connection);
2976   if (message == NULL)
2977     {
2978       _dbus_warn ("Failed to pop message! Should have been reply from GetMachineId message\n");
2979       return FALSE;
2980     }
2981
2982   if (dbus_message_get_reply_serial (message) != serial)
2983     {
2984       _dbus_warn ("Wrong reply serial\n");
2985       dbus_message_unref (message);
2986       return FALSE;
2987     }
2988
2989   if (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_METHOD_RETURN)
2990     {
2991       _dbus_warn ("Unexpected message return during GetMachineId\n");
2992       dbus_message_unref (message);
2993       return FALSE;
2994     }
2995
2996   machine_id = NULL;
2997   if (!dbus_message_get_args (message, NULL, DBUS_TYPE_STRING, &machine_id, DBUS_TYPE_INVALID))
2998     {
2999       _dbus_warn ("Did not get a machine ID in reply to GetMachineId\n");
3000       dbus_message_unref (message);
3001       return FALSE;
3002     }
3003
3004   if (machine_id == NULL || strlen (machine_id) != 32)
3005     {
3006       _dbus_warn ("Machine id looks bogus: '%s'\n", machine_id ? machine_id : "null");
3007       dbus_message_unref (message);
3008       return FALSE;
3009     }
3010   
3011   /* We can't check that the machine id is correct because during make check it is
3012    * just made up for each process separately
3013    */
3014   
3015   dbus_message_unref (message);
3016   message = NULL;
3017       
3018   return TRUE;
3019 }
3020
3021 /* returns TRUE if the correct thing happens,
3022  * but the correct thing may include OOM errors.
3023  */
3024 static dbus_bool_t
3025 check_existent_service_auto_start (BusContext     *context,
3026                                    DBusConnection *connection)
3027 {
3028   DBusMessage *message;
3029   DBusMessage *base_service_message;
3030   dbus_uint32_t serial;
3031   dbus_bool_t retval;
3032   const char *base_service;
3033   const char *text;
3034
3035   base_service_message = NULL;
3036
3037   message = dbus_message_new_method_call (EXISTENT_SERVICE_NAME,
3038                                           "/org/freedesktop/TestSuite",
3039                                           "org.freedesktop.TestSuite",
3040                                           "Echo");
3041   
3042   if (message == NULL)
3043     return TRUE;
3044
3045   text = TEST_ECHO_MESSAGE;
3046   if (!dbus_message_append_args (message,
3047                                  DBUS_TYPE_STRING, &text,
3048                                  DBUS_TYPE_INVALID))
3049     {
3050       dbus_message_unref (message);
3051       return TRUE;
3052     }
3053
3054   if (!dbus_connection_send (connection, message, &serial))
3055     {
3056       dbus_message_unref (message);
3057       return TRUE;
3058     }
3059
3060   dbus_message_unref (message);
3061   message = NULL;
3062
3063   bus_test_run_everything (context);
3064
3065   /* now wait for the message bus to hear back from the activated
3066    * service.
3067    */
3068   block_connection_until_message_from_bus (context, connection, "reply to Echo on existent service");
3069   bus_test_run_everything (context);
3070
3071   if (!dbus_connection_get_is_connected (connection))
3072     {
3073       _dbus_verbose ("connection was disconnected: %s %d\n", _DBUS_FUNCTION_NAME, __LINE__);
3074       return TRUE;
3075     }
3076
3077   retval = FALSE;
3078   
3079   message = pop_message_waiting_for_memory (connection);
3080   if (message == NULL)
3081     {
3082       _dbus_warn ("Did not receive any messages after auto start %d on %p\n",
3083                   serial, connection);
3084       goto out;
3085     }
3086
3087   verbose_message_received (connection, message);
3088   _dbus_verbose ("  (after sending %s)\n", "auto start");
3089
3090   /* we should get zero or two ServiceOwnerChanged signals */
3091   if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_SIGNAL)
3092     {
3093       GotServiceInfo message_kind;
3094
3095       if (!check_base_service_activated (context, connection,
3096                                          message, &base_service))
3097         goto out;
3098
3099       base_service_message = message;
3100       message = NULL;
3101
3102       /* We may need to block here for the test service to exit or finish up */
3103       block_connection_until_message_from_bus (context, connection, "service to exit");
3104
3105       /* Should get a service creation notification for the activated
3106        * service name, or a service deletion on the base service name
3107        */
3108       message = dbus_connection_borrow_message (connection);
3109       if (message == NULL)
3110         {
3111           _dbus_warn ("No message after auto activation "
3112                       "(should be a service announcement)");
3113           dbus_connection_return_message (connection, message);
3114           message = NULL;
3115           goto out;
3116         }
3117
3118       message_kind = check_got_service_info (message);
3119
3120       dbus_connection_return_message (connection, message);
3121       message = NULL;
3122
3123       switch (message_kind) 
3124         {
3125         case GOT_SERVICE_CREATED:
3126           message = pop_message_waiting_for_memory (connection);
3127           if (message == NULL)
3128             {
3129               _dbus_warn ("Failed to pop message we just put back! "
3130                           "should have been a NameOwnerChanged (creation)\n");
3131               goto out;
3132             }
3133             
3134           /* Check that ServiceOwnerChanged (creation) was correctly received */
3135           if (!check_service_auto_activated (context, connection, EXISTENT_SERVICE_NAME,
3136                                              base_service, message))
3137             goto out;
3138           
3139           dbus_message_unref (message);
3140           message = NULL;
3141
3142           break;
3143
3144         case GOT_SERVICE_DELETED:
3145           {
3146             /* The service started up and got a base address, but then
3147              * failed to register under EXISTENT_SERVICE_NAME
3148              */
3149             CheckServiceOwnerChangedData socd;
3150           
3151             socd.expected_kind = SERVICE_DELETED;
3152             socd.expected_service_name = base_service;
3153             socd.failed = FALSE;
3154             socd.skip_connection = NULL;
3155             bus_test_clients_foreach (check_service_owner_changed_foreach,
3156                                       &socd);
3157
3158             if (socd.failed)
3159               goto out;
3160
3161             break;
3162           }
3163
3164         case GOT_ERROR:
3165         case GOT_SOMETHING_ELSE:
3166           _dbus_warn ("Unexpected message after auto activation\n");
3167           goto out;
3168         }
3169     }
3170
3171   /* OK, now we've dealt with ServiceOwnerChanged signals, now should
3172    * come the method reply (or error) from the initial method call
3173    */
3174
3175   /* Note: if this test is run in OOM mode, it will block when the bus
3176    * doesn't send a reply due to OOM.
3177    */
3178   block_connection_until_message_from_bus (context, connection, "reply from echo message after auto-activation");
3179       
3180   message = pop_message_waiting_for_memory (connection);
3181   if (message == NULL)
3182     {
3183       _dbus_warn ("Failed to pop message! Should have been reply from echo message\n");
3184       goto out;
3185     }
3186
3187   if (dbus_message_get_reply_serial (message) != serial)
3188     {
3189       _dbus_warn ("Wrong reply serial\n");
3190       goto out;
3191     }
3192
3193   dbus_message_unref (message);
3194   message = NULL;
3195
3196   if (!check_existent_ping (context, connection))
3197     goto out;
3198
3199   if (!check_existent_get_machine_id (context, connection))
3200     goto out;
3201   
3202   if (!check_existent_hello_from_self (context, connection))
3203     goto out;
3204
3205   if (!check_send_exit_to_service (context, connection,
3206                                    EXISTENT_SERVICE_NAME,
3207                                    base_service))
3208     goto out;
3209   
3210   retval = TRUE;
3211
3212  out:
3213   if (message)
3214     dbus_message_unref (message);
3215
3216   if (base_service_message)
3217     dbus_message_unref (base_service_message);
3218
3219   return retval;
3220 }
3221
3222 #define SHELL_FAIL_SERVICE_NAME "org.freedesktop.DBus.TestSuiteShellEchoServiceFail"
3223
3224 /* returns TRUE if the correct thing happens,
3225  * but the correct thing may include OOM errors.
3226  */
3227 static dbus_bool_t
3228 check_shell_fail_service_auto_start (BusContext     *context,
3229                                      DBusConnection *connection)
3230 {
3231   DBusMessage *message;
3232   dbus_uint32_t serial;
3233   dbus_bool_t retval;
3234
3235   message = dbus_message_new_method_call (SHELL_FAIL_SERVICE_NAME,
3236                                           "/org/freedesktop/TestSuite",
3237                                           "org.freedesktop.TestSuite",
3238                                           "Echo");
3239   
3240   if (message == NULL)
3241     return TRUE;
3242   
3243   if (!dbus_connection_send (connection, message, &serial))
3244     {
3245       dbus_message_unref (message);
3246       return TRUE;
3247     }
3248
3249   dbus_message_unref (message);
3250   message = NULL;
3251
3252   bus_test_run_everything (context);
3253   block_connection_until_message_from_bus (context, connection, "reply to shell Echo on service which should fail to auto-start");
3254   bus_test_run_everything (context);
3255
3256   if (!dbus_connection_get_is_connected (connection))
3257     {
3258       _dbus_verbose ("connection was disconnected: %s %d\n", _DBUS_FUNCTION_NAME, __LINE__);
3259       return TRUE;
3260     }
3261   
3262   retval = FALSE;
3263   
3264   message = pop_message_waiting_for_memory (connection);
3265   if (message == NULL)
3266     {
3267       _dbus_warn ("Did not receive a reply to %s %d on %p\n",
3268                   "Echo message (auto activation)", serial, connection);
3269       goto out;
3270     }
3271
3272   verbose_message_received (connection, message);
3273
3274   if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_ERROR)
3275     {
3276       if (!dbus_message_has_sender (message, DBUS_SERVICE_DBUS))
3277         {
3278           _dbus_warn ("Message has wrong sender %s\n",
3279                       dbus_message_get_sender (message) ?
3280                       dbus_message_get_sender (message) : "(none)");
3281           goto out;
3282         }
3283       
3284       if (dbus_message_is_error (message,
3285                                  DBUS_ERROR_NO_MEMORY))
3286         {
3287           ; /* good, this is a valid response */
3288         }
3289       else if (dbus_message_is_error (message,
3290                                       DBUS_ERROR_INVALID_ARGS))
3291         {
3292           _dbus_verbose("got invalid args\n");
3293           ; /* good, this is expected also */
3294         }
3295       else
3296         {
3297           warn_unexpected (connection, message, "not this error");
3298
3299           goto out;
3300         }
3301     }
3302   else
3303     {
3304       _dbus_warn ("Did not expect to successfully auto-start shell fail service\n");
3305       goto out;
3306     }
3307
3308   retval = TRUE;
3309   
3310  out:
3311   if (message)
3312     dbus_message_unref (message);
3313   
3314   return retval;
3315 }
3316
3317 #define SHELL_SUCCESS_SERVICE_NAME "org.freedesktop.DBus.TestSuiteShellEchoServiceSuccess"
3318
3319 /* returns TRUE if the correct thing happens,
3320  * but the correct thing may include OOM errors.
3321  */
3322 static dbus_bool_t
3323 check_shell_service_success_auto_start (BusContext     *context,
3324                                         DBusConnection *connection)
3325 {
3326   DBusMessage *message;
3327   DBusMessage *base_service_message;
3328   dbus_uint32_t serial;
3329   dbus_bool_t retval;
3330   const char *base_service;
3331   const char *argv[7] = {NULL, NULL, NULL, NULL, NULL, NULL, NULL};
3332
3333   base_service_message = NULL;
3334
3335   message = dbus_message_new_method_call (SHELL_SUCCESS_SERVICE_NAME,
3336                                           "/org/freedesktop/TestSuite",
3337                                           "org.freedesktop.TestSuite",
3338                                           "Echo");
3339   
3340   if (message == NULL)
3341     return TRUE;
3342
3343   if (!dbus_connection_send (connection, message, &serial))
3344     {
3345       dbus_message_unref (message);
3346       return TRUE;
3347     }
3348
3349   dbus_message_unref (message);
3350   message = NULL;
3351
3352   bus_test_run_everything (context);
3353
3354   /* now wait for the message bus to hear back from the activated
3355    * service.
3356    */
3357   block_connection_until_message_from_bus (context, connection, "reply to Echo on shell success service");
3358   bus_test_run_everything (context);
3359
3360   if (!dbus_connection_get_is_connected (connection))
3361     {
3362       _dbus_verbose ("connection was disconnected: %s %d\n", _DBUS_FUNCTION_NAME, __LINE__);
3363       return TRUE;
3364     }
3365
3366   retval = FALSE;
3367   
3368   message = pop_message_waiting_for_memory (connection);
3369   if (message == NULL)
3370     {
3371       _dbus_warn ("Did not receive any messages after auto start %d on %p\n",
3372                   serial, connection);
3373       goto out;
3374     }
3375
3376   verbose_message_received (connection, message);
3377   _dbus_verbose ("  (after sending %s)\n", "auto start");
3378
3379   /* we should get zero or two ServiceOwnerChanged signals */
3380   if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_SIGNAL)
3381     {
3382       GotServiceInfo message_kind;
3383
3384       if (!check_base_service_activated (context, connection,
3385                                          message, &base_service))
3386         goto out;
3387
3388       base_service_message = message;
3389       message = NULL;
3390
3391       /* We may need to block here for the test service to exit or finish up */
3392       block_connection_until_message_from_bus (context, connection, "service to exit");
3393
3394       /* Should get a service creation notification for the activated
3395        * service name, or a service deletion on the base service name
3396        */
3397       message = dbus_connection_borrow_message (connection);
3398       if (message == NULL)
3399         {
3400           _dbus_warn ("No message after auto activation "
3401                       "(should be a service announcement)");
3402           dbus_connection_return_message (connection, message);
3403           message = NULL;
3404           goto out;
3405         }
3406
3407       message_kind = check_got_service_info (message);
3408
3409       dbus_connection_return_message (connection, message);
3410       message = NULL;
3411
3412       switch (message_kind) 
3413         {
3414         case GOT_SERVICE_CREATED:
3415           message = pop_message_waiting_for_memory (connection);
3416           if (message == NULL)
3417             {
3418               _dbus_warn ("Failed to pop message we just put back! "
3419                           "should have been a NameOwnerChanged (creation)\n");
3420               goto out;
3421             }
3422             
3423           /* Check that ServiceOwnerChanged (creation) was correctly received */
3424           if (!check_service_auto_activated (context, connection, SHELL_SUCCESS_SERVICE_NAME,
3425                                              base_service, message))
3426             goto out;
3427           
3428           dbus_message_unref (message);
3429           message = NULL;
3430
3431           break;
3432
3433         case GOT_SERVICE_DELETED:
3434           {
3435             /* The service started up and got a base address, but then
3436              * failed to register under SHELL_SUCCESS_SERVICE_NAME
3437              */
3438             CheckServiceOwnerChangedData socd;
3439           
3440             socd.expected_kind = SERVICE_DELETED;
3441             socd.expected_service_name = base_service;
3442             socd.failed = FALSE;
3443             socd.skip_connection = NULL;
3444             bus_test_clients_foreach (check_service_owner_changed_foreach,
3445                                       &socd);
3446
3447             if (socd.failed)
3448               goto out;
3449
3450             break;
3451           }
3452
3453         case GOT_ERROR:
3454         case GOT_SOMETHING_ELSE:
3455           _dbus_warn ("Unexpected message after auto activation\n");
3456           goto out;
3457         }
3458     }
3459
3460   /* OK, now we've dealt with ServiceOwnerChanged signals, now should
3461    * come the method reply (or error) from the initial method call
3462    */
3463
3464   /* Note: if this test is run in OOM mode, it will block when the bus
3465    * doesn't send a reply due to OOM.
3466    */
3467   block_connection_until_message_from_bus (context, connection, "reply from echo message after auto-activation");
3468       
3469   message = pop_message_waiting_for_memory (connection);
3470   if (message == NULL)
3471     {
3472       _dbus_warn ("Failed to pop message! Should have been reply from echo message\n");
3473       goto out;
3474     }
3475
3476   if (dbus_message_get_reply_serial (message) != serial)
3477     {
3478       _dbus_warn ("Wrong reply serial\n");
3479       goto out;
3480     }
3481
3482   if (!dbus_message_get_args (message, NULL,
3483                                        DBUS_TYPE_STRING, &argv[0], 
3484                                        DBUS_TYPE_STRING, &argv[1],
3485                                        DBUS_TYPE_STRING, &argv[2],
3486                                        DBUS_TYPE_STRING, &argv[3],
3487                                        DBUS_TYPE_STRING, &argv[4],
3488                                        DBUS_TYPE_STRING, &argv[5],
3489                                        DBUS_TYPE_STRING, &argv[6],
3490                                        DBUS_TYPE_INVALID))
3491     {
3492       _dbus_warn ("Error getting arguments from return");
3493       goto out;
3494     }
3495
3496    /* don't worry about arg[0] as it may be different 
3497       depending on the path to the tests
3498    */
3499   if (strcmp("-test", argv[1]) != 0)
3500     {
3501       _dbus_warn ("Unexpected argv[1] in shell success service test (expected: %s, got: %s)", 
3502                   "-test", argv[1]);
3503       goto out;
3504     } 
3505
3506   if (strcmp("that", argv[2]) != 0)
3507     {
3508       _dbus_warn ("Unexpected argv[2] in shell success service test (expected: %s, got: %s)", 
3509                    "that", argv[2]);
3510       goto out;
3511     } 
3512
3513   if (strcmp("we get", argv[3]) != 0)
3514     {
3515       _dbus_warn ("Unexpected argv[3] in shell success service test (expected: %s, got: %s)", 
3516                    "we get", argv[3]);
3517       goto out;
3518     } 
3519    
3520   if (strcmp("back", argv[4]) != 0)
3521     {
3522       _dbus_warn ("Unexpected argv[4] in shell success service test (expected: %s, got: %s)", 
3523                    "back", argv[4]);
3524       goto out;
3525     } 
3526
3527   if (strcmp("--what", argv[5]) != 0)
3528     {
3529       _dbus_warn ("Unexpected argv[5] in shell success service test (expected: %s, got: %s)", 
3530                    "--what", argv[5]);
3531       goto out;
3532     } 
3533
3534   if (strcmp("we put in", argv[6]) != 0)
3535     {
3536       _dbus_warn ("Unexpected argv[6] in shell success service test (expected: %s, got: %s)", 
3537                    "we put in", argv[6]);
3538       goto out;
3539     } 
3540
3541   dbus_message_unref (message);
3542   message = NULL;
3543       
3544   if (!check_send_exit_to_service (context, connection,
3545                                    SHELL_SUCCESS_SERVICE_NAME,
3546                                    base_service))
3547     goto out;
3548   
3549   retval = TRUE;
3550
3551  out:
3552   if (message)
3553     dbus_message_unref (message);
3554
3555   if (base_service_message)
3556     dbus_message_unref (base_service_message);
3557
3558   return retval;
3559 }
3560
3561 typedef struct
3562 {
3563   Check1Func func;
3564   BusContext *context;
3565 } Check1Data;
3566
3567 static dbus_bool_t
3568 check_oom_check1_func (void *data)
3569 {
3570   Check1Data *d = data;
3571
3572   if (! (* d->func) (d->context))
3573     return FALSE;
3574   
3575   if (!check_no_leftovers (d->context))
3576     {
3577       _dbus_warn ("Messages were left over, should be covered by test suite\n");
3578       return FALSE;
3579     }
3580
3581   return TRUE;
3582 }
3583
3584 static void
3585 check1_try_iterations (BusContext *context,
3586                        const char *description,
3587                        Check1Func  func)
3588 {
3589   Check1Data d;
3590
3591   d.func = func;
3592   d.context = context;
3593
3594   if (!_dbus_test_oom_handling (description, check_oom_check1_func,
3595                                 &d))
3596     _dbus_assert_not_reached ("test failed");
3597 }
3598
3599 static dbus_bool_t
3600 check_get_services (BusContext     *context,
3601                     DBusConnection *connection,
3602                     const char     *method,
3603                     char         ***services,
3604                     int            *len)
3605 {
3606   DBusMessage *message;
3607   dbus_uint32_t serial;
3608   dbus_bool_t retval;
3609   DBusError error;
3610   char **srvs;
3611   int l;
3612
3613   retval = FALSE;
3614   dbus_error_init (&error);
3615   message = NULL;
3616
3617   message = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
3618                                           DBUS_PATH_DBUS,
3619                                           DBUS_INTERFACE_DBUS,
3620                                           method);
3621
3622   if (message == NULL)
3623     return TRUE;
3624
3625   if (!dbus_connection_send (connection, message, &serial))
3626     {
3627       dbus_message_unref (message);
3628       return TRUE;
3629     }
3630
3631   /* send our message */
3632   bus_test_run_clients_loop (SEND_PENDING (connection));
3633
3634   dbus_message_unref (message);
3635   message = NULL;
3636
3637   dbus_connection_ref (connection); /* because we may get disconnected */
3638   block_connection_until_message_from_bus (context, connection, "reply to ListActivatableNames/ListNames");
3639
3640   if (!dbus_connection_get_is_connected (connection))
3641     {
3642       _dbus_verbose ("connection was disconnected: %s %d\n", _DBUS_FUNCTION_NAME, __LINE__);
3643
3644       dbus_connection_unref (connection);
3645
3646       return TRUE;
3647     }
3648
3649   dbus_connection_unref (connection);
3650
3651   message = pop_message_waiting_for_memory (connection);
3652   if (message == NULL)
3653     {
3654       _dbus_warn ("Did not receive a reply to %s %d on %p\n",
3655                   method, serial, connection);
3656       goto out;
3657     }
3658
3659   verbose_message_received (connection, message);
3660
3661   if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_ERROR)
3662     {
3663       if (dbus_message_is_error (message, DBUS_ERROR_NO_MEMORY))
3664         {
3665           ; /* good, this is a valid response */
3666         }
3667       else
3668         {
3669           warn_unexpected (connection, message, "not this error");
3670
3671           goto out;
3672         }
3673     }
3674   else
3675     {
3676       if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_METHOD_RETURN)
3677         {
3678           ; /* good, expected */
3679         }
3680       else
3681         {
3682           warn_unexpected (connection, message,
3683                            "method_return for ListActivatableNames/ListNames");
3684
3685           goto out;
3686         }
3687
3688     retry_get_property:
3689
3690       if (!dbus_message_get_args (message, &error,
3691                                   DBUS_TYPE_ARRAY,
3692                                   DBUS_TYPE_STRING,
3693                                   &srvs, &l,
3694                                   DBUS_TYPE_INVALID))
3695         {
3696           if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
3697             {
3698               _dbus_verbose ("no memory to list services by %s\n", method);
3699               dbus_error_free (&error);
3700               _dbus_wait_for_memory ();
3701               goto retry_get_property;
3702             }
3703           else
3704             {
3705               _dbus_assert (dbus_error_is_set (&error));
3706               _dbus_warn ("Did not get the expected DBUS_TYPE_ARRAY from %s\n", method);
3707               goto out;
3708             }
3709         } else {
3710           *services = srvs;
3711           *len = l;
3712         }
3713     }
3714   
3715   if (!check_no_leftovers (context))
3716     goto out;
3717   
3718   retval = TRUE;
3719   
3720  out:
3721   dbus_error_free (&error);
3722   
3723   if (message)
3724     dbus_message_unref (message);
3725
3726   return retval;
3727 }
3728
3729 /* returns TRUE if the correct thing happens,
3730  * but the correct thing may include OOM errors.
3731  */
3732 static dbus_bool_t
3733 check_list_services (BusContext     *context,
3734                      DBusConnection *connection)
3735 {
3736   DBusMessage  *message;
3737   DBusMessage  *base_service_message;
3738   const char   *base_service;
3739   dbus_uint32_t serial;
3740   dbus_bool_t   retval;
3741   const char   *existent = EXISTENT_SERVICE_NAME;
3742   dbus_uint32_t flags;
3743   char        **services;
3744   int           len;
3745
3746   _dbus_verbose ("check_list_services for %p\n", connection);
3747
3748   if (!check_get_services (context, connection, "ListActivatableNames", &services, &len))
3749     {
3750       return TRUE;
3751     }
3752
3753   if (!_dbus_string_array_contains ((const char **)services, existent))
3754     {
3755       _dbus_warn ("Did not get the expected %s from ListActivatableNames\n", existent);
3756       return FALSE;
3757     }
3758
3759   dbus_free_string_array (services);
3760
3761   base_service_message = NULL;
3762
3763   message = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
3764                                           DBUS_PATH_DBUS,
3765                                           DBUS_INTERFACE_DBUS,
3766                                           "StartServiceByName");
3767
3768   if (message == NULL)
3769     return TRUE;
3770
3771   dbus_message_set_auto_start (message, FALSE);
3772
3773   flags = 0;
3774   if (!dbus_message_append_args (message,
3775                                  DBUS_TYPE_STRING, &existent,
3776                                  DBUS_TYPE_UINT32, &flags,
3777                                  DBUS_TYPE_INVALID))
3778     {
3779       dbus_message_unref (message);
3780       return TRUE;
3781     }
3782
3783   if (!dbus_connection_send (connection, message, &serial))
3784     {
3785       dbus_message_unref (message);
3786       return TRUE;
3787     }
3788
3789   dbus_message_unref (message);
3790   message = NULL;
3791
3792   bus_test_run_everything (context);
3793
3794   /* now wait for the message bus to hear back from the activated
3795    * service.
3796    */
3797   block_connection_until_message_from_bus (context, connection, "activated service to connect");
3798
3799   bus_test_run_everything (context);
3800
3801   if (!dbus_connection_get_is_connected (connection))
3802     {
3803       _dbus_verbose ("connection was disconnected: %s %d\n", _DBUS_FUNCTION_NAME, __LINE__);
3804       return TRUE;
3805     }
3806
3807   retval = FALSE;
3808
3809   message = pop_message_waiting_for_memory (connection);
3810   if (message == NULL)
3811     {
3812       _dbus_warn ("Did not receive any messages after %s %d on %p\n",
3813                   "StartServiceByName", serial, connection);
3814       goto out;
3815     }
3816
3817   verbose_message_received (connection, message);
3818   _dbus_verbose ("  (after sending %s)\n", "StartServiceByName");
3819
3820   if (dbus_message_get_type (message) == DBUS_MESSAGE_TYPE_ERROR)
3821     {
3822       if (!dbus_message_has_sender (message, DBUS_SERVICE_DBUS))
3823         {
3824           _dbus_warn ("Message has wrong sender %s\n",
3825                       dbus_message_get_sender (message) ?
3826                       dbus_message_get_sender (message) : "(none)");
3827           goto out;
3828         }
3829
3830       if (dbus_message_is_error (message,
3831                                  DBUS_ERROR_NO_MEMORY))
3832         {
3833           ; /* good, this is a valid response */
3834         }
3835       else if (dbus_message_is_error (message,
3836                                       DBUS_ERROR_SPAWN_CHILD_EXITED) ||
3837                dbus_message_is_error (message,
3838                                       DBUS_ERROR_SPAWN_CHILD_SIGNALED) ||
3839                dbus_message_is_error (message,
3840                                       DBUS_ERROR_SPAWN_EXEC_FAILED))
3841         {
3842           ; /* good, this is expected also */
3843         }
3844       else
3845         {
3846           _dbus_warn ("Did not expect error %s\n",
3847                       dbus_message_get_error_name (message));
3848           goto out;
3849         }
3850     }
3851   else
3852     {
3853       GotServiceInfo message_kind;
3854
3855       if (!check_base_service_activated (context, connection,
3856                                          message, &base_service))
3857         goto out;
3858
3859       base_service_message = message;
3860       message = NULL;
3861
3862       /* We may need to block here for the test service to exit or finish up */
3863       block_connection_until_message_from_bus (context, connection, "test service to exit or finish up");
3864
3865       message = dbus_connection_borrow_message (connection);
3866       if (message == NULL)
3867         {
3868           _dbus_warn ("Did not receive any messages after base service creation notification\n");
3869           goto out;
3870         }
3871
3872       message_kind = check_got_service_info (message);
3873
3874       dbus_connection_return_message (connection, message);
3875       message = NULL;
3876
3877       switch (message_kind)
3878         {
3879         case GOT_SOMETHING_ELSE:
3880         case GOT_ERROR:
3881         case GOT_SERVICE_DELETED:
3882           _dbus_warn ("Unexpected message after ActivateService "
3883                       "(should be an error or a service announcement");
3884           goto out;
3885
3886         case GOT_SERVICE_CREATED:
3887           message = pop_message_waiting_for_memory (connection);
3888           if (message == NULL)
3889             {
3890               _dbus_warn ("Failed to pop message we just put back! "
3891                           "should have been a NameOwnerChanged (creation)\n");
3892               goto out;
3893             }
3894           
3895           if (!check_service_activated (context, connection, EXISTENT_SERVICE_NAME,
3896                                         base_service, message))
3897             goto out;
3898
3899           dbus_message_unref (message);
3900           message = NULL;
3901
3902           if (!check_no_leftovers (context))
3903             {
3904               _dbus_warn ("Messages were left over after successful activation\n");
3905               goto out;
3906             }
3907
3908           break;
3909         }
3910     }
3911   
3912   if (!check_get_services (context, connection, "ListNames", &services, &len))
3913     {
3914       return TRUE;
3915     }
3916
3917   if (!_dbus_string_array_contains ((const char **)services, existent))
3918     {
3919       _dbus_warn ("Did not get the expected %s from ListNames\n", existent);
3920       goto out;
3921     }
3922
3923   dbus_free_string_array (services);
3924
3925   if (!check_send_exit_to_service (context, connection,
3926                                    EXISTENT_SERVICE_NAME, base_service))
3927     goto out;
3928
3929   retval = TRUE;
3930
3931  out:
3932   if (message)
3933     dbus_message_unref (message);
3934
3935   if (base_service_message)
3936     dbus_message_unref (base_service_message);
3937
3938   return retval;
3939 }
3940
3941 typedef struct
3942 {
3943   Check2Func func;
3944   BusContext *context;
3945   DBusConnection *connection;
3946 } Check2Data;
3947
3948 static dbus_bool_t
3949 check_oom_check2_func (void *data)
3950 {
3951   Check2Data *d = data;
3952
3953   if (! (* d->func) (d->context, d->connection))
3954     return FALSE;
3955   
3956   if (!check_no_leftovers (d->context))
3957     {
3958       _dbus_warn ("Messages were left over, should be covered by test suite");
3959       return FALSE;
3960     }
3961
3962   return TRUE;
3963 }
3964
3965 static void
3966 check2_try_iterations (BusContext     *context,
3967                        DBusConnection *connection,
3968                        const char     *description,
3969                        Check2Func      func)
3970 {
3971   Check2Data d;
3972
3973   d.func = func;
3974   d.context = context;
3975   d.connection = connection;
3976   
3977   if (!_dbus_test_oom_handling (description, check_oom_check2_func,
3978                                 &d))
3979     {
3980       _dbus_warn ("%s failed during oom\n", description);
3981       _dbus_assert_not_reached ("test failed");
3982     }
3983 }
3984
3985 dbus_bool_t
3986 bus_dispatch_test (const DBusString *test_data_dir)
3987 {
3988   BusContext *context;
3989   DBusConnection *foo;
3990   DBusConnection *bar;
3991   DBusConnection *baz;
3992   DBusError error;
3993
3994   dbus_error_init (&error);
3995   
3996   context = bus_context_new_test (test_data_dir,
3997                                   "valid-config-files/debug-allow-all.conf");
3998   if (context == NULL)
3999     return FALSE;
4000   
4001   foo = dbus_connection_open_private ("debug-pipe:name=test-server", &error);
4002   if (foo == NULL)
4003     _dbus_assert_not_reached ("could not alloc connection");
4004
4005   if (!bus_setup_debug_client (foo))
4006     _dbus_assert_not_reached ("could not set up connection");
4007
4008   spin_connection_until_authenticated (context, foo);
4009   
4010   if (!check_hello_message (context, foo))
4011     _dbus_assert_not_reached ("hello message failed");
4012
4013   if (!check_double_hello_message (context, foo))
4014     _dbus_assert_not_reached ("double hello message failed");
4015
4016   if (!check_add_match_all (context, foo))
4017     _dbus_assert_not_reached ("AddMatch message failed");
4018   
4019   bar = dbus_connection_open_private ("debug-pipe:name=test-server", &error);
4020   if (bar == NULL)
4021     _dbus_assert_not_reached ("could not alloc connection");
4022
4023   if (!bus_setup_debug_client (bar))
4024     _dbus_assert_not_reached ("could not set up connection");
4025
4026   spin_connection_until_authenticated (context, bar);
4027   
4028   if (!check_hello_message (context, bar))
4029     _dbus_assert_not_reached ("hello message failed");
4030
4031   if (!check_add_match_all (context, bar))
4032     _dbus_assert_not_reached ("AddMatch message failed");
4033   
4034   baz = dbus_connection_open_private ("debug-pipe:name=test-server", &error);
4035   if (baz == NULL)
4036     _dbus_assert_not_reached ("could not alloc connection");
4037
4038   if (!bus_setup_debug_client (baz))
4039     _dbus_assert_not_reached ("could not set up connection");
4040
4041   spin_connection_until_authenticated (context, baz);
4042   
4043   if (!check_hello_message (context, baz))
4044     _dbus_assert_not_reached ("hello message failed");
4045
4046   if (!check_add_match_all (context, baz))
4047     _dbus_assert_not_reached ("AddMatch message failed");
4048
4049   if (!check_get_connection_unix_user (context, baz))
4050     _dbus_assert_not_reached ("GetConnectionUnixUser message failed");
4051
4052   if (!check_get_connection_unix_process_id (context, baz))
4053     _dbus_assert_not_reached ("GetConnectionUnixProcessID message failed");
4054
4055   if (!check_list_services (context, baz))
4056     _dbus_assert_not_reached ("ListActivatableNames message failed");
4057   
4058   if (!check_no_leftovers (context))
4059     {
4060       _dbus_warn ("Messages were left over after setting up initial connections");
4061       _dbus_assert_not_reached ("initial connection setup failed");
4062     }
4063   
4064   check1_try_iterations (context, "create_and_hello",
4065                          check_hello_connection);
4066   
4067   check2_try_iterations (context, foo, "nonexistent_service_no_auto_start",
4068                          check_nonexistent_service_no_auto_start);
4069
4070   check2_try_iterations (context, foo, "segfault_service_no_auto_start",
4071                          check_segfault_service_no_auto_start);
4072   
4073   check2_try_iterations (context, foo, "existent_service_no_auto_start",
4074                          check_existent_service_no_auto_start);
4075   
4076   check2_try_iterations (context, foo, "nonexistent_service_auto_start",
4077                          check_nonexistent_service_auto_start);
4078   
4079   check2_try_iterations (context, foo, "segfault_service_auto_start",
4080                          check_segfault_service_auto_start);
4081
4082   check2_try_iterations (context, foo, "shell_fail_service_auto_start",
4083                          check_shell_fail_service_auto_start);
4084
4085 #if 0
4086   /* Note: need to resolve some issues with the testing code in order to run
4087    * this in oom (handle that we sometimes don't get replies back from the bus
4088    * when oom happens, without blocking the test).
4089    */
4090   check2_try_iterations (context, foo, "existent_service_auto_auto_start",
4091                          check_existent_service_auto_start);
4092 #endif
4093   
4094   if (!check_existent_service_auto_start (context, foo))
4095     _dbus_assert_not_reached ("existent service auto start failed");
4096
4097   if (!check_shell_service_success_auto_start (context, foo))
4098     _dbus_assert_not_reached ("shell success service auto start failed");
4099
4100   _dbus_verbose ("Disconnecting foo, bar, and baz\n");
4101
4102   kill_client_connection_unchecked (foo);
4103   kill_client_connection_unchecked (bar);
4104   kill_client_connection_unchecked (baz);
4105
4106   bus_context_unref (context);
4107   
4108   return TRUE;
4109 }
4110
4111 dbus_bool_t
4112 bus_dispatch_sha1_test (const DBusString *test_data_dir)
4113 {
4114   BusContext *context;
4115   DBusConnection *foo;
4116   DBusError error;
4117
4118   dbus_error_init (&error);
4119   
4120   /* Test SHA1 authentication */
4121   _dbus_verbose ("Testing SHA1 context\n");
4122   
4123   context = bus_context_new_test (test_data_dir,
4124                                   "valid-config-files/debug-allow-all-sha1.conf");
4125   if (context == NULL)
4126     return FALSE;
4127
4128   foo = dbus_connection_open_private ("debug-pipe:name=test-server", &error);
4129   if (foo == NULL)
4130     _dbus_assert_not_reached ("could not alloc connection");
4131
4132   if (!bus_setup_debug_client (foo))
4133     _dbus_assert_not_reached ("could not set up connection");
4134
4135   spin_connection_until_authenticated (context, foo);
4136   
4137   if (!check_hello_message (context, foo))
4138     _dbus_assert_not_reached ("hello message failed");
4139
4140   if (!check_add_match_all (context, foo))
4141     _dbus_assert_not_reached ("addmatch message failed");
4142   
4143   if (!check_no_leftovers (context))
4144     {
4145       _dbus_warn ("Messages were left over after setting up initial SHA-1 connection\n");
4146       _dbus_assert_not_reached ("initial connection setup failed");
4147     }
4148   
4149   check1_try_iterations (context, "create_and_hello_sha1",
4150                          check_hello_connection);
4151
4152   kill_client_connection_unchecked (foo);
4153
4154   bus_context_unref (context);
4155
4156   return TRUE;
4157 }
4158
4159 #endif /* DBUS_BUILD_TESTS */