bus-activation: separate the "finished" callback from the watch callback
[platform/upstream/dbus.git] / bus / activation.c
1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* activation.c  Activation of services
3  *
4  * Copyright (C) 2003  CodeFactory AB
5  * Copyright (C) 2003  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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
23  *
24  */
25
26 #include <config.h>
27 #include "activation.h"
28 #include "activation-exit-codes.h"
29 #include "desktop-file.h"
30 #include "dispatch.h"
31 #include "services.h"
32 #include "test.h"
33 #include "utils.h"
34 #include <dbus/dbus-internals.h>
35 #include <dbus/dbus-hash.h>
36 #include <dbus/dbus-list.h>
37 #include <dbus/dbus-shell.h>
38 #include <dbus/dbus-spawn.h>
39 #include <dbus/dbus-timeout.h>
40 #include <dbus/dbus-sysdeps.h>
41 #ifdef HAVE_ERRNO_H
42 #include <errno.h>
43 #endif
44
45 struct BusActivation
46 {
47   int refcount;
48   DBusHashTable *entries;
49   DBusHashTable *pending_activations;
50   char *server_address;
51   BusContext *context;
52   int n_pending_activations; /**< This is in fact the number of BusPendingActivationEntry,
53                               * i.e. number of pending activation requests, not pending
54                               * activations per se
55                               */
56   DBusHashTable *directories;
57   DBusHashTable *environment;
58 };
59
60 typedef struct
61 {
62   int refcount;
63   char *dir_c;
64   DBusHashTable *entries;
65 } BusServiceDirectory;
66
67 typedef struct
68 {
69   int refcount;
70   char *name;
71   char *exec;
72   char *user;
73   char *systemd_service;
74   unsigned long mtime;
75   BusServiceDirectory *s_dir;
76   char *filename;
77 } BusActivationEntry;
78
79 typedef struct BusPendingActivationEntry BusPendingActivationEntry;
80
81 struct BusPendingActivationEntry
82 {
83   DBusMessage *activation_message;
84   DBusConnection *connection;
85
86   dbus_bool_t auto_activation;
87 };
88
89 typedef struct
90 {
91   int refcount;
92   BusActivation *activation;
93   char *service_name;
94   char *exec;
95   char *systemd_service;
96   DBusList *entries;
97   int n_entries;
98   DBusBabysitter *babysitter;
99   DBusTimeout *timeout;
100   unsigned int timeout_added : 1;
101 } BusPendingActivation;
102
103 #if 0
104 static BusServiceDirectory *
105 bus_service_directory_ref (BusServiceDirectory *dir)
106 {
107   _dbus_assert (dir->refcount);
108
109   dir->refcount++;
110
111   return dir;
112 }
113 #endif
114
115 static void
116 bus_service_directory_unref (BusServiceDirectory *dir)
117 {
118   if (dir == NULL)
119     return;
120
121   _dbus_assert (dir->refcount > 0);
122   dir->refcount--;
123
124   if (dir->refcount > 0)
125     return;
126
127   if (dir->entries)
128     _dbus_hash_table_unref (dir->entries);
129
130   dbus_free (dir->dir_c);
131   dbus_free (dir);
132 }
133
134 static void
135 bus_pending_activation_entry_free (BusPendingActivationEntry *entry)
136 {
137   if (entry->activation_message)
138     dbus_message_unref (entry->activation_message);
139
140   if (entry->connection)
141     dbus_connection_unref (entry->connection);
142
143   dbus_free (entry);
144 }
145
146 static BusPendingActivation *
147 bus_pending_activation_ref (BusPendingActivation *pending_activation)
148 {
149   _dbus_assert (pending_activation->refcount > 0);
150   pending_activation->refcount += 1;
151
152   return pending_activation;
153 }
154
155 static void
156 bus_pending_activation_unref (BusPendingActivation *pending_activation)
157 {
158   DBusList *link;
159
160   if (pending_activation == NULL) /* hash table requires this */
161     return;
162
163   _dbus_assert (pending_activation->refcount > 0);
164   pending_activation->refcount -= 1;
165
166   if (pending_activation->refcount > 0)
167     return;
168
169   if (pending_activation->timeout_added)
170     {
171       _dbus_loop_remove_timeout (bus_context_get_loop (pending_activation->activation->context),
172                                  pending_activation->timeout);
173       pending_activation->timeout_added = FALSE;
174     }
175
176   if (pending_activation->timeout)
177     _dbus_timeout_unref (pending_activation->timeout);
178
179   if (pending_activation->babysitter)
180     {
181       if (!_dbus_babysitter_set_watch_functions (pending_activation->babysitter,
182                                                  NULL, NULL, NULL,
183                                                  pending_activation->babysitter,
184                                                  NULL))
185         _dbus_assert_not_reached ("setting watch functions to NULL failed");
186
187       _dbus_babysitter_unref (pending_activation->babysitter);
188     }
189
190   dbus_free (pending_activation->service_name);
191   dbus_free (pending_activation->exec);
192   dbus_free (pending_activation->systemd_service);
193
194   link = _dbus_list_get_first_link (&pending_activation->entries);
195
196   while (link != NULL)
197     {
198       BusPendingActivationEntry *entry = link->data;
199
200       bus_pending_activation_entry_free (entry);
201
202       link = _dbus_list_get_next_link (&pending_activation->entries, link);
203     }
204   _dbus_list_clear (&pending_activation->entries);
205
206   pending_activation->activation->n_pending_activations -=
207     pending_activation->n_entries;
208
209   _dbus_assert (pending_activation->activation->n_pending_activations >= 0);
210
211   dbus_free (pending_activation);
212 }
213
214 static BusActivationEntry *
215 bus_activation_entry_ref (BusActivationEntry *entry)
216 {
217   _dbus_assert (entry->refcount > 0);
218   entry->refcount++;
219
220   return entry;
221 }
222
223 static void
224 bus_activation_entry_unref (BusActivationEntry *entry)
225 {
226   if (entry == NULL) /* hash table requires this */
227     return;
228
229   _dbus_assert (entry->refcount > 0);
230   entry->refcount--;
231
232   if (entry->refcount > 0)
233     return;
234
235   dbus_free (entry->name);
236   dbus_free (entry->exec);
237   dbus_free (entry->user);
238   dbus_free (entry->filename);
239   dbus_free (entry->systemd_service);
240
241   dbus_free (entry);
242 }
243
244 static dbus_bool_t
245 update_desktop_file_entry (BusActivation       *activation,
246                            BusServiceDirectory *s_dir,
247                            DBusString          *filename,
248                            BusDesktopFile      *desktop_file,
249                            DBusError           *error)
250 {
251   char *name, *exec, *user, *exec_tmp, *systemd_service;
252   BusActivationEntry *entry;
253   DBusStat stat_buf;
254   DBusString file_path;
255   DBusError tmp_error;
256   dbus_bool_t retval;
257
258   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
259
260   name = NULL;
261   exec = NULL;
262   user = NULL;
263   exec_tmp = NULL;
264   entry = NULL;
265   systemd_service = NULL;
266
267   dbus_error_init (&tmp_error);
268
269   if (!_dbus_string_init (&file_path))
270     {
271       BUS_SET_OOM (error);
272       return FALSE;
273     }
274
275   if (!_dbus_string_append (&file_path, s_dir->dir_c) ||
276       !_dbus_concat_dir_and_file (&file_path, filename))
277     {
278       BUS_SET_OOM (error);
279       goto out;
280     }
281
282   if (!_dbus_stat (&file_path, &stat_buf, NULL))
283     {
284       dbus_set_error (error, DBUS_ERROR_FAILED,
285                       "Can't stat the service file\n");
286       goto out;
287     }
288
289   if (!bus_desktop_file_get_string (desktop_file,
290                                     DBUS_SERVICE_SECTION,
291                                     DBUS_SERVICE_NAME,
292                                     &name,
293                                     error))
294     goto out;
295
296   if (!bus_desktop_file_get_string (desktop_file,
297                                     DBUS_SERVICE_SECTION,
298                                     DBUS_SERVICE_EXEC,
299                                     &exec_tmp,
300                                     error))
301     goto out;
302
303   exec = _dbus_strdup (_dbus_replace_install_prefix (exec_tmp));
304   dbus_free (exec_tmp);
305   exec_tmp = NULL;
306
307   /* user is not _required_ unless we are using system activation */
308   if (!bus_desktop_file_get_string (desktop_file,
309                                     DBUS_SERVICE_SECTION,
310                                     DBUS_SERVICE_USER,
311                                     &user, &tmp_error))
312     {
313       _DBUS_ASSERT_ERROR_IS_SET (&tmp_error);
314       /* if we got OOM, then exit */
315       if (dbus_error_has_name (&tmp_error, DBUS_ERROR_NO_MEMORY))
316         {
317           dbus_move_error (&tmp_error, error);
318           goto out;
319         }
320       else
321         {
322           /* if we have error because we didn't find anything then continue */
323           dbus_error_free (&tmp_error);
324           dbus_free (user);
325           user = NULL;
326         }
327     }
328   _DBUS_ASSERT_ERROR_IS_CLEAR (&tmp_error);
329
330   /* systemd service is never required */
331   if (!bus_desktop_file_get_string (desktop_file,
332                                     DBUS_SERVICE_SECTION,
333                                     DBUS_SERVICE_SYSTEMD_SERVICE,
334                                     &systemd_service, &tmp_error))
335     {
336       _DBUS_ASSERT_ERROR_IS_SET (&tmp_error);
337       /* if we got OOM, then exit */
338       if (dbus_error_has_name (&tmp_error, DBUS_ERROR_NO_MEMORY))
339         {
340           dbus_move_error (&tmp_error, error);
341           goto out;
342         }
343       else
344         {
345           /* if we have error because we didn't find anything then continue */
346           dbus_error_free (&tmp_error);
347           dbus_free (systemd_service);
348           systemd_service = NULL;
349         }
350     }
351
352   _DBUS_ASSERT_ERROR_IS_CLEAR (&tmp_error);
353
354   entry = _dbus_hash_table_lookup_string (s_dir->entries,
355                                           _dbus_string_get_const_data (filename));
356
357   if (entry == NULL) /* New file */
358     {
359       /* FIXME we need a better-defined algorithm for which service file to
360        * pick than "whichever one is first in the directory listing"
361        */
362       if (_dbus_hash_table_lookup_string (activation->entries, name))
363         {
364           dbus_set_error (error, DBUS_ERROR_FAILED,
365                           "Service %s already exists in activation entry list\n", name);
366           goto out;
367         }
368
369       entry = dbus_new0 (BusActivationEntry, 1);
370       if (entry == NULL)
371         {
372           BUS_SET_OOM (error);
373           goto out;
374         }
375
376       entry->name = name;
377       entry->exec = exec;
378       entry->user = user;
379       entry->systemd_service = systemd_service;
380       entry->refcount = 1;
381
382       /* ownership has been transferred to entry, do not free separately */
383       name = NULL;
384       exec = NULL;
385       user = NULL;
386       systemd_service = NULL;
387
388       entry->s_dir = s_dir;
389       entry->filename = _dbus_strdup (_dbus_string_get_const_data (filename));
390       if (!entry->filename)
391         {
392           BUS_SET_OOM (error);
393           goto out;
394         }
395
396       if (!_dbus_hash_table_insert_string (activation->entries, entry->name, bus_activation_entry_ref (entry)))
397         {
398           BUS_SET_OOM (error);
399           goto out;
400         }
401
402       if (!_dbus_hash_table_insert_string (s_dir->entries, entry->filename, bus_activation_entry_ref (entry)))
403         {
404           /* Revert the insertion in the entries table */
405           _dbus_hash_table_remove_string (activation->entries, entry->name);
406           BUS_SET_OOM (error);
407           goto out;
408         }
409
410       _dbus_verbose ("Added \"%s\" to list of services\n", entry->name);
411     }
412   else /* Just update the entry */
413     {
414       bus_activation_entry_ref (entry);
415       _dbus_hash_table_remove_string (activation->entries, entry->name);
416
417       if (_dbus_hash_table_lookup_string (activation->entries, name))
418         {
419           _dbus_verbose ("The new service name \"%s\" of service file \"%s\" already in cache, ignoring\n",
420                          name, _dbus_string_get_const_data (&file_path));
421           goto out;
422         }
423
424       /* ownership has been transferred to entry, do not free separately */
425       dbus_free (entry->name);
426       entry->name = name;
427       name = NULL;
428
429       dbus_free (entry->exec);
430       entry->exec = exec;
431       exec = NULL;
432
433       dbus_free (entry->user);
434       entry->user = user;
435       user = NULL;
436
437       dbus_free (entry->systemd_service);
438       entry->systemd_service = systemd_service;
439       systemd_service = NULL;
440
441       if (!_dbus_hash_table_insert_string (activation->entries,
442                                            entry->name, bus_activation_entry_ref(entry)))
443         {
444           BUS_SET_OOM (error);
445           /* Also remove path to entries hash since we want this in sync with
446            * the entries hash table */
447           _dbus_hash_table_remove_string (entry->s_dir->entries,
448                                           entry->filename);
449           bus_activation_entry_unref (entry);
450           return FALSE;
451         }
452     }
453
454   entry->mtime = stat_buf.mtime;
455   retval = TRUE;
456
457 out:
458   /* if these have been transferred into entry, the variables will be NULL */
459   dbus_free (name);
460   dbus_free (exec);
461   dbus_free (user);
462   dbus_free (systemd_service);
463   _dbus_string_free (&file_path);
464
465   if (entry)
466     bus_activation_entry_unref (entry);
467
468   return FALSE;
469 }
470
471 static dbus_bool_t
472 check_service_file (BusActivation       *activation,
473                     BusActivationEntry  *entry,
474                     BusActivationEntry **updated_entry,
475                     DBusError           *error)
476 {
477   DBusStat stat_buf;
478   dbus_bool_t retval;
479   BusActivationEntry *tmp_entry;
480   DBusString file_path;
481   DBusString filename;
482
483   retval = TRUE;
484   tmp_entry = entry;
485
486   _dbus_string_init_const (&filename, entry->filename);
487
488   if (!_dbus_string_init (&file_path))
489     {
490       BUS_SET_OOM (error);
491       return FALSE;
492     }
493
494   if (!_dbus_string_append (&file_path, entry->s_dir->dir_c) ||
495       !_dbus_concat_dir_and_file (&file_path, &filename))
496     {
497       BUS_SET_OOM (error);
498       retval = FALSE;
499       goto out;
500     }
501
502   if (!_dbus_stat (&file_path, &stat_buf, NULL))
503     {
504       _dbus_verbose ("****** Can't stat file \"%s\", removing from cache\n",
505                      _dbus_string_get_const_data (&file_path));
506
507       _dbus_hash_table_remove_string (activation->entries, entry->name);
508       _dbus_hash_table_remove_string (entry->s_dir->entries, entry->filename);
509
510       tmp_entry = NULL;
511       retval = TRUE;
512       goto out;
513     }
514   else
515     {
516       if (stat_buf.mtime > entry->mtime)
517         {
518           BusDesktopFile *desktop_file;
519           DBusError tmp_error;
520
521           dbus_error_init (&tmp_error);
522
523           desktop_file = bus_desktop_file_load (&file_path, &tmp_error);
524           if (desktop_file == NULL)
525             {
526               _dbus_verbose ("Could not load %s: %s\n",
527                              _dbus_string_get_const_data (&file_path),
528                              tmp_error.message);
529               if (dbus_error_has_name (&tmp_error, DBUS_ERROR_NO_MEMORY))
530                 {
531                   dbus_move_error (&tmp_error, error);
532                   retval = FALSE;
533                   goto out;
534                 }
535               dbus_error_free (&tmp_error);
536               retval = TRUE;
537               goto out;
538             }
539
540           /* @todo We can return OOM or a DBUS_ERROR_FAILED error
541            *       Handle these both better
542            */
543           if (!update_desktop_file_entry (activation, entry->s_dir, &filename, desktop_file, &tmp_error))
544             {
545               bus_desktop_file_free (desktop_file);
546               if (dbus_error_has_name (&tmp_error, DBUS_ERROR_NO_MEMORY))
547                 {
548                   dbus_move_error (&tmp_error, error);
549                   retval = FALSE;
550                   goto out;
551                 }
552               dbus_error_free (&tmp_error);
553               retval = TRUE;
554               goto out;
555             }
556
557           bus_desktop_file_free (desktop_file);
558           retval = TRUE;
559         }
560     }
561
562 out:
563   _dbus_string_free (&file_path);
564
565   if (updated_entry != NULL)
566     *updated_entry = tmp_entry;
567   return retval;
568 }
569
570
571 /* warning: this doesn't fully "undo" itself on failure, i.e. doesn't strip
572  * hash entries it already added.
573  */
574 static dbus_bool_t
575 update_directory (BusActivation       *activation,
576                   BusServiceDirectory *s_dir,
577                   DBusError           *error)
578 {
579   DBusDirIter *iter;
580   DBusString dir, filename;
581   BusDesktopFile *desktop_file;
582   DBusError tmp_error;
583   dbus_bool_t retval;
584   BusActivationEntry *entry;
585   DBusString full_path;
586
587   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
588
589   iter = NULL;
590   desktop_file = NULL;
591
592   _dbus_string_init_const (&dir, s_dir->dir_c);
593
594   if (!_dbus_string_init (&filename))
595     {
596       BUS_SET_OOM (error);
597       return FALSE;
598     }
599
600   if (!_dbus_string_init (&full_path))
601     {
602       BUS_SET_OOM (error);
603       _dbus_string_free (&filename);
604       return FALSE;
605     }
606
607   retval = FALSE;
608
609   /* from this point it's safe to "goto out" */
610
611   iter = _dbus_directory_open (&dir, error);
612   if (iter == NULL)
613     {
614       _dbus_verbose ("Failed to open directory %s: %s\n",
615                      s_dir->dir_c,
616                      error ? error->message : "unknown");
617       goto out;
618     }
619
620   /* Now read the files */
621   dbus_error_init (&tmp_error);
622   while (_dbus_directory_get_next_file (iter, &filename, &tmp_error))
623     {
624       _dbus_assert (!dbus_error_is_set (&tmp_error));
625
626       _dbus_string_set_length (&full_path, 0);
627
628       if (!_dbus_string_ends_with_c_str (&filename, ".service"))
629         {
630           _dbus_verbose ("Skipping non-.service file %s\n",
631                          _dbus_string_get_const_data (&filename));
632           continue;
633         }
634
635       entry = _dbus_hash_table_lookup_string (s_dir->entries, _dbus_string_get_const_data (&filename));
636       if (entry) /* Already has this service file in the cache */
637         {
638           if (!check_service_file (activation, entry, NULL, error))
639             goto out;
640
641           continue;
642         }
643
644       if (!_dbus_string_append (&full_path, s_dir->dir_c) ||
645           !_dbus_concat_dir_and_file (&full_path, &filename))
646         {
647           BUS_SET_OOM (error);
648           goto out;
649         }
650
651       /* New file */
652       desktop_file = bus_desktop_file_load (&full_path, &tmp_error);
653       if (desktop_file == NULL)
654         {
655           _dbus_verbose ("Could not load %s: %s\n",
656                          _dbus_string_get_const_data (&full_path),
657                          tmp_error.message);
658
659           if (dbus_error_has_name (&tmp_error, DBUS_ERROR_NO_MEMORY))
660             {
661               dbus_move_error (&tmp_error, error);
662               goto out;
663             }
664
665           dbus_error_free (&tmp_error);
666           continue;
667         }
668
669       /* @todo We can return OOM or a DBUS_ERROR_FAILED error
670        *       Handle these both better
671        */
672       if (!update_desktop_file_entry (activation, s_dir, &filename, desktop_file, &tmp_error))
673         {
674           bus_desktop_file_free (desktop_file);
675           desktop_file = NULL;
676
677           _dbus_verbose ("Could not add %s to activation entry list: %s\n",
678                          _dbus_string_get_const_data (&full_path), tmp_error.message);
679
680           if (dbus_error_has_name (&tmp_error, DBUS_ERROR_NO_MEMORY))
681             {
682               dbus_move_error (&tmp_error, error);
683               goto out;
684             }
685
686           dbus_error_free (&tmp_error);
687           continue;
688         }
689       else
690         {
691           bus_desktop_file_free (desktop_file);
692           desktop_file = NULL;
693           continue;
694         }
695     }
696
697   if (dbus_error_is_set (&tmp_error))
698     {
699       dbus_move_error (&tmp_error, error);
700       goto out;
701     }
702
703   retval = TRUE;
704
705  out:
706   if (!retval)
707     _DBUS_ASSERT_ERROR_IS_SET (error);
708   else
709     _DBUS_ASSERT_ERROR_IS_CLEAR (error);
710
711   if (iter != NULL)
712     _dbus_directory_close (iter);
713   _dbus_string_free (&filename);
714   _dbus_string_free (&full_path);
715
716   return retval;
717 }
718
719 static dbus_bool_t
720 populate_environment (BusActivation *activation)
721 {
722   DBusString   key;
723   DBusString   value;
724   int          i;
725   char       **environment;
726   dbus_bool_t  retval = FALSE;
727
728   environment = _dbus_get_environment ();
729
730   if (environment == NULL)
731     return FALSE;
732
733   if (!_dbus_string_init (&key))
734     {
735         dbus_free_string_array (environment);
736         return FALSE;
737     }
738
739   if (!_dbus_string_init (&value))
740     {
741       _dbus_string_free (&key);
742       dbus_free_string_array (environment);
743       return FALSE;
744     }
745
746   for (i = 0; environment[i] != NULL; i++)
747     {
748       if (!_dbus_string_append (&key, environment[i]))
749         break;
750
751       if (_dbus_string_split_on_byte (&key, '=', &value))
752         {
753           char *hash_key, *hash_value;
754
755           if (!_dbus_string_steal_data (&key, &hash_key))
756             break;
757
758           if (!_dbus_string_steal_data (&value, &hash_value))
759             break;
760
761           if (!_dbus_hash_table_insert_string (activation->environment,
762                                                hash_key, hash_value))
763             break;
764         }
765       _dbus_string_set_length (&key, 0);
766       _dbus_string_set_length (&value, 0);
767     }
768
769   if (environment[i] != NULL)
770     goto out;
771
772   retval = TRUE;
773 out:
774
775   _dbus_string_free (&key);
776   _dbus_string_free (&value);
777   dbus_free_string_array (environment);
778
779   return retval;
780 }
781
782 dbus_bool_t
783 bus_activation_reload (BusActivation     *activation,
784                        const DBusString  *address,
785                        DBusList         **directories,
786                        DBusError         *error)
787 {
788   DBusList      *link;
789   char          *dir;
790
791   if (activation->server_address != NULL)
792     dbus_free (activation->server_address);
793   if (!_dbus_string_copy_data (address, &activation->server_address))
794     {
795       BUS_SET_OOM (error);
796       goto failed;
797     }
798
799   if (activation->entries != NULL)
800     _dbus_hash_table_unref (activation->entries);
801   activation->entries = _dbus_hash_table_new (DBUS_HASH_STRING, NULL,
802                                              (DBusFreeFunction)bus_activation_entry_unref);
803   if (activation->entries == NULL)
804     {
805       BUS_SET_OOM (error);
806       goto failed;
807     }
808
809   if (activation->directories != NULL)
810     _dbus_hash_table_unref (activation->directories);
811   activation->directories = _dbus_hash_table_new (DBUS_HASH_STRING, NULL,
812                                                   (DBusFreeFunction)bus_service_directory_unref);
813
814   if (activation->directories == NULL)
815     {
816       BUS_SET_OOM (error);
817       goto failed;
818     }
819
820   link = _dbus_list_get_first_link (directories);
821   while (link != NULL)
822     {
823       BusServiceDirectory *s_dir;
824
825       dir = _dbus_strdup ((const char *) link->data);
826       if (!dir)
827         {
828           BUS_SET_OOM (error);
829           goto failed;
830         }
831
832       s_dir = dbus_new0 (BusServiceDirectory, 1);
833       if (!s_dir)
834         {
835           dbus_free (dir);
836           BUS_SET_OOM (error);
837           goto failed;
838         }
839
840       s_dir->refcount = 1;
841       s_dir->dir_c = dir;
842
843       s_dir->entries = _dbus_hash_table_new (DBUS_HASH_STRING, NULL,
844                                              (DBusFreeFunction)bus_activation_entry_unref);
845
846       if (!s_dir->entries)
847         {
848           bus_service_directory_unref (s_dir);
849           BUS_SET_OOM (error);
850           goto failed;
851         }
852
853       if (!_dbus_hash_table_insert_string (activation->directories, s_dir->dir_c, s_dir))
854         {
855           bus_service_directory_unref (s_dir);
856           BUS_SET_OOM (error);
857           goto failed;
858         }
859
860       /* only fail on OOM, it is ok if we can't read the directory */
861       if (!update_directory (activation, s_dir, error))
862         {
863           if (dbus_error_has_name (error, DBUS_ERROR_NO_MEMORY))
864             goto failed;
865           else
866             dbus_error_free (error);
867         }
868
869       link = _dbus_list_get_next_link (directories, link);
870     }
871
872   return TRUE;
873  failed:
874   return FALSE;
875 }
876
877 BusActivation*
878 bus_activation_new (BusContext        *context,
879                     const DBusString  *address,
880                     DBusList         **directories,
881                     DBusError         *error)
882 {
883   BusActivation *activation;
884   DBusList      *link;
885   char          *dir;
886
887   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
888
889   activation = dbus_new0 (BusActivation, 1);
890   if (activation == NULL)
891     {
892       BUS_SET_OOM (error);
893       return NULL;
894     }
895
896   activation->refcount = 1;
897   activation->context = context;
898   activation->n_pending_activations = 0;
899
900   if (!bus_activation_reload (activation, address, directories, error))
901     goto failed;
902
903    /* Initialize this hash table once, we don't want to lose pending
904    * activations on reload. */
905   activation->pending_activations = _dbus_hash_table_new (DBUS_HASH_STRING, NULL,
906                                                           (DBusFreeFunction)bus_pending_activation_unref);
907
908   if (activation->pending_activations == NULL)
909     {
910       BUS_SET_OOM (error);
911       goto failed;
912     }
913
914   activation->environment = _dbus_hash_table_new (DBUS_HASH_STRING,
915                                                   (DBusFreeFunction) dbus_free,
916                                                   (DBusFreeFunction) dbus_free);
917
918   if (activation->environment == NULL)
919     {
920       BUS_SET_OOM (error);
921       goto failed;
922     }
923
924   if (!populate_environment (activation))
925     {
926       BUS_SET_OOM (error);
927       goto failed;
928     }
929
930   return activation;
931
932  failed:
933   bus_activation_unref (activation);
934   return NULL;
935 }
936
937 BusActivation *
938 bus_activation_ref (BusActivation *activation)
939 {
940   _dbus_assert (activation->refcount > 0);
941
942   activation->refcount += 1;
943
944   return activation;
945 }
946
947 void
948 bus_activation_unref (BusActivation *activation)
949 {
950   _dbus_assert (activation->refcount > 0);
951
952   activation->refcount -= 1;
953
954   if (activation->refcount > 0)
955     return;
956
957   dbus_free (activation->server_address);
958   if (activation->entries)
959     _dbus_hash_table_unref (activation->entries);
960   if (activation->pending_activations)
961     _dbus_hash_table_unref (activation->pending_activations);
962   if (activation->directories)
963     _dbus_hash_table_unref (activation->directories);
964   if (activation->environment)
965     _dbus_hash_table_unref (activation->environment);
966
967   dbus_free (activation);
968 }
969
970 static dbus_bool_t
971 add_bus_environment (BusActivation *activation,
972                      DBusError     *error)
973 {
974   const char *type;
975
976   if (!bus_activation_set_environment_variable (activation,
977                                                 "DBUS_STARTER_ADDRESS",
978                                                 activation->server_address,
979                                                 error))
980     return FALSE;
981
982   type = bus_context_get_type (activation->context);
983   if (type != NULL)
984     {
985       if (!bus_activation_set_environment_variable (activation,
986                                                     "DBUS_STARTER_BUS_TYPE", type,
987                                                     error))
988         return FALSE;
989
990       if (strcmp (type, "session") == 0)
991         {
992           if (!bus_activation_set_environment_variable (activation,
993                                                         "DBUS_SESSION_BUS_ADDRESS",
994                                                         activation->server_address,
995                                                         error))
996             return FALSE;
997         }
998       else if (strcmp (type, "system") == 0)
999         {
1000           if (!bus_activation_set_environment_variable (activation,
1001                                                         "DBUS_SYSTEM_BUS_ADDRESS",
1002                                                         activation->server_address,
1003                                                         error))
1004             return FALSE;
1005         }
1006     }
1007
1008   return TRUE;
1009 }
1010
1011 typedef struct
1012 {
1013   BusPendingActivation *pending_activation;
1014   DBusPreallocatedHash *hash_entry;
1015 } RestorePendingData;
1016
1017 static void
1018 restore_pending (void *data)
1019 {
1020   RestorePendingData *d = data;
1021
1022   _dbus_assert (d->pending_activation != NULL);
1023   _dbus_assert (d->hash_entry != NULL);
1024
1025   _dbus_verbose ("Restoring pending activation for service %s, has timeout = %d\n",
1026                  d->pending_activation->service_name,
1027                  d->pending_activation->timeout_added);
1028
1029   _dbus_hash_table_insert_string_preallocated (d->pending_activation->activation->pending_activations,
1030                                                d->hash_entry,
1031                                                d->pending_activation->service_name, d->pending_activation);
1032
1033   bus_pending_activation_ref (d->pending_activation);
1034
1035   d->hash_entry = NULL;
1036 }
1037
1038 static void
1039 free_pending_restore_data (void *data)
1040 {
1041   RestorePendingData *d = data;
1042
1043   if (d->hash_entry)
1044     _dbus_hash_table_free_preallocated_entry (d->pending_activation->activation->pending_activations,
1045                                               d->hash_entry);
1046
1047   bus_pending_activation_unref (d->pending_activation);
1048
1049   dbus_free (d);
1050 }
1051
1052 static dbus_bool_t
1053 add_restore_pending_to_transaction (BusTransaction       *transaction,
1054                                     BusPendingActivation *pending_activation)
1055 {
1056   RestorePendingData *d;
1057
1058   d = dbus_new (RestorePendingData, 1);
1059   if (d == NULL)
1060     return FALSE;
1061
1062   d->pending_activation = pending_activation;
1063   d->hash_entry = _dbus_hash_table_preallocate_entry (d->pending_activation->activation->pending_activations);
1064
1065   bus_pending_activation_ref (d->pending_activation);
1066
1067   if (d->hash_entry == NULL ||
1068       !bus_transaction_add_cancel_hook (transaction, restore_pending, d,
1069                                         free_pending_restore_data))
1070     {
1071       free_pending_restore_data (d);
1072       return FALSE;
1073     }
1074
1075   _dbus_verbose ("Saved pending activation to be restored if the transaction fails\n");
1076
1077   return TRUE;
1078 }
1079
1080 dbus_bool_t
1081 bus_activation_service_created (BusActivation  *activation,
1082                                 const char     *service_name,
1083                                 BusTransaction *transaction,
1084                                 DBusError      *error)
1085 {
1086   BusPendingActivation *pending_activation;
1087   DBusMessage *message;
1088   DBusList *link;
1089
1090   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1091
1092   /* Check if it's a pending activation */
1093   pending_activation = _dbus_hash_table_lookup_string (activation->pending_activations, service_name);
1094
1095   if (!pending_activation)
1096     return TRUE;
1097
1098   bus_context_log (activation->context,
1099                    DBUS_SYSTEM_LOG_INFO, "Successfully activated service '%s'",
1100                    service_name);
1101
1102   link = _dbus_list_get_first_link (&pending_activation->entries);
1103   while (link != NULL)
1104     {
1105       BusPendingActivationEntry *entry = link->data;
1106       DBusList *next = _dbus_list_get_next_link (&pending_activation->entries, link);
1107
1108       if (dbus_connection_get_is_connected (entry->connection))
1109         {
1110           /* Only send activation replies to regular activation requests. */
1111           if (!entry->auto_activation)
1112             {
1113               dbus_uint32_t result;
1114
1115               message = dbus_message_new_method_return (entry->activation_message);
1116               if (!message)
1117                 {
1118                   BUS_SET_OOM (error);
1119                   goto error;
1120                 }
1121
1122               result = DBUS_START_REPLY_SUCCESS;
1123
1124               if (!dbus_message_append_args (message,
1125                                              DBUS_TYPE_UINT32, &result,
1126                                              DBUS_TYPE_INVALID))
1127                 {
1128                   dbus_message_unref (message);
1129                   BUS_SET_OOM (error);
1130                   goto error;
1131                 }
1132
1133               if (!bus_transaction_send_from_driver (transaction, entry->connection, message))
1134                 {
1135                   dbus_message_unref (message);
1136                   BUS_SET_OOM (error);
1137                   goto error;
1138                 }
1139
1140               dbus_message_unref (message);
1141             }
1142         }
1143
1144       link = next;
1145     }
1146
1147   return TRUE;
1148
1149  error:
1150   return FALSE;
1151 }
1152
1153 dbus_bool_t
1154 bus_activation_send_pending_auto_activation_messages (BusActivation  *activation,
1155                                                       BusService     *service,
1156                                                       BusTransaction *transaction,
1157                                                       DBusError      *error)
1158 {
1159   BusPendingActivation *pending_activation;
1160   DBusList *link;
1161
1162   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1163
1164   /* Check if it's a pending activation */
1165   pending_activation = _dbus_hash_table_lookup_string (activation->pending_activations,
1166                                                        bus_service_get_name (service));
1167
1168   if (!pending_activation)
1169     return TRUE;
1170
1171   link = _dbus_list_get_first_link (&pending_activation->entries);
1172   while (link != NULL)
1173     {
1174       BusPendingActivationEntry *entry = link->data;
1175       DBusList *next = _dbus_list_get_next_link (&pending_activation->entries, link);
1176
1177       if (entry->auto_activation && dbus_connection_get_is_connected (entry->connection))
1178         {
1179           DBusConnection *addressed_recipient;
1180
1181           addressed_recipient = bus_service_get_primary_owners_connection (service);
1182
1183           /* Resume dispatching where we left off in bus_dispatch() */
1184           if (!bus_dispatch_matches (transaction,
1185                                      entry->connection,
1186                                      addressed_recipient,
1187                                      entry->activation_message, error))
1188             goto error;
1189         }
1190
1191       link = next;
1192     }
1193
1194   if (!add_restore_pending_to_transaction (transaction, pending_activation))
1195     {
1196       _dbus_verbose ("Could not add cancel hook to transaction to revert removing pending activation\n");
1197       BUS_SET_OOM (error);
1198       goto error;
1199     }
1200
1201   _dbus_hash_table_remove_string (activation->pending_activations, bus_service_get_name (service));
1202
1203   return TRUE;
1204
1205  error:
1206   return FALSE;
1207 }
1208
1209 /**
1210  * FIXME @todo the error messages here would ideally be preallocated
1211  * so we don't need to allocate memory to send them.
1212  * Using the usual tactic, prealloc an OOM message, then
1213  * if we can't alloc the real error send the OOM error instead.
1214  */
1215 static dbus_bool_t
1216 try_send_activation_failure (BusPendingActivation *pending_activation,
1217                              const DBusError      *how)
1218 {
1219   BusActivation *activation;
1220   DBusList *link;
1221   BusTransaction *transaction;
1222
1223   activation = pending_activation->activation;
1224
1225   transaction = bus_transaction_new (activation->context);
1226   if (transaction == NULL)
1227     return FALSE;
1228
1229   link = _dbus_list_get_first_link (&pending_activation->entries);
1230   while (link != NULL)
1231     {
1232       BusPendingActivationEntry *entry = link->data;
1233       DBusList *next = _dbus_list_get_next_link (&pending_activation->entries, link);
1234
1235       if (dbus_connection_get_is_connected (entry->connection))
1236         {
1237           if (!bus_transaction_send_error_reply (transaction,
1238                                                  entry->connection,
1239                                                  how,
1240                                                  entry->activation_message))
1241             goto error;
1242         }
1243
1244       link = next;
1245     }
1246
1247   bus_transaction_execute_and_free (transaction);
1248
1249   return TRUE;
1250
1251  error:
1252   if (transaction)
1253     bus_transaction_cancel_and_free (transaction);
1254   return FALSE;
1255 }
1256
1257 /**
1258  * Free the pending activation and send an error message to all the
1259  * connections that were waiting for it.
1260  */
1261 static void
1262 pending_activation_failed (BusPendingActivation *pending_activation,
1263                            const DBusError      *how)
1264 {
1265   /* FIXME use preallocated OOM messages instead of bus_wait_for_memory() */
1266   while (!try_send_activation_failure (pending_activation, how))
1267     _dbus_wait_for_memory ();
1268
1269   /* Destroy this pending activation */
1270   _dbus_hash_table_remove_string (pending_activation->activation->pending_activations,
1271                                   pending_activation->service_name);
1272 }
1273
1274 /**
1275  * Depending on the exit code of the helper, set the error accordingly
1276  */
1277 static void
1278 handle_servicehelper_exit_error (int        exit_code,
1279                                  DBusError *error)
1280 {
1281   switch (exit_code)
1282     {
1283     case BUS_SPAWN_EXIT_CODE_NO_MEMORY:
1284       dbus_set_error (error, DBUS_ERROR_NO_MEMORY,
1285                       "Launcher could not run (out of memory)");
1286       break;
1287     case BUS_SPAWN_EXIT_CODE_SETUP_FAILED:
1288       dbus_set_error (error, DBUS_ERROR_SPAWN_SETUP_FAILED,
1289                       "Failed to setup environment correctly");
1290       break;
1291     case BUS_SPAWN_EXIT_CODE_NAME_INVALID:
1292       dbus_set_error (error, DBUS_ERROR_SPAWN_SERVICE_INVALID,
1293                       "Bus name is not valid or missing");
1294       break;
1295     case BUS_SPAWN_EXIT_CODE_SERVICE_NOT_FOUND:
1296       dbus_set_error (error, DBUS_ERROR_SPAWN_SERVICE_NOT_FOUND,
1297                       "Bus name not found in system service directory");
1298       break;
1299     case BUS_SPAWN_EXIT_CODE_PERMISSIONS_INVALID:
1300       dbus_set_error (error, DBUS_ERROR_SPAWN_PERMISSIONS_INVALID,
1301                       "The permission of the setuid helper is not correct");
1302       break;
1303     case BUS_SPAWN_EXIT_CODE_FILE_INVALID:
1304       dbus_set_error (error, DBUS_ERROR_SPAWN_PERMISSIONS_INVALID,
1305                       "The service file is incorrect or does not have all required attributes");
1306       break;
1307     case BUS_SPAWN_EXIT_CODE_EXEC_FAILED:
1308       dbus_set_error (error, DBUS_ERROR_SPAWN_EXEC_FAILED,
1309                       "Cannot launch daemon, file not found or permissions invalid");
1310       break;
1311     case BUS_SPAWN_EXIT_CODE_INVALID_ARGS:
1312       dbus_set_error (error, DBUS_ERROR_INVALID_ARGS,
1313                       "Invalid arguments to command line");
1314       break;
1315     case BUS_SPAWN_EXIT_CODE_CHILD_SIGNALED:
1316       dbus_set_error (error, DBUS_ERROR_SPAWN_CHILD_SIGNALED,
1317                       "Launched child was signaled, it probably crashed");
1318       break;
1319     default:
1320       dbus_set_error (error, DBUS_ERROR_SPAWN_CHILD_EXITED,
1321                       "Launch helper exited with unknown return code %i", exit_code);
1322       break;
1323     }
1324 }
1325
1326 static void
1327 pending_activation_finished_cb (DBusBabysitter *babysitter,
1328                                 void           *data)
1329 {
1330   BusPendingActivation *pending_activation = data;
1331   dbus_bool_t uses_servicehelper;
1332
1333   _dbus_assert (babysitter == pending_activation->babysitter);
1334   _dbus_babysitter_ref (babysitter);
1335
1336   /* There are two major cases here; are we the system bus or the session?  Here this
1337    * is distinguished by whether or not we use a setuid helper launcher.  With the launch helper,
1338    * some process exit codes are meaningful, processed by handle_servicehelper_exit_error.
1339    *
1340    * In both cases though, just ignore when a process exits with status 0; it's possible for
1341    * a program to (misguidedly) "daemonize", and that appears to us as an exit.  This closes a race
1342    * condition between this code and the child process claiming the bus name.
1343    */
1344   uses_servicehelper = bus_context_get_servicehelper (pending_activation->activation->context) != NULL;
1345
1346   /* strictly speaking this is redundant with the check in dbus-spawn now */
1347   if (_dbus_babysitter_get_child_exited (babysitter))
1348     {
1349       DBusError error;
1350       DBusHashIter iter;
1351       dbus_bool_t activation_failed;
1352       int exit_code = 0;
1353
1354       dbus_error_init (&error);
1355
1356       _dbus_babysitter_set_child_exit_error (babysitter, &error);
1357
1358       /* Explicitly check for SPAWN_CHILD_EXITED to avoid overwriting an
1359        * exec error */
1360       if (dbus_error_has_name (&error, DBUS_ERROR_SPAWN_CHILD_EXITED)
1361           && _dbus_babysitter_get_child_exit_status (babysitter, &exit_code))
1362         {
1363           activation_failed = exit_code != 0;
1364
1365           dbus_error_free(&error);
1366
1367           if (activation_failed)
1368             {
1369               if (uses_servicehelper)
1370                 handle_servicehelper_exit_error (exit_code, &error);
1371               else
1372                 _dbus_babysitter_set_child_exit_error (babysitter, &error);
1373             }
1374         }
1375       else
1376         {
1377           activation_failed = TRUE;
1378         }
1379
1380       if (activation_failed)
1381         {
1382           bus_context_log (pending_activation->activation->context,
1383                            DBUS_SYSTEM_LOG_INFO, "Activated service '%s' failed: %s",
1384                            pending_activation->service_name,
1385                            error.message);
1386
1387           /* Destroy all pending activations with the same exec */
1388           _dbus_hash_iter_init (pending_activation->activation->pending_activations,
1389                                 &iter);
1390           while (_dbus_hash_iter_next (&iter))
1391             {
1392               BusPendingActivation *p = _dbus_hash_iter_get_value (&iter);
1393
1394               if (p != pending_activation && strcmp (p->exec, pending_activation->exec) == 0)
1395                 pending_activation_failed (p, &error);
1396             }
1397
1398           /* Destroys the pending activation */
1399           pending_activation_failed (pending_activation, &error);
1400
1401           dbus_error_free (&error);
1402         }
1403     }
1404
1405   _dbus_babysitter_unref (babysitter);
1406 }
1407
1408 static dbus_bool_t
1409 add_babysitter_watch (DBusWatch      *watch,
1410                       void           *data)
1411 {
1412   BusPendingActivation *pending_activation = data;
1413
1414   return _dbus_loop_add_watch (
1415       bus_context_get_loop (pending_activation->activation->context),
1416       watch);
1417 }
1418
1419 static void
1420 remove_babysitter_watch (DBusWatch      *watch,
1421                          void           *data)
1422 {
1423   BusPendingActivation *pending_activation = data;
1424
1425   _dbus_loop_remove_watch (bus_context_get_loop (pending_activation->activation->context),
1426                            watch);
1427 }
1428
1429 static dbus_bool_t
1430 pending_activation_timed_out (void *data)
1431 {
1432   BusPendingActivation *pending_activation = data;
1433   DBusError error;
1434
1435   /* Kill the spawned process, since it sucks
1436    * (not sure this is what we want to do, but
1437    * may as well try it for now)
1438    */
1439   if (pending_activation->babysitter)
1440     _dbus_babysitter_kill_child (pending_activation->babysitter);
1441
1442   dbus_error_init (&error);
1443
1444   dbus_set_error (&error, DBUS_ERROR_TIMED_OUT,
1445                   "Activation of %s timed out",
1446                   pending_activation->service_name);
1447   bus_context_log (pending_activation->activation->context,
1448                    DBUS_SYSTEM_LOG_INFO,
1449                    "Failed to activate service '%s': timed out",
1450                    pending_activation->service_name);
1451
1452   pending_activation_failed (pending_activation, &error);
1453
1454   dbus_error_free (&error);
1455
1456   return TRUE;
1457 }
1458
1459 static void
1460 cancel_pending (void *data)
1461 {
1462   BusPendingActivation *pending_activation = data;
1463
1464   _dbus_verbose ("Canceling pending activation of %s\n",
1465                  pending_activation->service_name);
1466
1467   if (pending_activation->babysitter)
1468     _dbus_babysitter_kill_child (pending_activation->babysitter);
1469
1470   _dbus_hash_table_remove_string (pending_activation->activation->pending_activations,
1471                                   pending_activation->service_name);
1472 }
1473
1474 static void
1475 free_pending_cancel_data (void *data)
1476 {
1477   BusPendingActivation *pending_activation = data;
1478
1479   bus_pending_activation_unref (pending_activation);
1480 }
1481
1482 static dbus_bool_t
1483 add_cancel_pending_to_transaction (BusTransaction       *transaction,
1484                                    BusPendingActivation *pending_activation)
1485 {
1486   if (!bus_transaction_add_cancel_hook (transaction, cancel_pending,
1487                                         pending_activation,
1488                                         free_pending_cancel_data))
1489     return FALSE;
1490
1491   bus_pending_activation_ref (pending_activation);
1492
1493   _dbus_verbose ("Saved pending activation to be canceled if the transaction fails\n");
1494
1495   return TRUE;
1496 }
1497
1498 static dbus_bool_t
1499 update_service_cache (BusActivation *activation, DBusError *error)
1500 {
1501   DBusHashIter iter;
1502
1503   _dbus_hash_iter_init (activation->directories, &iter);
1504   while (_dbus_hash_iter_next (&iter))
1505     {
1506       DBusError tmp_error;
1507       BusServiceDirectory *s_dir;
1508
1509       s_dir = _dbus_hash_iter_get_value (&iter);
1510
1511       dbus_error_init (&tmp_error);
1512       if (!update_directory (activation, s_dir, &tmp_error))
1513         {
1514           if (dbus_error_has_name (&tmp_error, DBUS_ERROR_NO_MEMORY))
1515             {
1516               dbus_move_error (&tmp_error, error);
1517               return FALSE;
1518             }
1519
1520           dbus_error_free (&tmp_error);
1521           continue;
1522         }
1523     }
1524
1525   return TRUE;
1526 }
1527
1528 static BusActivationEntry *
1529 activation_find_entry (BusActivation *activation,
1530                        const char    *service_name,
1531                        DBusError     *error)
1532 {
1533   BusActivationEntry *entry;
1534
1535   entry = _dbus_hash_table_lookup_string (activation->entries, service_name);
1536   if (!entry)
1537     {
1538       if (!update_service_cache (activation, error))
1539         return NULL;
1540
1541       entry = _dbus_hash_table_lookup_string (activation->entries,
1542                                               service_name);
1543     }
1544   else
1545     {
1546       BusActivationEntry *updated_entry;
1547
1548       if (!check_service_file (activation, entry, &updated_entry, error))
1549         return NULL;
1550
1551       entry = updated_entry;
1552     }
1553
1554   if (!entry)
1555     {
1556       dbus_set_error (error, DBUS_ERROR_SERVICE_UNKNOWN,
1557                       "The name %s was not provided by any .service files",
1558                       service_name);
1559       return NULL;
1560     }
1561
1562   return entry;
1563 }
1564
1565 static char **
1566 bus_activation_get_environment (BusActivation *activation)
1567 {
1568   char **environment;
1569   int i, length;
1570   DBusString entry;
1571   DBusHashIter iter;
1572
1573   length = _dbus_hash_table_get_n_entries (activation->environment);
1574
1575   environment = dbus_new0 (char *, length + 1);
1576
1577   if (environment == NULL)
1578     return NULL;
1579
1580   i = 0;
1581   _dbus_hash_iter_init (activation->environment, &iter);
1582
1583   if (!_dbus_string_init (&entry))
1584     {
1585       dbus_free_string_array (environment);
1586       return NULL;
1587     }
1588
1589   while (_dbus_hash_iter_next (&iter))
1590     {
1591       const char *key, *value;
1592
1593       key = (const char *) _dbus_hash_iter_get_string_key (&iter);
1594       value = (const char *) _dbus_hash_iter_get_value (&iter);
1595
1596       if (!_dbus_string_append_printf (&entry, "%s=%s", key, value))
1597         break;
1598
1599       if (!_dbus_string_steal_data (&entry, environment + i))
1600         break;
1601       i++;
1602     }
1603
1604   _dbus_string_free (&entry);
1605
1606   if (i != length)
1607     {
1608       dbus_free_string_array (environment);
1609       environment = NULL;
1610     }
1611
1612   return environment;
1613 }
1614
1615 dbus_bool_t
1616 bus_activation_set_environment_variable (BusActivation     *activation,
1617                                          const char        *key,
1618                                          const char        *value,
1619                                          DBusError         *error)
1620 {
1621   char        *hash_key;
1622   char        *hash_value;
1623   dbus_bool_t  retval;
1624
1625   retval = FALSE;
1626   hash_key = NULL;
1627   hash_value = NULL;
1628   hash_key = _dbus_strdup (key);
1629
1630   if (hash_key == NULL)
1631     goto out;
1632
1633   hash_value = _dbus_strdup (value);
1634
1635   if (hash_value == NULL)
1636     goto out;
1637
1638   if (!_dbus_hash_table_insert_string (activation->environment,
1639                                        hash_key, hash_value))
1640     goto out;
1641
1642   retval = TRUE;
1643 out:
1644   if (retval == FALSE)
1645     {
1646       dbus_free (hash_key);
1647       dbus_free (hash_value);
1648       BUS_SET_OOM (error);
1649     }
1650
1651   return retval;
1652 }
1653
1654 dbus_bool_t
1655 bus_activation_activate_service (BusActivation  *activation,
1656                                  DBusConnection *connection,
1657                                  BusTransaction *transaction,
1658                                  dbus_bool_t     auto_activation,
1659                                  DBusMessage    *activation_message,
1660                                  const char     *service_name,
1661                                  DBusError      *error)
1662 {
1663   DBusError tmp_error;
1664   BusActivationEntry *entry;
1665   BusPendingActivation *pending_activation;
1666   BusPendingActivationEntry *pending_activation_entry;
1667   DBusMessage *message;
1668   DBusString service_str;
1669   const char *servicehelper;
1670   char **argv;
1671   char **envp = NULL;
1672   int argc;
1673   dbus_bool_t retval;
1674   DBusHashIter iter;
1675   dbus_bool_t was_pending_activation;
1676   DBusString command;
1677
1678   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1679
1680   if (activation->n_pending_activations >=
1681       bus_context_get_max_pending_activations (activation->context))
1682     {
1683       dbus_set_error (error, DBUS_ERROR_LIMITS_EXCEEDED,
1684                       "The maximum number of pending activations has been reached, activation of %s failed",
1685                       service_name);
1686       return FALSE;
1687     }
1688
1689   entry = activation_find_entry (activation, service_name, error);
1690   if (!entry)
1691     return FALSE;
1692
1693   /* Bypass the registry lookup if we're auto-activating, bus_dispatch would not
1694    * call us if the service is already active.
1695    */
1696   if (!auto_activation)
1697     {
1698       /* Check if the service is active */
1699       _dbus_string_init_const (&service_str, service_name);
1700       if (bus_registry_lookup (bus_context_get_registry (activation->context), &service_str) != NULL)
1701         {
1702           dbus_uint32_t result;
1703
1704           _dbus_verbose ("Service \"%s\" is already active\n", service_name);
1705
1706           message = dbus_message_new_method_return (activation_message);
1707
1708           if (!message)
1709             {
1710               _dbus_verbose ("No memory to create reply to activate message\n");
1711               BUS_SET_OOM (error);
1712               return FALSE;
1713             }
1714
1715           result = DBUS_START_REPLY_ALREADY_RUNNING;
1716
1717           if (!dbus_message_append_args (message,
1718                                          DBUS_TYPE_UINT32, &result,
1719                                          DBUS_TYPE_INVALID))
1720             {
1721               _dbus_verbose ("No memory to set args of reply to activate message\n");
1722               BUS_SET_OOM (error);
1723               dbus_message_unref (message);
1724               return FALSE;
1725             }
1726
1727           retval = bus_transaction_send_from_driver (transaction, connection, message);
1728           dbus_message_unref (message);
1729           if (!retval)
1730             {
1731               _dbus_verbose ("Failed to send reply\n");
1732               BUS_SET_OOM (error);
1733             }
1734
1735           return retval;
1736         }
1737     }
1738
1739   pending_activation_entry = dbus_new0 (BusPendingActivationEntry, 1);
1740   if (!pending_activation_entry)
1741     {
1742       _dbus_verbose ("Failed to create pending activation entry\n");
1743       BUS_SET_OOM (error);
1744       return FALSE;
1745     }
1746
1747   pending_activation_entry->auto_activation = auto_activation;
1748
1749   pending_activation_entry->activation_message = activation_message;
1750   dbus_message_ref (activation_message);
1751   pending_activation_entry->connection = connection;
1752   dbus_connection_ref (connection);
1753
1754   /* Check if the service is being activated */
1755   pending_activation = _dbus_hash_table_lookup_string (activation->pending_activations, service_name);
1756   was_pending_activation = (pending_activation != NULL);
1757   if (was_pending_activation)
1758     {
1759       if (!_dbus_list_append (&pending_activation->entries, pending_activation_entry))
1760         {
1761           _dbus_verbose ("Failed to append a new entry to pending activation\n");
1762
1763           BUS_SET_OOM (error);
1764           bus_pending_activation_entry_free (pending_activation_entry);
1765           return FALSE;
1766         }
1767
1768       pending_activation->n_entries += 1;
1769       pending_activation->activation->n_pending_activations += 1;
1770     }
1771   else
1772     {
1773       pending_activation = dbus_new0 (BusPendingActivation, 1);
1774       if (!pending_activation)
1775         {
1776           _dbus_verbose ("Failed to create pending activation\n");
1777
1778           BUS_SET_OOM (error);
1779           bus_pending_activation_entry_free (pending_activation_entry);
1780           return FALSE;
1781         }
1782
1783       pending_activation->activation = activation;
1784       pending_activation->refcount = 1;
1785
1786       pending_activation->service_name = _dbus_strdup (service_name);
1787       if (!pending_activation->service_name)
1788         {
1789           _dbus_verbose ("Failed to copy service name for pending activation\n");
1790
1791           BUS_SET_OOM (error);
1792           bus_pending_activation_unref (pending_activation);
1793           bus_pending_activation_entry_free (pending_activation_entry);
1794           return FALSE;
1795         }
1796
1797       pending_activation->exec = _dbus_strdup (entry->exec);
1798       if (!pending_activation->exec)
1799         {
1800           _dbus_verbose ("Failed to copy service exec for pending activation\n");
1801           BUS_SET_OOM (error);
1802           bus_pending_activation_unref (pending_activation);
1803           bus_pending_activation_entry_free (pending_activation_entry);
1804           return FALSE;
1805         }
1806
1807       if (entry->systemd_service)
1808         {
1809           pending_activation->systemd_service = _dbus_strdup (entry->systemd_service);
1810           if (!pending_activation->systemd_service)
1811             {
1812               _dbus_verbose ("Failed to copy systemd service for pending activation\n");
1813               BUS_SET_OOM (error);
1814               bus_pending_activation_unref (pending_activation);
1815               bus_pending_activation_entry_free (pending_activation_entry);
1816               return FALSE;
1817             }
1818         }
1819
1820       pending_activation->timeout =
1821         _dbus_timeout_new (bus_context_get_activation_timeout (activation->context),
1822                            pending_activation_timed_out,
1823                            pending_activation,
1824                            NULL);
1825       if (!pending_activation->timeout)
1826         {
1827           _dbus_verbose ("Failed to create timeout for pending activation\n");
1828
1829           BUS_SET_OOM (error);
1830           bus_pending_activation_unref (pending_activation);
1831           bus_pending_activation_entry_free (pending_activation_entry);
1832           return FALSE;
1833         }
1834
1835       if (!_dbus_loop_add_timeout (bus_context_get_loop (activation->context),
1836                                    pending_activation->timeout))
1837         {
1838           _dbus_verbose ("Failed to add timeout for pending activation\n");
1839
1840           BUS_SET_OOM (error);
1841           bus_pending_activation_unref (pending_activation);
1842           bus_pending_activation_entry_free (pending_activation_entry);
1843           return FALSE;
1844         }
1845
1846       pending_activation->timeout_added = TRUE;
1847
1848       if (!_dbus_list_append (&pending_activation->entries, pending_activation_entry))
1849         {
1850           _dbus_verbose ("Failed to add entry to just-created pending activation\n");
1851
1852           BUS_SET_OOM (error);
1853           bus_pending_activation_unref (pending_activation);
1854           bus_pending_activation_entry_free (pending_activation_entry);
1855           return FALSE;
1856         }
1857
1858       pending_activation->n_entries += 1;
1859       pending_activation->activation->n_pending_activations += 1;
1860
1861       if (!_dbus_hash_table_insert_string (activation->pending_activations,
1862                                            pending_activation->service_name,
1863                                            pending_activation))
1864         {
1865           _dbus_verbose ("Failed to put pending activation in hash table\n");
1866
1867           BUS_SET_OOM (error);
1868           bus_pending_activation_unref (pending_activation);
1869           return FALSE;
1870         }
1871     }
1872
1873   if (!add_cancel_pending_to_transaction (transaction, pending_activation))
1874     {
1875       _dbus_verbose ("Failed to add pending activation cancel hook to transaction\n");
1876       BUS_SET_OOM (error);
1877       _dbus_hash_table_remove_string (activation->pending_activations,
1878                                       pending_activation->service_name);
1879
1880       return FALSE;
1881     }
1882
1883   if (was_pending_activation)
1884     return TRUE;
1885
1886   if (bus_context_get_systemd_activation (activation->context))
1887     {
1888       if (strcmp (service_name, "org.freedesktop.systemd1") == 0)
1889           /* systemd itself is missing apparently. That can happen
1890              only during early startup. Let's just wait until systemd
1891              connects to us and do nothing. */
1892         return TRUE;
1893
1894       if (entry->systemd_service)
1895         {
1896           BusTransaction *activation_transaction;
1897           DBusString service_string;
1898           BusService *service;
1899           BusRegistry *registry;
1900
1901           /* OK, we have a systemd service configured for this entry,
1902              hence let's enqueue an activation request message. This
1903              is implemented as a directed signal, not a method call,
1904              for three reasons: 1) we don't expect a response on
1905              success, where we just expect a name appearing on the
1906              bus; 2) at this time the systemd service might not yet
1907              have connected, so we wouldn't know the message serial at
1908              this point to set up a pending call; 3) it is ugly if the
1909              bus suddenly becomes the caller of a remote method. */
1910
1911           message = dbus_message_new_signal (DBUS_PATH_DBUS,
1912                                              "org.freedesktop.systemd1.Activator",
1913                                              "ActivationRequest");
1914           if (!message)
1915             {
1916               _dbus_verbose ("No memory to create activation message\n");
1917               BUS_SET_OOM (error);
1918               return FALSE;
1919             }
1920
1921           if (!dbus_message_set_sender (message, DBUS_SERVICE_DBUS) ||
1922               !dbus_message_set_destination (message, "org.freedesktop.systemd1") ||
1923               !dbus_message_append_args (message,
1924                                          DBUS_TYPE_STRING, &entry->systemd_service,
1925                                          DBUS_TYPE_INVALID))
1926             {
1927               _dbus_verbose ("No memory to set args of activation message\n");
1928               dbus_message_unref (message);
1929               BUS_SET_OOM (error);
1930               return FALSE;
1931             }
1932
1933           /* Create our transaction */
1934           activation_transaction = bus_transaction_new (activation->context);
1935           if (activation_transaction == NULL)
1936             {
1937               _dbus_verbose ("No memory to create activation transaction\n");
1938               dbus_message_unref (message);
1939               BUS_SET_OOM (error);
1940               return FALSE;
1941             }
1942
1943           /* Check whether systemd is already connected */
1944           registry = bus_connection_get_registry (connection);
1945           _dbus_string_init_const (&service_string, "org.freedesktop.systemd1");
1946           service = bus_registry_lookup (registry, &service_string);
1947
1948           if (service != NULL)
1949             {
1950               bus_context_log (activation->context,
1951                                DBUS_SYSTEM_LOG_INFO, "Activating via systemd: service name='%s' unit='%s'",
1952                                service_name,
1953                                entry->systemd_service);
1954               /* Wonderful, systemd is connected, let's just send the msg */
1955               retval = bus_dispatch_matches (activation_transaction, NULL, bus_service_get_primary_owners_connection (service),
1956                                              message, error);
1957             }
1958           else
1959             {
1960               bus_context_log (activation->context,
1961                                DBUS_SYSTEM_LOG_INFO, "Activating systemd to hand-off: service name='%s' unit='%s'",
1962                                service_name,
1963                                entry->systemd_service);
1964               /* systemd is not around, let's "activate" it. */
1965               retval = bus_activation_activate_service (activation, connection, activation_transaction, TRUE,
1966                                                         message, "org.freedesktop.systemd1", error);
1967             }
1968
1969           dbus_message_unref (message);
1970
1971           if (!retval)
1972             {
1973               bus_context_log (activation->context,
1974                                DBUS_SYSTEM_LOG_INFO, "Failed to activate via systemd: service name='%s' unit='%s'",
1975                                service_name,
1976                                entry->systemd_service);
1977               _DBUS_ASSERT_ERROR_IS_SET (error);
1978               _dbus_verbose ("failed to send activation message: %s\n", error->name);
1979               bus_transaction_cancel_and_free (activation_transaction);
1980               return FALSE;
1981             }
1982
1983           bus_transaction_execute_and_free (activation_transaction);
1984           return TRUE;
1985         }
1986
1987       /* OK, we have no configured systemd service, hence let's
1988          proceed with traditional activation. */
1989     }
1990
1991   /* use command as system and session different */
1992   if (!_dbus_string_init (&command))
1993     {
1994       BUS_SET_OOM (error);
1995       return FALSE;
1996     }
1997
1998   /* does the bus use a helper? */
1999   servicehelper = bus_context_get_servicehelper (activation->context);
2000   if (servicehelper != NULL)
2001     {
2002       if (entry->user == NULL)
2003         {
2004           _dbus_string_free (&command);
2005           dbus_set_error (error, DBUS_ERROR_SPAWN_FILE_INVALID,
2006                           "Cannot do system-bus activation with no user\n");
2007           return FALSE;
2008         }
2009
2010       /* join the helper path and the service name */
2011       if (!_dbus_string_append (&command, servicehelper))
2012         {
2013           _dbus_string_free (&command);
2014           BUS_SET_OOM (error);
2015           return FALSE;
2016         }
2017       if (!_dbus_string_append (&command, " "))
2018         {
2019           _dbus_string_free (&command);
2020           BUS_SET_OOM (error);
2021           return FALSE;
2022         }
2023       if (!_dbus_string_append (&command, service_name))
2024         {
2025           _dbus_string_free (&command);
2026           BUS_SET_OOM (error);
2027           return FALSE;
2028         }
2029     }
2030   else
2031     {
2032       /* the bus does not use a helper, so we can append arguments with the exec line */
2033       if (!_dbus_string_append (&command, entry->exec))
2034         {
2035           _dbus_string_free (&command);
2036           BUS_SET_OOM (error);
2037           return FALSE;
2038         }
2039     }
2040
2041   /* convert command into arguments */
2042   if (!_dbus_shell_parse_argv (_dbus_string_get_const_data (&command), &argc, &argv, error))
2043     {
2044       _dbus_verbose ("Failed to parse command line: %s\n", entry->exec);
2045       _DBUS_ASSERT_ERROR_IS_SET (error);
2046
2047       _dbus_hash_table_remove_string (activation->pending_activations,
2048                                       pending_activation->service_name);
2049
2050       _dbus_string_free (&command);
2051       return FALSE;
2052     }
2053   _dbus_string_free (&command);
2054
2055   if (!add_bus_environment (activation, error))
2056     {
2057       _DBUS_ASSERT_ERROR_IS_SET (error);
2058       dbus_free_string_array (argv);
2059       return FALSE;
2060     }
2061
2062   envp = bus_activation_get_environment (activation);
2063
2064   if (envp == NULL)
2065     {
2066       BUS_SET_OOM (error);
2067       dbus_free_string_array (argv);
2068       return FALSE;
2069     }
2070
2071   _dbus_verbose ("Spawning %s ...\n", argv[0]);
2072   if (servicehelper != NULL)
2073     bus_context_log (activation->context,
2074                      DBUS_SYSTEM_LOG_INFO, "Activating service name='%s' (using servicehelper)",
2075                      service_name);
2076   else
2077     bus_context_log (activation->context,
2078                      DBUS_SYSTEM_LOG_INFO, "Activating service name='%s'",
2079                      service_name);
2080
2081   dbus_error_init (&tmp_error);
2082
2083   if (!_dbus_spawn_async_with_babysitter (&pending_activation->babysitter, argv,
2084                                           envp,
2085                                           NULL, activation,
2086                                           &tmp_error))
2087     {
2088       _dbus_verbose ("Failed to spawn child\n");
2089       bus_context_log (activation->context,
2090                        DBUS_SYSTEM_LOG_INFO, "Failed to activate service %s: %s",
2091                        service_name,
2092                        tmp_error.message);
2093       _DBUS_ASSERT_ERROR_IS_SET (&tmp_error);
2094       dbus_move_error (&tmp_error, error);
2095       dbus_free_string_array (argv);
2096       dbus_free_string_array (envp);
2097
2098       return FALSE;
2099     }
2100
2101   dbus_free_string_array (argv);
2102   envp = NULL;
2103
2104   _dbus_assert (pending_activation->babysitter != NULL);
2105
2106   _dbus_babysitter_set_result_function (pending_activation->babysitter,
2107                                         pending_activation_finished_cb,
2108                                         pending_activation);
2109
2110   if (!_dbus_babysitter_set_watch_functions (pending_activation->babysitter,
2111                                              add_babysitter_watch,
2112                                              remove_babysitter_watch,
2113                                              NULL,
2114                                              pending_activation,
2115                                              NULL))
2116     {
2117       BUS_SET_OOM (error);
2118       _dbus_verbose ("Failed to set babysitter watch functions\n");
2119       return FALSE;
2120     }
2121
2122   return TRUE;
2123 }
2124
2125 dbus_bool_t
2126 bus_activation_list_services (BusActivation *activation,
2127                               char        ***listp,
2128                               int           *array_len)
2129 {
2130   int i, j, len;
2131   char **retval;
2132   DBusHashIter iter;
2133
2134   len = _dbus_hash_table_get_n_entries (activation->entries);
2135   retval = dbus_new (char *, len + 1);
2136
2137   if (retval == NULL)
2138     return FALSE;
2139
2140   _dbus_hash_iter_init (activation->entries, &iter);
2141   i = 0;
2142   while (_dbus_hash_iter_next (&iter))
2143     {
2144       BusActivationEntry *entry = _dbus_hash_iter_get_value (&iter);
2145
2146       retval[i] = _dbus_strdup (entry->name);
2147       if (retval[i] == NULL)
2148         goto error;
2149
2150       i++;
2151     }
2152
2153   retval[i] = NULL;
2154
2155   if (array_len)
2156     *array_len = len;
2157
2158   *listp = retval;
2159   return TRUE;
2160
2161  error:
2162   for (j = 0; j < i; j++)
2163     dbus_free (retval[i]);
2164   dbus_free (retval);
2165
2166   return FALSE;
2167 }
2168
2169 dbus_bool_t
2170 dbus_activation_systemd_failure (BusActivation *activation,
2171                                  DBusMessage   *message)
2172 {
2173   DBusError error;
2174   const char *code, *str, *unit = NULL;
2175
2176   dbus_error_init(&error);
2177
2178   /* This is called whenever the systemd activator sent us a
2179      response. We'll invalidate all pending activations that match the
2180      unit name. */
2181
2182   if (dbus_message_get_args (message, &error,
2183                              DBUS_TYPE_STRING, &unit,
2184                              DBUS_TYPE_STRING, &code,
2185                              DBUS_TYPE_STRING, &str,
2186                              DBUS_TYPE_INVALID))
2187     dbus_set_error(&error, code, str);
2188
2189
2190   if (unit)
2191     {
2192       DBusHashIter iter;
2193
2194       bus_context_log (activation->context,
2195                        DBUS_SYSTEM_LOG_INFO, "Activation via systemd failed for unit '%s': %s",
2196                        unit,
2197                        str);
2198
2199       _dbus_hash_iter_init (activation->pending_activations,
2200                             &iter);
2201
2202       while (_dbus_hash_iter_next (&iter))
2203         {
2204           BusPendingActivation *p = _dbus_hash_iter_get_value (&iter);
2205
2206           if (p->systemd_service && strcmp (p->systemd_service, unit) == 0)
2207             pending_activation_failed(p, &error);
2208         }
2209     }
2210
2211   dbus_error_free(&error);
2212
2213   return TRUE;
2214 }
2215
2216 #ifdef DBUS_BUILD_TESTS
2217
2218 #include <stdio.h>
2219
2220 #define SERVICE_NAME_1 "MyService1"
2221 #define SERVICE_NAME_2 "MyService2"
2222 #define SERVICE_NAME_3 "MyService3"
2223
2224 #define SERVICE_FILE_1 "service-1.service"
2225 #define SERVICE_FILE_2 "service-2.service"
2226 #define SERVICE_FILE_3 "service-3.service"
2227
2228 static dbus_bool_t
2229 test_create_service_file (DBusString *dir,
2230                           const char *filename,
2231                           const char *name,
2232                           const char *exec)
2233 {
2234   DBusString  file_name, full_path;
2235   FILE        *file;
2236   dbus_bool_t  ret_val;
2237
2238   ret_val = TRUE;
2239   _dbus_string_init_const (&file_name, filename);
2240
2241   if (!_dbus_string_init (&full_path))
2242     return FALSE;
2243
2244   if (!_dbus_string_append (&full_path, _dbus_string_get_const_data (dir)) ||
2245       !_dbus_concat_dir_and_file (&full_path, &file_name))
2246     {
2247       ret_val = FALSE;
2248       goto out;
2249     }
2250
2251   file = fopen (_dbus_string_get_const_data (&full_path), "w");
2252   if (!file)
2253     {
2254       ret_val = FALSE;
2255       goto out;
2256     }
2257
2258   fprintf (file, "[D-BUS Service]\nName=%s\nExec=%s\n", name, exec);
2259   fclose (file);
2260
2261 out:
2262   _dbus_string_free (&full_path);
2263   return ret_val;
2264 }
2265
2266 static dbus_bool_t
2267 test_remove_service_file (DBusString *dir, const char *filename)
2268 {
2269   DBusString  file_name, full_path;
2270   dbus_bool_t ret_val;
2271
2272   ret_val = TRUE;
2273
2274   _dbus_string_init_const (&file_name, filename);
2275
2276   if (!_dbus_string_init (&full_path))
2277     return FALSE;
2278
2279   if (!_dbus_string_append (&full_path, _dbus_string_get_const_data (dir)) ||
2280       !_dbus_concat_dir_and_file (&full_path, &file_name))
2281     {
2282       ret_val = FALSE;
2283       goto out;
2284     }
2285
2286   if (!_dbus_delete_file (&full_path, NULL))
2287     {
2288       ret_val = FALSE;
2289       goto out;
2290     }
2291
2292 out:
2293   _dbus_string_free (&full_path);
2294   return ret_val;
2295 }
2296
2297 static dbus_bool_t
2298 test_remove_directory (DBusString *dir)
2299 {
2300   DBusDirIter *iter;
2301   DBusString   filename, full_path;
2302   dbus_bool_t  ret_val;
2303
2304   ret_val = TRUE;
2305
2306   if (!_dbus_string_init (&filename))
2307     return FALSE;
2308
2309   if (!_dbus_string_init (&full_path))
2310     {
2311       _dbus_string_free (&filename);
2312       return FALSE;
2313     }
2314
2315   iter = _dbus_directory_open (dir, NULL);
2316   if (iter == NULL)
2317     {
2318       ret_val = FALSE;
2319       goto out;
2320     }
2321
2322   while (_dbus_directory_get_next_file (iter, &filename, NULL))
2323     {
2324       if (!test_remove_service_file (dir, _dbus_string_get_const_data (&filename)))
2325         {
2326           ret_val = FALSE;
2327           goto out;
2328         }
2329     }
2330   _dbus_directory_close (iter);
2331
2332   if (!_dbus_delete_directory (dir, NULL))
2333     {
2334       ret_val = FALSE;
2335       goto out;
2336     }
2337
2338 out:
2339   _dbus_string_free (&filename);
2340   _dbus_string_free (&full_path);
2341
2342   return ret_val;
2343 }
2344
2345 static dbus_bool_t
2346 init_service_reload_test (DBusString *dir)
2347 {
2348   DBusStat stat_buf;
2349
2350   if (!_dbus_stat (dir, &stat_buf, NULL))
2351     {
2352       if (!_dbus_create_directory (dir, NULL))
2353         return FALSE;
2354     }
2355   else
2356     {
2357       if (!test_remove_directory (dir))
2358         return FALSE;
2359
2360       if (!_dbus_create_directory (dir, NULL))
2361         return FALSE;
2362     }
2363
2364   /* Create one initial file */
2365   if (!test_create_service_file (dir, SERVICE_FILE_1, SERVICE_NAME_1, "exec-1"))
2366     return FALSE;
2367
2368   return TRUE;
2369 }
2370
2371 static dbus_bool_t
2372 cleanup_service_reload_test (DBusString *dir)
2373 {
2374   if (!test_remove_directory (dir))
2375     return FALSE;
2376
2377   return TRUE;
2378 }
2379
2380 typedef struct
2381 {
2382   BusActivation *activation;
2383   const char    *service_name;
2384   dbus_bool_t    expecting_find;
2385 } CheckData;
2386
2387 static dbus_bool_t
2388 check_func (void *data)
2389 {
2390   CheckData          *d;
2391   BusActivationEntry *entry;
2392   DBusError           error;
2393   dbus_bool_t         ret_val;
2394
2395   ret_val = TRUE;
2396   d = data;
2397
2398   dbus_error_init (&error);
2399
2400   entry = activation_find_entry (d->activation, d->service_name, &error);
2401   if (entry == NULL)
2402     {
2403       if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
2404         {
2405           ret_val = TRUE;
2406         }
2407       else
2408         {
2409           if (d->expecting_find)
2410             ret_val = FALSE;
2411         }
2412
2413       dbus_error_free (&error);
2414     }
2415   else
2416     {
2417       if (!d->expecting_find)
2418         ret_val = FALSE;
2419     }
2420
2421   return ret_val;
2422 }
2423
2424 static dbus_bool_t
2425 do_test (const char *description, dbus_bool_t oom_test, CheckData *data)
2426 {
2427   dbus_bool_t err;
2428
2429   if (oom_test)
2430     err = !_dbus_test_oom_handling (description, check_func, data);
2431   else
2432     err = !check_func (data);
2433
2434   if (err)
2435     _dbus_assert_not_reached ("Test failed");
2436
2437   return TRUE;
2438 }
2439
2440 static dbus_bool_t
2441 do_service_reload_test (DBusString *dir, dbus_bool_t oom_test)
2442 {
2443   BusActivation *activation;
2444   DBusString     address;
2445   DBusList      *directories;
2446   CheckData      d;
2447
2448   directories = NULL;
2449   _dbus_string_init_const (&address, "");
2450
2451   if (!_dbus_list_append (&directories, _dbus_string_get_data (dir)))
2452     return FALSE;
2453
2454   activation = bus_activation_new (NULL, &address, &directories, NULL);
2455   if (!activation)
2456     return FALSE;
2457
2458   d.activation = activation;
2459
2460   /* Check for existing service file */
2461   d.expecting_find = TRUE;
2462   d.service_name = SERVICE_NAME_1;
2463
2464   if (!do_test ("Existing service file", oom_test, &d))
2465     return FALSE;
2466
2467   /* Check for non-existing service file */
2468   d.expecting_find = FALSE;
2469   d.service_name = SERVICE_NAME_3;
2470
2471   if (!do_test ("Nonexisting service file", oom_test, &d))
2472     return FALSE;
2473
2474   /* Check for added service file */
2475   if (!test_create_service_file (dir, SERVICE_FILE_2, SERVICE_NAME_2, "exec-2"))
2476     return FALSE;
2477
2478   d.expecting_find = TRUE;
2479   d.service_name = SERVICE_NAME_2;
2480
2481   if (!do_test ("Added service file", oom_test, &d))
2482     return FALSE;
2483
2484   /* Check for removed service file */
2485   if (!test_remove_service_file (dir, SERVICE_FILE_2))
2486     return FALSE;
2487
2488   d.expecting_find = FALSE;
2489   d.service_name = SERVICE_FILE_2;
2490
2491   if (!do_test ("Removed service file", oom_test, &d))
2492     return FALSE;
2493
2494   /* Check for updated service file */
2495
2496   _dbus_sleep_milliseconds (1000); /* Sleep a second to make sure the mtime is updated */
2497
2498   if (!test_create_service_file (dir, SERVICE_FILE_1, SERVICE_NAME_3, "exec-3"))
2499     return FALSE;
2500
2501   d.expecting_find = TRUE;
2502   d.service_name = SERVICE_NAME_3;
2503
2504   if (!do_test ("Updated service file, part 1", oom_test, &d))
2505     return FALSE;
2506
2507   d.expecting_find = FALSE;
2508   d.service_name = SERVICE_NAME_1;
2509
2510   if (!do_test ("Updated service file, part 2", oom_test, &d))
2511     return FALSE;
2512
2513   bus_activation_unref (activation);
2514   _dbus_list_clear (&directories);
2515
2516   return TRUE;
2517 }
2518
2519 dbus_bool_t
2520 bus_activation_service_reload_test (const DBusString *test_data_dir)
2521 {
2522   DBusString directory;
2523
2524   if (!_dbus_string_init (&directory))
2525     return FALSE;
2526
2527   if (!_dbus_string_append (&directory, _dbus_get_tmpdir()))
2528     return FALSE;
2529
2530   if (!_dbus_string_append (&directory, "/dbus-reload-test-") ||
2531       !_dbus_generate_random_ascii (&directory, 6))
2532      {
2533        return FALSE;
2534      }
2535
2536   /* Do normal tests */
2537   if (!init_service_reload_test (&directory))
2538     _dbus_assert_not_reached ("could not initiate service reload test");
2539
2540   if (!do_service_reload_test (&directory, FALSE))
2541     ; /* Do nothing? */
2542
2543   /* Do OOM tests */
2544   if (!init_service_reload_test (&directory))
2545     _dbus_assert_not_reached ("could not initiate service reload test");
2546
2547   if (!do_service_reload_test (&directory, TRUE))
2548     ; /* Do nothing? */
2549
2550   /* Cleanup test directory */
2551   if (!cleanup_service_reload_test (&directory))
2552     return FALSE;
2553
2554   _dbus_string_free (&directory);
2555
2556   return TRUE;
2557 }
2558
2559 #endif /* DBUS_BUILD_TESTS */