First public contribution.
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* activation.c Activation of services
4 * Copyright (C) 2003 CodeFactory AB
5 * Copyright (C) 2003 Red Hat, Inc.
6 * Copyright (C) 2004 Imendio HB
7 * Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
9 * Licensed under the Academic Free License version 2.1
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 #include "activation.h"
27 #include "desktop-file.h"
33 #include <dbus/dbus-internals.h>
34 #include <dbus/dbus-hash.h>
35 #include <dbus/dbus-list.h>
36 #include <dbus/dbus-shell.h>
37 #include <dbus/dbus-spawn.h>
38 #include <dbus/dbus-timeout.h>
39 #include <dbus/dbus-sysdeps.h>
41 #include "dbus-internals.h"
42 #include "dbus-hash.h"
43 #include "dbus-list.h"
44 #include "dbus-shell.h"
45 #include "dbus-spawn.h"
46 #include "dbus-timeout.h"
47 #include "dbus-sysdeps.h"
48 #endif //__SYMBIAN32__
52 #define DBUS_SERVICE_SECTION "D-BUS Service"
53 #define DBUS_SERVICE_NAME "Name"
54 #define DBUS_SERVICE_EXEC "Exec"
59 DBusHashTable *entries;
60 DBusHashTable *pending_activations;
63 int n_pending_activations; /**< This is in fact the number of BusPendingActivationEntry,
64 * i.e. number of pending activation requests, not pending
67 DBusHashTable *directories;
74 DBusHashTable *entries;
75 } BusServiceDirectory;
83 BusServiceDirectory *s_dir;
87 typedef struct BusPendingActivationEntry BusPendingActivationEntry;
89 struct BusPendingActivationEntry
91 DBusMessage *activation_message;
92 DBusConnection *connection;
94 dbus_bool_t auto_activation;
100 BusActivation *activation;
105 DBusBabysitter *babysitter;
106 DBusTimeout *timeout;
107 unsigned int timeout_added : 1;
108 } BusPendingActivation;
111 static BusServiceDirectory *
112 bus_service_directory_ref (BusServiceDirectory *dir)
114 _dbus_assert (dir->refcount);
123 bus_service_directory_unref (BusServiceDirectory *dir)
128 _dbus_assert (dir->refcount > 0);
131 if (dir->refcount > 0)
135 _dbus_hash_table_unref (dir->entries);
137 dbus_free (dir->dir_c);
142 bus_pending_activation_entry_free (BusPendingActivationEntry *entry)
144 if (entry->activation_message)
145 dbus_message_unref (entry->activation_message);
147 if (entry->connection)
148 dbus_connection_unref (entry->connection);
154 handle_timeout_callback (DBusTimeout *timeout,
157 BusPendingActivation *pending_activation = data;
159 while (!dbus_timeout_handle (pending_activation->timeout))
160 _dbus_wait_for_memory ();
163 static BusPendingActivation *
164 bus_pending_activation_ref (BusPendingActivation *pending_activation)
166 _dbus_assert (pending_activation->refcount > 0);
167 pending_activation->refcount += 1;
169 return pending_activation;
173 bus_pending_activation_unref (BusPendingActivation *pending_activation)
177 if (pending_activation == NULL) /* hash table requires this */
180 _dbus_assert (pending_activation->refcount > 0);
181 pending_activation->refcount -= 1;
183 if (pending_activation->refcount > 0)
186 if (pending_activation->timeout_added)
188 _dbus_loop_remove_timeout (bus_context_get_loop (pending_activation->activation->context),
189 pending_activation->timeout,
190 handle_timeout_callback, pending_activation);
191 pending_activation->timeout_added = FALSE;
194 if (pending_activation->timeout)
195 _dbus_timeout_unref (pending_activation->timeout);
197 if (pending_activation->babysitter)
199 if (!_dbus_babysitter_set_watch_functions (pending_activation->babysitter,
201 pending_activation->babysitter,
203 _dbus_assert_not_reached ("setting watch functions to NULL failed");
205 _dbus_babysitter_unref (pending_activation->babysitter);
208 dbus_free (pending_activation->service_name);
209 dbus_free (pending_activation->exec);
211 link = _dbus_list_get_first_link (&pending_activation->entries);
215 BusPendingActivationEntry *entry = link->data;
217 bus_pending_activation_entry_free (entry);
219 link = _dbus_list_get_next_link (&pending_activation->entries, link);
221 _dbus_list_clear (&pending_activation->entries);
223 pending_activation->activation->n_pending_activations -=
224 pending_activation->n_entries;
226 _dbus_assert (pending_activation->activation->n_pending_activations >= 0);
228 dbus_free (pending_activation);
231 static BusActivationEntry *
232 bus_activation_entry_ref (BusActivationEntry *entry)
234 _dbus_assert (entry->refcount > 0);
241 bus_activation_entry_unref (BusActivationEntry *entry)
243 if (entry == NULL) /* hash table requires this */
246 _dbus_assert (entry->refcount > 0);
249 if (entry->refcount > 0)
252 dbus_free (entry->name);
253 dbus_free (entry->exec);
254 dbus_free (entry->filename);
260 update_desktop_file_entry (BusActivation *activation,
261 BusServiceDirectory *s_dir,
262 DBusString *filename,
263 BusDesktopFile *desktop_file,
267 BusActivationEntry *entry;
269 DBusString file_path;
271 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
277 if (!_dbus_string_init (&file_path))
283 if (!_dbus_string_append (&file_path, s_dir->dir_c) ||
284 !_dbus_concat_dir_and_file (&file_path, filename))
290 if (!_dbus_stat (&file_path, &stat_buf, NULL))
292 dbus_set_error (error, DBUS_ERROR_FAILED,
293 "Can't stat the service file\n");
297 if (!bus_desktop_file_get_string (desktop_file,
298 DBUS_SERVICE_SECTION,
304 if (!bus_desktop_file_get_string (desktop_file,
305 DBUS_SERVICE_SECTION,
311 entry = _dbus_hash_table_lookup_string (s_dir->entries,
312 _dbus_string_get_const_data (filename));
313 if (entry == NULL) /* New file */
315 /* FIXME we need a better-defined algorithm for which service file to
316 * pick than "whichever one is first in the directory listing"
318 if (_dbus_hash_table_lookup_string (activation->entries, name))
320 dbus_set_error (error, DBUS_ERROR_FAILED,
321 "Service %s already exists in activation entry list\n", name);
325 entry = dbus_new0 (BusActivationEntry, 1);
336 entry->s_dir = s_dir;
337 entry->filename = _dbus_strdup (_dbus_string_get_const_data (filename));
338 if (!entry->filename)
344 if (!_dbus_hash_table_insert_string (activation->entries, entry->name, bus_activation_entry_ref (entry)))
350 if (!_dbus_hash_table_insert_string (s_dir->entries, entry->filename, bus_activation_entry_ref (entry)))
352 /* Revert the insertion in the entries table */
353 _dbus_hash_table_remove_string (activation->entries, entry->name);
358 _dbus_verbose ("Added \"%s\" to list of services\n", entry->name);
360 else /* Just update the entry */
362 bus_activation_entry_ref (entry);
363 _dbus_hash_table_remove_string (activation->entries, entry->name);
365 if (_dbus_hash_table_lookup_string (activation->entries, name))
367 _dbus_verbose ("The new service name \"%s\" of service file \"%s\" already in cache, ignoring\n",
368 name, _dbus_string_get_const_data (&file_path));
372 dbus_free (entry->name);
373 dbus_free (entry->exec);
376 if (!_dbus_hash_table_insert_string (activation->entries,
377 entry->name, bus_activation_entry_ref(entry)))
380 /* Also remove path to entries hash since we want this in sync with
381 * the entries hash table */
382 _dbus_hash_table_remove_string (entry->s_dir->entries,
384 bus_activation_entry_unref (entry);
389 entry->mtime = stat_buf.mtime;
391 _dbus_string_free (&file_path);
392 bus_activation_entry_unref (entry);
399 _dbus_string_free (&file_path);
402 bus_activation_entry_unref (entry);
408 check_service_file (BusActivation *activation,
409 BusActivationEntry *entry,
410 BusActivationEntry **updated_entry,
415 BusActivationEntry *tmp_entry;
416 DBusString file_path;
422 _dbus_string_init_const (&filename, entry->filename);
424 if (!_dbus_string_init (&file_path))
430 if (!_dbus_string_append (&file_path, entry->s_dir->dir_c) ||
431 !_dbus_concat_dir_and_file (&file_path, &filename))
438 if (!_dbus_stat (&file_path, &stat_buf, NULL))
440 _dbus_verbose ("****** Can't stat file \"%s\", removing from cache\n",
441 _dbus_string_get_const_data (&file_path));
443 _dbus_hash_table_remove_string (activation->entries, entry->name);
444 _dbus_hash_table_remove_string (entry->s_dir->entries, entry->filename);
452 if (stat_buf.mtime > entry->mtime)
454 BusDesktopFile *desktop_file;
457 dbus_error_init (&tmp_error);
459 desktop_file = bus_desktop_file_load (&file_path, &tmp_error);
460 if (desktop_file == NULL)
462 _dbus_verbose ("Could not load %s: %s\n",
463 _dbus_string_get_const_data (&file_path),
465 if (dbus_error_has_name (&tmp_error, DBUS_ERROR_NO_MEMORY))
467 dbus_move_error (&tmp_error, error);
471 dbus_error_free (&tmp_error);
476 /* @todo We can return OOM or a DBUS_ERROR_FAILED error
477 * Handle these both better
479 if (!update_desktop_file_entry (activation, entry->s_dir, &filename, desktop_file, &tmp_error))
481 bus_desktop_file_free (desktop_file);
482 if (dbus_error_has_name (&tmp_error, DBUS_ERROR_NO_MEMORY))
484 dbus_move_error (&tmp_error, error);
488 dbus_error_free (&tmp_error);
493 bus_desktop_file_free (desktop_file);
499 _dbus_string_free (&file_path);
501 if (updated_entry != NULL)
502 *updated_entry = tmp_entry;
507 /* warning: this doesn't fully "undo" itself on failure, i.e. doesn't strip
508 * hash entries it already added.
511 update_directory (BusActivation *activation,
512 BusServiceDirectory *s_dir,
516 DBusString dir, filename;
517 BusDesktopFile *desktop_file;
520 BusActivationEntry *entry;
521 DBusString full_path;
523 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
528 _dbus_string_init_const (&dir, s_dir->dir_c);
530 if (!_dbus_string_init (&filename))
536 if (!_dbus_string_init (&full_path))
539 _dbus_string_free (&filename);
545 /* from this point it's safe to "goto out" */
547 iter = _dbus_directory_open (&dir, error);
550 _dbus_verbose ("Failed to open directory %s: %s\n",
552 error ? error->message : "unknown");
556 /* Now read the files */
557 dbus_error_init (&tmp_error);
558 while (_dbus_directory_get_next_file (iter, &filename, &tmp_error))
560 _dbus_assert (!dbus_error_is_set (&tmp_error));
562 _dbus_string_set_length (&full_path, 0);
564 if (!_dbus_string_ends_with_c_str (&filename, ".service"))
566 _dbus_verbose ("Skipping non-.service file %s\n",
567 _dbus_string_get_const_data (&filename));
571 entry = _dbus_hash_table_lookup_string (s_dir->entries, _dbus_string_get_const_data (&filename));
572 if (entry) /* Already has this service file in the cache */
574 if (!check_service_file (activation, entry, NULL, error))
580 if (!_dbus_string_append (&full_path, s_dir->dir_c) ||
581 !_dbus_concat_dir_and_file (&full_path, &filename))
588 desktop_file = bus_desktop_file_load (&full_path, &tmp_error);
589 if (desktop_file == NULL)
591 _dbus_verbose ("Could not load %s: %s\n",
592 _dbus_string_get_const_data (&full_path),
595 if (dbus_error_has_name (&tmp_error, DBUS_ERROR_NO_MEMORY))
597 dbus_move_error (&tmp_error, error);
601 dbus_error_free (&tmp_error);
605 /* @todo We can return OOM or a DBUS_ERROR_FAILED error
606 * Handle these both better
608 if (!update_desktop_file_entry (activation, s_dir, &filename, desktop_file, &tmp_error))
610 bus_desktop_file_free (desktop_file);
613 _dbus_verbose ("Could not add %s to activation entry list: %s\n",
614 _dbus_string_get_const_data (&full_path), tmp_error.message);
616 if (dbus_error_has_name (&tmp_error, DBUS_ERROR_NO_MEMORY))
618 dbus_move_error (&tmp_error, error);
622 dbus_error_free (&tmp_error);
627 bus_desktop_file_free (desktop_file);
633 if (dbus_error_is_set (&tmp_error))
635 dbus_move_error (&tmp_error, error);
643 _DBUS_ASSERT_ERROR_IS_SET (error);
645 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
648 _dbus_directory_close (iter);
649 _dbus_string_free (&filename);
650 _dbus_string_free (&full_path);
656 bus_activation_new (BusContext *context,
657 const DBusString *address,
658 DBusList **directories,
661 BusActivation *activation;
665 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
667 activation = dbus_new0 (BusActivation, 1);
668 if (activation == NULL)
674 activation->refcount = 1;
675 activation->context = context;
676 activation->n_pending_activations = 0;
678 if (!_dbus_string_copy_data (address, &activation->server_address))
684 activation->entries = _dbus_hash_table_new (DBUS_HASH_STRING, NULL,
685 (DBusFreeFunction)bus_activation_entry_unref);
686 if (activation->entries == NULL)
692 activation->pending_activations = _dbus_hash_table_new (DBUS_HASH_STRING, NULL,
693 (DBusFreeFunction)bus_pending_activation_unref);
695 if (activation->pending_activations == NULL)
701 activation->directories = _dbus_hash_table_new (DBUS_HASH_STRING, NULL,
702 (DBusFreeFunction)bus_service_directory_unref);
704 if (activation->directories == NULL)
710 /* Load service files */
711 link = _dbus_list_get_first_link (directories);
714 BusServiceDirectory *s_dir;
716 dir = _dbus_strdup ((const char *) link->data);
723 s_dir = dbus_new0 (BusServiceDirectory, 1);
734 s_dir->entries = _dbus_hash_table_new (DBUS_HASH_STRING, NULL,
735 (DBusFreeFunction)bus_activation_entry_unref);
739 bus_service_directory_unref (s_dir);
744 if (!_dbus_hash_table_insert_string (activation->directories, s_dir->dir_c, s_dir))
746 bus_service_directory_unref (s_dir);
751 /* only fail on OOM, it is ok if we can't read the directory */
752 if (!update_directory (activation, s_dir, error))
754 if (dbus_error_has_name (error, DBUS_ERROR_NO_MEMORY))
757 dbus_error_free (error);
760 link = _dbus_list_get_next_link (directories, link);
766 bus_activation_unref (activation);
771 bus_activation_ref (BusActivation *activation)
773 _dbus_assert (activation->refcount > 0);
775 activation->refcount += 1;
781 bus_activation_unref (BusActivation *activation)
783 _dbus_assert (activation->refcount > 0);
785 activation->refcount -= 1;
787 if (activation->refcount > 0)
790 dbus_free (activation->server_address);
791 if (activation->entries)
792 _dbus_hash_table_unref (activation->entries);
793 if (activation->pending_activations)
794 _dbus_hash_table_unref (activation->pending_activations);
795 if (activation->directories)
796 _dbus_hash_table_unref (activation->directories);
798 dbus_free (activation);
802 child_setup (void *data)
804 BusActivation *activation = data;
807 /* If no memory, we simply have the child exit, so it won't try
808 * to connect to the wrong thing.
810 if (!_dbus_setenv ("DBUS_STARTER_ADDRESS", activation->server_address))
813 type = bus_context_get_type (activation->context);
816 if (!_dbus_setenv ("DBUS_STARTER_BUS_TYPE", type))
819 if (strcmp (type, "session") == 0)
821 if (!_dbus_setenv ("DBUS_SESSION_BUS_ADDRESS",
822 activation->server_address))
825 else if (strcmp (type, "system") == 0)
827 if (!_dbus_setenv ("DBUS_SYSTEM_BUS_ADDRESS",
828 activation->server_address))
836 BusPendingActivation *pending_activation;
837 DBusPreallocatedHash *hash_entry;
838 } RestorePendingData;
841 restore_pending (void *data)
843 RestorePendingData *d = data;
845 _dbus_assert (d->pending_activation != NULL);
846 _dbus_assert (d->hash_entry != NULL);
848 _dbus_verbose ("Restoring pending activation for service %s, has timeout = %d\n",
849 d->pending_activation->service_name,
850 d->pending_activation->timeout_added);
852 _dbus_hash_table_insert_string_preallocated (d->pending_activation->activation->pending_activations,
854 d->pending_activation->service_name, d->pending_activation);
856 bus_pending_activation_ref (d->pending_activation);
858 d->hash_entry = NULL;
862 free_pending_restore_data (void *data)
864 RestorePendingData *d = data;
867 _dbus_hash_table_free_preallocated_entry (d->pending_activation->activation->pending_activations,
870 bus_pending_activation_unref (d->pending_activation);
876 add_restore_pending_to_transaction (BusTransaction *transaction,
877 BusPendingActivation *pending_activation)
879 RestorePendingData *d;
881 d = dbus_new (RestorePendingData, 1);
885 d->pending_activation = pending_activation;
886 d->hash_entry = _dbus_hash_table_preallocate_entry (d->pending_activation->activation->pending_activations);
888 bus_pending_activation_ref (d->pending_activation);
890 if (d->hash_entry == NULL ||
891 !bus_transaction_add_cancel_hook (transaction, restore_pending, d,
892 free_pending_restore_data))
894 free_pending_restore_data (d);
898 _dbus_verbose ("Saved pending activation to be restored if the transaction fails\n");
904 bus_activation_service_created (BusActivation *activation,
905 const char *service_name,
906 BusTransaction *transaction,
909 BusPendingActivation *pending_activation;
910 DBusMessage *message;
913 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
915 /* Check if it's a pending activation */
916 pending_activation = _dbus_hash_table_lookup_string (activation->pending_activations, service_name);
918 if (!pending_activation)
921 link = _dbus_list_get_first_link (&pending_activation->entries);
924 BusPendingActivationEntry *entry = link->data;
925 DBusList *next = _dbus_list_get_next_link (&pending_activation->entries, link);
927 if (dbus_connection_get_is_connected (entry->connection))
929 /* Only send activation replies to regular activation requests. */
930 if (!entry->auto_activation)
932 dbus_uint32_t result;
934 message = dbus_message_new_method_return (entry->activation_message);
941 result = DBUS_START_REPLY_SUCCESS;
943 if (!dbus_message_append_args (message,
944 DBUS_TYPE_UINT32, &result,
947 dbus_message_unref (message);
952 if (!bus_transaction_send_from_driver (transaction, entry->connection, message))
954 dbus_message_unref (message);
959 dbus_message_unref (message);
973 bus_activation_send_pending_auto_activation_messages (BusActivation *activation,
975 BusTransaction *transaction,
978 BusPendingActivation *pending_activation;
981 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
983 /* Check if it's a pending activation */
984 pending_activation = _dbus_hash_table_lookup_string (activation->pending_activations,
985 bus_service_get_name (service));
987 if (!pending_activation)
990 link = _dbus_list_get_first_link (&pending_activation->entries);
993 BusPendingActivationEntry *entry = link->data;
994 DBusList *next = _dbus_list_get_next_link (&pending_activation->entries, link);
996 if (entry->auto_activation && dbus_connection_get_is_connected (entry->connection))
998 DBusConnection *addressed_recipient;
1000 addressed_recipient = bus_service_get_primary_owners_connection (service);
1002 /* Check the security policy, which has the side-effect of adding an
1003 * expected pending reply.
1005 if (!bus_context_check_security_policy (activation->context, transaction,
1007 addressed_recipient,
1008 addressed_recipient,
1009 entry->activation_message, error))
1012 if (!bus_transaction_send (transaction, addressed_recipient, entry->activation_message))
1014 BUS_SET_OOM (error);
1022 if (!add_restore_pending_to_transaction (transaction, pending_activation))
1024 _dbus_verbose ("Could not add cancel hook to transaction to revert removing pending activation\n");
1025 BUS_SET_OOM (error);
1029 _dbus_hash_table_remove_string (activation->pending_activations, bus_service_get_name (service));
1038 * FIXME @todo the error messages here would ideally be preallocated
1039 * so we don't need to allocate memory to send them.
1040 * Using the usual tactic, prealloc an OOM message, then
1041 * if we can't alloc the real error send the OOM error instead.
1044 try_send_activation_failure (BusPendingActivation *pending_activation,
1045 const DBusError *how)
1047 BusActivation *activation;
1049 BusTransaction *transaction;
1051 activation = pending_activation->activation;
1053 transaction = bus_transaction_new (activation->context);
1054 if (transaction == NULL)
1057 link = _dbus_list_get_first_link (&pending_activation->entries);
1058 while (link != NULL)
1060 BusPendingActivationEntry *entry = link->data;
1061 DBusList *next = _dbus_list_get_next_link (&pending_activation->entries, link);
1063 if (dbus_connection_get_is_connected (entry->connection))
1065 if (!bus_transaction_send_error_reply (transaction,
1068 entry->activation_message))
1075 bus_transaction_execute_and_free (transaction);
1081 bus_transaction_cancel_and_free (transaction);
1086 * Free the pending activation and send an error message to all the
1087 * connections that were waiting for it.
1090 pending_activation_failed (BusPendingActivation *pending_activation,
1091 const DBusError *how)
1093 /* FIXME use preallocated OOM messages instead of bus_wait_for_memory() */
1094 while (!try_send_activation_failure (pending_activation, how))
1095 _dbus_wait_for_memory ();
1097 /* Destroy this pending activation */
1098 _dbus_hash_table_remove_string (pending_activation->activation->pending_activations,
1099 pending_activation->service_name);
1103 babysitter_watch_callback (DBusWatch *watch,
1104 unsigned int condition,
1107 BusPendingActivation *pending_activation = data;
1109 DBusBabysitter *babysitter;
1111 babysitter = pending_activation->babysitter;
1113 _dbus_babysitter_ref (babysitter);
1115 retval = dbus_watch_handle (watch, condition);
1117 /* FIXME this is broken in the same way that
1118 * connection watches used to be; there should be
1119 * a separate callback for status change, instead
1120 * of doing "if we handled a watch status might
1123 * Fixing this lets us move dbus_watch_handle
1124 * calls into dbus-mainloop.c
1127 if (_dbus_babysitter_get_child_exited (babysitter))
1132 dbus_error_init (&error);
1133 _dbus_babysitter_set_child_exit_error (babysitter, &error);
1135 /* Destroy all pending activations with the same exec */
1136 _dbus_hash_iter_init (pending_activation->activation->pending_activations,
1138 while (_dbus_hash_iter_next (&iter))
1140 BusPendingActivation *p = _dbus_hash_iter_get_value (&iter);
1142 if (p != pending_activation && strcmp (p->exec, pending_activation->exec) == 0)
1143 pending_activation_failed (p, &error);
1146 /* Destroys the pending activation */
1147 pending_activation_failed (pending_activation, &error);
1149 dbus_error_free (&error);
1152 _dbus_babysitter_unref (babysitter);
1158 add_babysitter_watch (DBusWatch *watch,
1161 BusPendingActivation *pending_activation = data;
1163 return _dbus_loop_add_watch (bus_context_get_loop (pending_activation->activation->context),
1164 watch, babysitter_watch_callback, pending_activation,
1169 remove_babysitter_watch (DBusWatch *watch,
1172 BusPendingActivation *pending_activation = data;
1174 _dbus_loop_remove_watch (bus_context_get_loop (pending_activation->activation->context),
1175 watch, babysitter_watch_callback, pending_activation);
1179 pending_activation_timed_out (void *data)
1181 BusPendingActivation *pending_activation = data;
1184 /* Kill the spawned process, since it sucks
1185 * (not sure this is what we want to do, but
1186 * may as well try it for now)
1188 if (pending_activation->babysitter)
1189 _dbus_babysitter_kill_child (pending_activation->babysitter);
1191 dbus_error_init (&error);
1193 dbus_set_error (&error, DBUS_ERROR_TIMED_OUT,
1194 "Activation of %s timed out",
1195 pending_activation->service_name);
1197 pending_activation_failed (pending_activation, &error);
1199 dbus_error_free (&error);
1205 cancel_pending (void *data)
1207 BusPendingActivation *pending_activation = data;
1209 _dbus_verbose ("Canceling pending activation of %s\n",
1210 pending_activation->service_name);
1212 if (pending_activation->babysitter)
1213 _dbus_babysitter_kill_child (pending_activation->babysitter);
1215 _dbus_hash_table_remove_string (pending_activation->activation->pending_activations,
1216 pending_activation->service_name);
1220 free_pending_cancel_data (void *data)
1222 BusPendingActivation *pending_activation = data;
1224 bus_pending_activation_unref (pending_activation);
1228 add_cancel_pending_to_transaction (BusTransaction *transaction,
1229 BusPendingActivation *pending_activation)
1231 if (!bus_transaction_add_cancel_hook (transaction, cancel_pending,
1233 free_pending_cancel_data))
1236 bus_pending_activation_ref (pending_activation);
1238 _dbus_verbose ("Saved pending activation to be canceled if the transaction fails\n");
1244 update_service_cache (BusActivation *activation, DBusError *error)
1248 _dbus_hash_iter_init (activation->directories, &iter);
1249 while (_dbus_hash_iter_next (&iter))
1251 DBusError tmp_error;
1252 BusServiceDirectory *s_dir;
1254 s_dir = _dbus_hash_iter_get_value (&iter);
1256 dbus_error_init (&tmp_error);
1257 if (!update_directory (activation, s_dir, &tmp_error))
1259 if (dbus_error_has_name (&tmp_error, DBUS_ERROR_NO_MEMORY))
1261 dbus_move_error (&tmp_error, error);
1265 dbus_error_free (&tmp_error);
1273 static BusActivationEntry *
1274 activation_find_entry (BusActivation *activation,
1275 const char *service_name,
1278 BusActivationEntry *entry;
1280 entry = _dbus_hash_table_lookup_string (activation->entries, service_name);
1283 if (!update_service_cache (activation, error))
1286 entry = _dbus_hash_table_lookup_string (activation->entries,
1291 BusActivationEntry *updated_entry;
1293 if (!check_service_file (activation, entry, &updated_entry, error))
1296 entry = updated_entry;
1301 dbus_set_error (error, DBUS_ERROR_SERVICE_UNKNOWN,
1302 "The name %s was not provided by any .service files",
1311 bus_activation_activate_service (BusActivation *activation,
1312 DBusConnection *connection,
1313 BusTransaction *transaction,
1314 dbus_bool_t auto_activation,
1315 DBusMessage *activation_message,
1316 const char *service_name,
1319 BusActivationEntry *entry;
1320 BusPendingActivation *pending_activation;
1321 BusPendingActivationEntry *pending_activation_entry;
1322 DBusMessage *message;
1323 DBusString service_str;
1328 dbus_bool_t activated;
1332 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1334 if (activation->n_pending_activations >=
1335 bus_context_get_max_pending_activations (activation->context))
1337 dbus_set_error (error, DBUS_ERROR_LIMITS_EXCEEDED,
1338 "The maximum number of pending activations has been reached, activation of %s failed",
1343 entry = activation_find_entry (activation, service_name, error);
1347 /* Bypass the registry lookup if we're auto-activating, bus_dispatch would not
1348 * call us if the service is already active.
1350 if (!auto_activation)
1352 /* Check if the service is active */
1353 _dbus_string_init_const (&service_str, service_name);
1354 if (bus_registry_lookup (bus_context_get_registry (activation->context), &service_str) != NULL)
1356 dbus_uint32_t result;
1358 _dbus_verbose ("Service \"%s\" is already active\n", service_name);
1360 message = dbus_message_new_method_return (activation_message);
1364 _dbus_verbose ("No memory to create reply to activate message\n");
1365 BUS_SET_OOM (error);
1369 result = DBUS_START_REPLY_ALREADY_RUNNING;
1371 if (!dbus_message_append_args (message,
1372 DBUS_TYPE_UINT32, &result,
1375 _dbus_verbose ("No memory to set args of reply to activate message\n");
1376 BUS_SET_OOM (error);
1377 dbus_message_unref (message);
1381 retval = bus_transaction_send_from_driver (transaction, connection, message);
1382 dbus_message_unref (message);
1385 _dbus_verbose ("Failed to send reply\n");
1386 BUS_SET_OOM (error);
1393 pending_activation_entry = dbus_new0 (BusPendingActivationEntry, 1);
1394 if (!pending_activation_entry)
1396 _dbus_verbose ("Failed to create pending activation entry\n");
1397 BUS_SET_OOM (error);
1401 pending_activation_entry->auto_activation = auto_activation;
1403 pending_activation_entry->activation_message = activation_message;
1404 dbus_message_ref (activation_message);
1405 pending_activation_entry->connection = connection;
1406 dbus_connection_ref (connection);
1408 /* Check if the service is being activated */
1409 pending_activation = _dbus_hash_table_lookup_string (activation->pending_activations, service_name);
1410 if (pending_activation)
1412 if (!_dbus_list_append (&pending_activation->entries, pending_activation_entry))
1414 _dbus_verbose ("Failed to append a new entry to pending activation\n");
1416 BUS_SET_OOM (error);
1417 bus_pending_activation_entry_free (pending_activation_entry);
1421 pending_activation->n_entries += 1;
1422 pending_activation->activation->n_pending_activations += 1;
1426 pending_activation = dbus_new0 (BusPendingActivation, 1);
1427 if (!pending_activation)
1429 _dbus_verbose ("Failed to create pending activation\n");
1431 BUS_SET_OOM (error);
1432 bus_pending_activation_entry_free (pending_activation_entry);
1436 pending_activation->activation = activation;
1437 pending_activation->refcount = 1;
1439 pending_activation->service_name = _dbus_strdup (service_name);
1440 if (!pending_activation->service_name)
1442 _dbus_verbose ("Failed to copy service name for pending activation\n");
1444 BUS_SET_OOM (error);
1445 bus_pending_activation_unref (pending_activation);
1446 bus_pending_activation_entry_free (pending_activation_entry);
1450 pending_activation->exec = _dbus_strdup (entry->exec);
1451 if (!pending_activation->exec)
1453 _dbus_verbose ("Failed to copy service exec for pending activation\n");
1454 BUS_SET_OOM (error);
1455 bus_pending_activation_unref (pending_activation);
1456 bus_pending_activation_entry_free (pending_activation_entry);
1460 pending_activation->timeout =
1461 _dbus_timeout_new (bus_context_get_activation_timeout (activation->context),
1462 pending_activation_timed_out,
1465 if (!pending_activation->timeout)
1467 _dbus_verbose ("Failed to create timeout for pending activation\n");
1469 BUS_SET_OOM (error);
1470 bus_pending_activation_unref (pending_activation);
1471 bus_pending_activation_entry_free (pending_activation_entry);
1475 if (!_dbus_loop_add_timeout (bus_context_get_loop (activation->context),
1476 pending_activation->timeout,
1477 handle_timeout_callback,
1481 _dbus_verbose ("Failed to add timeout for pending activation\n");
1483 BUS_SET_OOM (error);
1484 bus_pending_activation_unref (pending_activation);
1485 bus_pending_activation_entry_free (pending_activation_entry);
1489 pending_activation->timeout_added = TRUE;
1491 if (!_dbus_list_append (&pending_activation->entries, pending_activation_entry))
1493 _dbus_verbose ("Failed to add entry to just-created pending activation\n");
1495 BUS_SET_OOM (error);
1496 bus_pending_activation_unref (pending_activation);
1497 bus_pending_activation_entry_free (pending_activation_entry);
1501 pending_activation->n_entries += 1;
1502 pending_activation->activation->n_pending_activations += 1;
1505 _dbus_hash_iter_init (activation->pending_activations, &iter);
1506 while (_dbus_hash_iter_next (&iter))
1508 BusPendingActivation *p = _dbus_hash_iter_get_value (&iter);
1510 if (strcmp (p->exec, entry->exec) == 0)
1517 if (!_dbus_hash_table_insert_string (activation->pending_activations,
1518 pending_activation->service_name,
1519 pending_activation))
1521 _dbus_verbose ("Failed to put pending activation in hash table\n");
1523 BUS_SET_OOM (error);
1524 bus_pending_activation_unref (pending_activation);
1529 if (!add_cancel_pending_to_transaction (transaction, pending_activation))
1531 _dbus_verbose ("Failed to add pending activation cancel hook to transaction\n");
1532 BUS_SET_OOM (error);
1533 _dbus_hash_table_remove_string (activation->pending_activations,
1534 pending_activation->service_name);
1541 #ifndef __SYMBIAN32__
1543 /* Now try to spawn the process */
1544 if (!_dbus_shell_parse_argv (entry->exec, &argc, &argv, error))
1546 _dbus_verbose ("Failed to parse command line: %s\n", entry->exec);
1547 _DBUS_ASSERT_ERROR_IS_SET (error);
1549 _dbus_hash_table_remove_string (activation->pending_activations,
1550 pending_activation->service_name);
1555 _dbus_verbose ("Spawning %s ...\n", argv[0]);
1558 _dbus_verbose ("Spawning %s ...\n", entry->exec);
1561 #ifdef __SYMBIAN32__
1562 if (!_dbus_spawn_async_with_babysitter (&pending_activation->babysitter, &entry->exec,
1563 child_setup, activation,
1566 if (!_dbus_spawn_async_with_babysitter (&pending_activation->babysitter, argv,
1567 child_setup, activation,
1570 _dbus_verbose ("Failed to spawn child\n");
1571 _DBUS_ASSERT_ERROR_IS_SET (error);
1572 dbus_free_string_array (argv);
1577 dbus_free_string_array (argv);
1579 _dbus_assert (pending_activation->babysitter != NULL);
1581 if (!_dbus_babysitter_set_watch_functions (pending_activation->babysitter,
1582 add_babysitter_watch,
1583 remove_babysitter_watch,
1588 BUS_SET_OOM (error);
1589 _dbus_verbose ("Failed to set babysitter watch functions\n");
1597 bus_activation_list_services (BusActivation *activation,
1605 len = _dbus_hash_table_get_n_entries (activation->entries);
1606 retval = dbus_new (char *, len + 1);
1611 _dbus_hash_iter_init (activation->entries, &iter);
1613 while (_dbus_hash_iter_next (&iter))
1615 BusActivationEntry *entry = _dbus_hash_iter_get_value (&iter);
1617 retval[i] = _dbus_strdup (entry->name);
1618 if (retval[i] == NULL)
1633 for (j = 0; j < i; j++)
1634 dbus_free (retval[i]);
1641 #ifdef DBUS_BUILD_TESTS
1645 #define SERVICE_NAME_1 "MyService1"
1646 #define SERVICE_NAME_2 "MyService2"
1647 #define SERVICE_NAME_3 "MyService3"
1649 #define SERVICE_FILE_1 "service-1.service"
1650 #define SERVICE_FILE_2 "service-2.service"
1651 #define SERVICE_FILE_3 "service-3.service"
1654 test_create_service_file (DBusString *dir,
1655 const char *filename,
1659 DBusString file_name, full_path;
1661 dbus_bool_t ret_val;
1664 _dbus_string_init_const (&file_name, filename);
1666 if (!_dbus_string_init (&full_path))
1669 if (!_dbus_string_append (&full_path, _dbus_string_get_const_data (dir)) ||
1670 !_dbus_concat_dir_and_file (&full_path, &file_name))
1676 file = fopen (_dbus_string_get_const_data (&full_path), "w");
1683 fprintf (file, "[D-BUS Service]\nName=%s\nExec=%s\n", name, exec);
1687 _dbus_string_free (&full_path);
1692 test_remove_service_file (DBusString *dir, const char *filename)
1694 DBusString file_name, full_path;
1695 dbus_bool_t ret_val;
1699 _dbus_string_init_const (&file_name, filename);
1701 if (!_dbus_string_init (&full_path))
1704 if (!_dbus_string_append (&full_path, _dbus_string_get_const_data (dir)) ||
1705 !_dbus_concat_dir_and_file (&full_path, &file_name))
1711 if (!_dbus_delete_file (&full_path, NULL))
1718 _dbus_string_free (&full_path);
1723 test_remove_directory (DBusString *dir)
1726 DBusString filename, full_path;
1727 dbus_bool_t ret_val;
1731 if (!_dbus_string_init (&filename))
1734 if (!_dbus_string_init (&full_path))
1736 _dbus_string_free (&filename);
1740 iter = _dbus_directory_open (dir, NULL);
1747 while (_dbus_directory_get_next_file (iter, &filename, NULL))
1749 if (!test_remove_service_file (dir, _dbus_string_get_const_data (&filename)))
1755 _dbus_directory_close (iter);
1757 if (!_dbus_delete_directory (dir, NULL))
1764 _dbus_string_free (&filename);
1765 _dbus_string_free (&full_path);
1771 init_service_reload_test (DBusString *dir)
1775 if (!_dbus_stat (dir, &stat_buf, NULL))
1777 if (!_dbus_create_directory (dir, NULL))
1782 if (!test_remove_directory (dir))
1785 if (!_dbus_create_directory (dir, NULL))
1789 /* Create one initial file */
1790 if (!test_create_service_file (dir, SERVICE_FILE_1, SERVICE_NAME_1, "exec-1"))
1797 cleanup_service_reload_test (DBusString *dir)
1799 if (!test_remove_directory (dir))
1807 BusActivation *activation;
1808 const char *service_name;
1809 dbus_bool_t expecting_find;
1813 check_func (void *data)
1816 BusActivationEntry *entry;
1818 dbus_bool_t ret_val;
1823 dbus_error_init (&error);
1825 entry = activation_find_entry (d->activation, d->service_name, &error);
1828 if (dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY))
1834 if (d->expecting_find)
1838 dbus_error_free (&error);
1842 if (!d->expecting_find)
1850 do_test (const char *description, dbus_bool_t oom_test, CheckData *data)
1855 err = !_dbus_test_oom_handling (description, check_func, data);
1857 err = !check_func (data);
1860 _dbus_assert_not_reached ("Test failed");
1866 do_service_reload_test (DBusString *dir, dbus_bool_t oom_test)
1868 BusActivation *activation;
1870 DBusList *directories;
1874 _dbus_string_init_const (&address, "");
1876 if (!_dbus_list_append (&directories, _dbus_string_get_data (dir)))
1879 activation = bus_activation_new (NULL, &address, &directories, NULL);
1883 d.activation = activation;
1885 /* Check for existing service file */
1886 d.expecting_find = TRUE;
1887 d.service_name = SERVICE_NAME_1;
1889 if (!do_test ("Existing service file", oom_test, &d))
1892 /* Check for non-existing service file */
1893 d.expecting_find = FALSE;
1894 d.service_name = SERVICE_NAME_3;
1896 if (!do_test ("Nonexisting service file", oom_test, &d))
1899 /* Check for added service file */
1900 if (!test_create_service_file (dir, SERVICE_FILE_2, SERVICE_NAME_2, "exec-2"))
1903 d.expecting_find = TRUE;
1904 d.service_name = SERVICE_NAME_2;
1906 if (!do_test ("Added service file", oom_test, &d))
1909 /* Check for removed service file */
1910 if (!test_remove_service_file (dir, SERVICE_FILE_2))
1913 d.expecting_find = FALSE;
1914 d.service_name = SERVICE_FILE_2;
1916 if (!do_test ("Removed service file", oom_test, &d))
1919 /* Check for updated service file */
1921 _dbus_sleep_milliseconds (1000); /* Sleep a second to make sure the mtime is updated */
1923 if (!test_create_service_file (dir, SERVICE_FILE_1, SERVICE_NAME_3, "exec-3"))
1926 d.expecting_find = TRUE;
1927 d.service_name = SERVICE_NAME_3;
1929 if (!do_test ("Updated service file, part 1", oom_test, &d))
1932 d.expecting_find = FALSE;
1933 d.service_name = SERVICE_NAME_1;
1935 if (!do_test ("Updated service file, part 2", oom_test, &d))
1938 bus_activation_unref (activation);
1939 _dbus_list_clear (&directories);
1945 bus_activation_service_reload_test (const DBusString *test_data_dir)
1947 DBusString directory;
1949 if (!_dbus_string_init (&directory))
1952 if (!_dbus_string_append (&directory, _dbus_get_tmpdir()))
1954 if (!_dbus_stat (&directory, &stat_buf, NULL))
1956 if (!_dbus_create_directory (&directory, NULL))
1960 if (!_dbus_string_append (&directory, "/dbus-reload-test-") ||
1961 !_dbus_generate_random_ascii (&directory, 6))
1966 /* Do normal tests */
1967 if (!init_service_reload_test (&directory))
1968 _dbus_assert_not_reached ("could not initiate service reload test");
1970 if (!do_service_reload_test (&directory, FALSE))
1974 if (!init_service_reload_test (&directory))
1975 _dbus_assert_not_reached ("could not initiate service reload test");
1977 if (!do_service_reload_test (&directory, TRUE))
1980 /* Cleanup test directory */
1981 if (!cleanup_service_reload_test (&directory))
1984 _dbus_string_free (&directory);
1989 #endif /* DBUS_BUILD_TESTS */