summaryrefslogtreecommitdiffstats
path: root/bus/activation.c
blob: b4acd0f347d3a47064f93f67b39cb8c715871f3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
/* -*- mode: C; c-file-style: "gnu" -*- */
/* activation.c  Activation of services
 *
 * Copyright (C) 2003  CodeFactory AB
 *
 * Licensed under the Academic Free License version 1.2
 * 
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 */
#include "activation.h"
#include "desktop-file.h"
#include "utils.h"
#include <dbus/dbus-internals.h>
#include <dbus/dbus-hash.h>
#include <sys/types.h>
#include <dirent.h>
#include <errno.h>

#define DBUS_SERVICE_SECTION "D-BUS Service"
#define DBUS_SERVICE_NAME "Name"
#define DBUS_SERVICE_EXEC "Exec"

static DBusHashTable *activation_entries = NULL;

typedef struct
{
  char *name;
  char *exec;
} BusActivationEntry;

static DBusHashTable *pending_activations = NULL;
typedef struct
{
  char *service;
} BusPendingActivation;

static void
bus_activation_entry_free (BusActivationEntry *entry)
{
  if (!entry)
    return;
  
  dbus_free (entry->name);
  dbus_free (entry->exec);
}

static dbus_bool_t
add_desktop_file_entry (BusDesktopFile *desktop_file)
{
  char *name, *exec;
  BusActivationEntry *entry;
  
  if (!bus_desktop_file_get_string (desktop_file,
				    DBUS_SERVICE_SECTION,
				    DBUS_SERVICE_NAME,
				    &name))
    {
      _dbus_verbose ("No \""DBUS_SERVICE_NAME"\" key in .service file\n");
      return FALSE;
    }

  if (!bus_desktop_file_get_string (desktop_file,
				    DBUS_SERVICE_SECTION,
				    DBUS_SERVICE_EXEC,
				    &exec))
    {
      _dbus_verbose ("No \""DBUS_SERVICE_EXEC"\" key in .service file\n");
      
      dbus_free (name);
      return FALSE;
    }

  if (_dbus_hash_table_lookup_string (activation_entries, name))
    {
      _dbus_verbose ("Service %s already exists in activation entry list\n", name);
      dbus_free (name);
      dbus_free (exec);

      return FALSE;
    }
  
  BUS_HANDLE_OOM (entry = dbus_malloc0 (sizeof (BusActivationEntry)));
  entry->name = name;
  entry->exec = exec;

  BUS_HANDLE_OOM (_dbus_hash_table_insert_string (activation_entries, entry->name, entry));

  _dbus_verbose ("Added \"%s\" to list of services\n", entry->name);
  
  return TRUE;
}

static void
load_directory (const char *directory)
{
  DBusDirIter *iter;
  DBusString dir, filename;
  DBusResultCode result;

  _dbus_string_init_const (&dir, directory);
  
  iter = _dbus_directory_open (&dir, &result);
  if (iter == NULL)
    {
      _dbus_verbose ("Failed to open directory %s: &s\n", directory,
		     result);
    return;
    }

  BUS_HANDLE_OOM (_dbus_string_init (&filename, _DBUS_INT_MAX));
  
  /* Now read the files */
  while (_dbus_directory_get_next_file (iter, &filename, &result))
    {
      DBusString full_path;
      BusDesktopFile *desktop_file;
      DBusError error;
      
      if (!_dbus_string_ends_with_c_str (&filename, ".service"))
	{
          const char *filename_c;
          _dbus_string_get_const_data (&filename, &filename_c);
          _dbus_verbose ("Skipping non-.service file %s\n",
                         filename_c);
	  continue;
	}
      
      BUS_HANDLE_OOM (_dbus_string_init (&full_path, _DBUS_INT_MAX));
      BUS_HANDLE_OOM (_dbus_string_append (&full_path, directory));

      BUS_HANDLE_OOM (_dbus_concat_dir_and_file (&full_path, &filename));

      desktop_file = bus_desktop_file_load (&full_path, &error);

      if (!desktop_file)
	{
	  const char *full_path_c;

          _dbus_string_get_const_data (&full_path, &full_path_c);
	  
	  _dbus_verbose ("Could not load %s: %s\n", full_path_c,
			 error.message);
	  dbus_error_free (&error);
	  _dbus_string_free (&full_path);
	  continue;
	}

      if (!add_desktop_file_entry (desktop_file))
	{
	  const char *full_path_c;

          _dbus_string_get_const_data (&full_path, &full_path_c);
	  
	  _dbus_verbose ("Could not add %s to activation entry list.\n", full_path_c);
	}

      bus_desktop_file_free (desktop_file);
      _dbus_string_free (&full_path);
    }
}


void
bus_activation_init (const char **directories)
{
  int i;

  BUS_HANDLE_OOM (activation_entries = _dbus_hash_table_new (DBUS_HASH_STRING, NULL,
							     (DBusFreeFunction)bus_activation_entry_free));

  i = 0;

  /* Load service files */
  while (directories[i] != NULL)
    {
      load_directory (directories[i]);
      i++;
    }
}

dbus_bool_t
bus_activation_activate_service (const char  *service_name,
				 DBusError   *error)
{
  BusActivationEntry *entry;
  char *argv[2];
  
  entry = _dbus_hash_table_lookup_string (activation_entries, service_name);

  if (!entry)
    {
      dbus_set_error (error, DBUS_ERROR_ACTIVATE_SERVICE_NOT_FOUND,
		      "The service %s was not found in the activation entry list",
		      service_name);
      return FALSE;
    }

  /* Now try to spawn the process */
  argv[0] = entry->exec;
  argv[1] = NULL;

  if (!_dbus_spawn_async (argv, error))
    return FALSE;

  return TRUE;
}