- make gns compile
[oweals/gnunet.git] / src / arm / gnunet-arm.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file arm/gnunet-arm.c
23  * @brief arm for writing a tool
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet_arm_service.h"
28 #include "gnunet_client_lib.h"
29 #include "gnunet_constants.h"
30 #include "gnunet_getopt_lib.h"
31 #include "gnunet_program_lib.h"
32 #include "gnunet_time_lib.h"
33
34 /**
35  * Timeout for stopping services.  Long to give some services a real chance.
36  */
37 #define STOP_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 1)
38
39 /**
40  * Timeout for stopping ARM.  Extra-long since ARM needs to stop everyone else.
41  */
42 #define STOP_TIMEOUT_ARM GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 2)
43
44 /**
45  * Timeout for starting services, very short because of the strange way start works
46  * (by checking if running before starting, so really this time is always waited on
47  * startup (annoying)).
48  */
49 #define START_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 1)
50
51 /**
52  * Timeout for listing all running services.
53  */
54 #define LIST_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 2)
55
56 /**
57  * Set if we are to shutdown all services (including ARM).
58  */
59 static int end;
60
61 /**
62  * Set if we are to start default services (including ARM).
63  */
64 static int start;
65
66 /**
67  * Set if we are to stop/start default services (including ARM).
68  */
69 static int restart;
70
71 /**
72  * Set if we should delete configuration and temp directory on exit.
73  */
74 static int delete;
75
76 /**
77  * Set if we should not print status messages.
78  */
79 static int quiet;
80
81 /**
82  * Set if we should print a list of currently running services.
83  */
84 static int list;
85
86 /**
87  * Set to the name of a service to start.
88  */
89 static char *init;
90
91 /**
92  * Set to the name of a service to kill.
93  */
94 static char *term;
95
96 /**
97  * Set to the name of the config file used.
98  */
99 static const char *config_file;
100
101 /**
102  * Set to the directory where runtime files are stored.
103  */
104 static char *dir;
105
106 /**
107  * Final status code.
108  */
109 static int ret;
110
111 /**
112  * Connection with ARM.
113  */
114 static struct GNUNET_ARM_Handle *h;
115
116 /**
117  * Our configuration.
118  */
119 static const struct GNUNET_CONFIGURATION_Handle *cfg;
120
121 /**
122  * Processing stage that we are in.  Simple counter.
123  */
124 static unsigned int phase;
125
126 /**
127  * User defined timestamp for completing operations.
128  */
129 static struct GNUNET_TIME_Relative timeout;
130
131
132 /**
133  * Main continuation-passing-style loop.  Runs the various
134  * jobs that we've been asked to do in order.
135  *
136  * @param cls closure, unused
137  * @param tc context, unused
138  */
139 static void
140 cps_loop (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
141
142
143 /**
144  * Callback invoked with the status of the last operation.  Reports to the
145  * user and then runs the next phase in the FSM.
146  *
147  * @param cls pointer to "const char*" identifying service that was manipulated
148  * @param result result of the operation
149  */
150 static void
151 confirm_cb (void *cls, 
152             enum GNUNET_ARM_ProcessStatus result)
153 {
154   const char *service = cls;
155
156   switch (result)
157   {
158   case GNUNET_ARM_PROCESS_UNKNOWN:
159     FPRINTF (stderr, _("Service `%s' is unknown to ARM.\n"), service);
160     ret = 1;
161     break;
162   case GNUNET_ARM_PROCESS_DOWN:
163     if (quiet != GNUNET_YES)
164       FPRINTF (stdout, _("Service `%s' has been stopped.\n"), service);
165     break;
166   case GNUNET_ARM_PROCESS_ALREADY_RUNNING:
167     FPRINTF (stderr, _("Service `%s' was already running.\n"), service);
168     ret = 1;
169     break;
170   case GNUNET_ARM_PROCESS_STARTING:
171     if (quiet != GNUNET_YES)
172       FPRINTF (stdout, _("Service `%s' has been started.\n"), service);
173     break;
174   case GNUNET_ARM_PROCESS_ALREADY_STOPPING:
175     FPRINTF (stderr, _("Service `%s' was already being stopped.\n"), service);
176     ret = 1;
177     break;
178   case GNUNET_ARM_PROCESS_ALREADY_DOWN:
179     FPRINTF (stderr, _("Service `%s' was already not running.\n"), service);
180     ret = 1;
181     break;
182   case GNUNET_ARM_PROCESS_SHUTDOWN:
183     FPRINTF (stderr, "%s", _("Request ignored as ARM is shutting down.\n"));
184     ret = 1;
185     break;
186   case GNUNET_ARM_PROCESS_COMMUNICATION_ERROR:
187     FPRINTF (stderr, "%s", _("Error communicating with ARM service.\n"));
188     ret = 1;
189     break;
190   case GNUNET_ARM_PROCESS_COMMUNICATION_TIMEOUT:
191     FPRINTF (stderr, "%s",  _("Timeout communicating with ARM service.\n"));
192     ret = 1;
193     break;
194   case GNUNET_ARM_PROCESS_FAILURE:
195     FPRINTF (stderr, "%s",  _("Operation failed.\n"));
196     ret = 1;
197     break;
198   default:
199     FPRINTF (stderr, "%s",  _("Unknown response code from ARM.\n"));
200     break;
201   }
202   GNUNET_SCHEDULER_add_continuation (&cps_loop, NULL,
203                                      GNUNET_SCHEDULER_REASON_PREREQ_DONE);
204 }
205
206 /**
207  * Callback invoked with the list of running services.  
208  * Reports to the user and then runs the next phase in the FSM.
209  *
210  * @param cls currently not used
211  * @param result result of the operation
212  * @param count number of running services
213  * @param list copy of the list of running services
214  */
215 static void
216 list_cb (void *cls, int result, unsigned int count, const char *const*list)
217 {
218   unsigned int i;
219
220   if ( (result != GNUNET_YES) || (NULL == list) )
221   {
222     FPRINTF (stderr, "%s", _("Error communicating with ARM. ARM not running?\n"));
223     return;
224   }
225   FPRINTF (stdout, "%s", _("Running services:\n"));
226   for (i=0; i<count; i++)
227     FPRINTF (stdout, "%s\n", list[i]);
228 }
229
230 /**
231  * Main function that will be run by the scheduler.
232  *
233  * @param cls closure
234  * @param args remaining command-line arguments
235  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
236  * @param c configuration
237  */
238 static void
239 run (void *cls, char *const *args, const char *cfgfile,
240      const struct GNUNET_CONFIGURATION_Handle *c)
241 {
242   cfg = c;
243   config_file = cfgfile;
244   if (GNUNET_CONFIGURATION_get_value_string
245       (cfg, "PATHS", "SERVICEHOME", &dir) != GNUNET_OK)
246     {
247       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
248                   _
249                   ("Fatal configuration error: `%s' option in section `%s' missing.\n"),
250                   "SERVICEHOME", "PATHS");
251       return;
252     }
253   h = GNUNET_ARM_connect (cfg, NULL);
254   if (h == NULL)
255     {
256       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
257                   _("Fatal error initializing ARM API.\n"));
258       ret = 1;
259       return;
260     }
261   GNUNET_SCHEDULER_add_continuation (&cps_loop, NULL,
262                                      GNUNET_SCHEDULER_REASON_PREREQ_DONE);
263 }
264
265 /**
266  * Attempts to delete configuration file and SERVICEHOME
267  * on arm shutdown provided the end and delete options
268  * were specified when gnunet-arm was run.
269  */
270 static void
271 delete_files ()
272 {
273   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
274               "Will attempt to remove configuration file %s and service directory %s\n",
275               config_file, dir);
276
277   if (UNLINK (config_file) != 0)
278     {
279       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
280                   _("Failed to remove configuration file %s\n"), config_file);
281     }
282
283   if (GNUNET_DISK_directory_remove (dir) != GNUNET_OK)
284     {
285       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
286                   _("Failed to remove servicehome directory %s\n"), dir);
287
288     }
289 }
290
291 /**
292  * Main continuation-passing-style loop.  Runs the various
293  * jobs that we've been asked to do in order.
294  *
295  * @param cls closure, unused
296  * @param tc context, unused
297  */
298 static void
299 cps_loop (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
300 {
301   while (1)
302     {
303       switch (phase++)
304         {
305         case 0:
306           if (term != NULL)
307             {
308               GNUNET_ARM_stop_service (h, term,
309                                        (0 ==
310                                         timeout.rel_value) ? STOP_TIMEOUT :
311                                        timeout, &confirm_cb, term);
312               return;
313             }
314           break;
315         case 1:
316           if ((end) || (restart))
317             {
318               GNUNET_ARM_stop_service (h, "arm",
319                                        (0 ==
320                                         timeout.rel_value) ? STOP_TIMEOUT_ARM
321                                        : timeout, &confirm_cb, "arm");
322               return;
323             }
324           break;
325         case 2:
326           if (start)
327             {
328               GNUNET_ARM_start_service (h, "arm",
329                                         (0 ==
330                                          timeout.rel_value) ? START_TIMEOUT :
331                                         timeout, &confirm_cb, "arm");
332               return;
333             }
334           break;
335         case 3:
336           if (init != NULL)
337             {
338               GNUNET_ARM_start_service (h, init,
339                                         (0 ==
340                                          timeout.rel_value) ? START_TIMEOUT :
341                                         timeout, &confirm_cb, init);
342               return;
343             }
344           break;
345         case 4:
346           if (restart)
347             {
348               GNUNET_ARM_disconnect (h);
349               phase = 0;
350               end = 0;
351               start = 1;
352               restart = 0;
353               h = GNUNET_ARM_connect (cfg, NULL);
354               if (NULL == h)
355                 {
356                   GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
357                               _("Fatal error initializing ARM API.\n"));
358                   ret = 1;
359                   return;
360                 }
361               GNUNET_SCHEDULER_add_now (&cps_loop, NULL);
362               return;
363             }
364           break;
365         case 5:
366           if (list) {
367               GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
368               "Going to list all running services controlled by ARM.\n");
369   
370               if (NULL == h) 
371               {
372                GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
373                               _("Fatal error initializing ARM API.\n"));
374                return;
375               }
376               
377               GNUNET_ARM_list_running_services (h, 
378                                                 (0 == 
379                                                  timeout.rel_value) ? LIST_TIMEOUT : 
380                                                  timeout, &list_cb, NULL);
381             return;
382           }
383           /* Fall through */
384         default:                /* last phase */
385           GNUNET_ARM_disconnect (h);
386           if ((end == GNUNET_YES) && (delete == GNUNET_YES))
387             delete_files ();
388           return;
389         }
390     }
391 }
392
393
394 /**
395  * The main function to obtain arm from gnunetd.
396  *
397  * @param argc number of arguments from the command line
398  * @param argv command line arguments
399  * @return 0 ok, 1 on error
400  */
401 int
402 main (int argc, char *const *argv)
403 {
404   static unsigned long long temp_timeout_ms;
405
406   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
407     {'e', "end", NULL, gettext_noop ("stop all GNUnet services"),
408      GNUNET_NO, &GNUNET_GETOPT_set_one, &end},
409     {'i', "init", "SERVICE", gettext_noop ("start a particular service"),
410      GNUNET_YES, &GNUNET_GETOPT_set_string, &init},
411     {'k', "kill", "SERVICE", gettext_noop ("stop a particular service"),
412      GNUNET_YES, &GNUNET_GETOPT_set_string, &term},
413     {'s', "start", NULL, gettext_noop ("start all GNUnet default services"),
414      GNUNET_NO, &GNUNET_GETOPT_set_one, &start},
415     {'r', "restart", NULL,
416      gettext_noop ("stop and start all GNUnet default services"),
417      GNUNET_NO, &GNUNET_GETOPT_set_one, &restart},
418     {'d', "delete", NULL,
419      gettext_noop ("delete config file and directory on exit"),
420      GNUNET_NO, &GNUNET_GETOPT_set_one, &delete},
421     {'q', "quiet", NULL, gettext_noop ("don't print status messages"),
422      GNUNET_NO, &GNUNET_GETOPT_set_one, &quiet},
423     {'T', "timeout", NULL,
424      gettext_noop ("timeout for completing current operation"),
425      GNUNET_YES, &GNUNET_GETOPT_set_ulong, &temp_timeout_ms},
426     {'I', "info", NULL, gettext_noop ("List currently running services"),
427      GNUNET_NO, &GNUNET_GETOPT_set_one, &list},
428     GNUNET_GETOPT_OPTION_END
429   };
430
431   if (temp_timeout_ms > 0)
432     timeout.rel_value = temp_timeout_ms;
433
434   if (GNUNET_OK ==
435       GNUNET_PROGRAM_run (argc, argv, "gnunet-arm",
436                           gettext_noop
437                           ("Control services and the Automated Restart Manager (ARM)"),
438                           options, &run, NULL))
439     {
440       return ret;
441     }
442
443   return 1;
444 }
445
446 /* end of gnunet-arm.c */