af85372d8ccfb6a17720a1f673aca95111199968
[oweals/gnunet.git] / src / arm / gnunet-arm.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2009, 2012, 2013 GNUnet e.V.
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., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, 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_constants.h"
29 #include "gnunet_util_lib.h"
30
31 /**
32  * Timeout for stopping services.  Long to give some services a real chance.
33  */
34 #define STOP_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 1)
35
36 /**
37  * Timeout for stopping ARM.  Extra-long since ARM needs to stop everyone else.
38  */
39 #define STOP_TIMEOUT_ARM GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 2)
40
41 /**
42  * Timeout for starting services, very short because of the strange way start works
43  * (by checking if running before starting, so really this time is always waited on
44  * startup (annoying)).
45  */
46 #define START_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 1)
47
48 /**
49  * Timeout for listing all running services.
50  */
51 #define LIST_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 2)
52
53 /**
54  * Set if we are to shutdown all services (including ARM).
55  */
56 static int end;
57
58 /**
59  * Set if we are to start default services (including ARM).
60  */
61 static int start;
62
63 /**
64  * Set if we are to stop/start default services (including ARM).
65  */
66 static int restart;
67
68 /**
69  * Set if we should delete configuration and temp directory on exit.
70  */
71 static int delete;
72
73 /**
74  * Set if we should not print status messages.
75  */
76 static int quiet;
77
78 /**
79  * Monitor ARM activity.
80  */
81 static int monitor;
82
83 /**
84  * Set if we should print a list of currently running services.
85  */
86 static int list;
87
88 /**
89  * Set to the name of a service to start.
90  */
91 static char *init;
92
93 /**
94  * Set to the name of a service to kill.
95  */
96 static char *term;
97
98 /**
99  * Set to the name of the config file used.
100  */
101 static const char *config_file;
102
103 /**
104  * Set to the directory where runtime files are stored.
105  */
106 static char *dir;
107
108 /**
109  * Final status code.
110  */
111 static int ret;
112
113 /**
114  * Connection with ARM.
115  */
116 static struct GNUNET_ARM_Handle *h;
117
118 /**
119  * Monitor connection with ARM.
120  */
121 static struct GNUNET_ARM_MonitorHandle *m;
122
123 /**
124  * Our configuration.
125  */
126 static struct GNUNET_CONFIGURATION_Handle *cfg;
127
128 /**
129  * Processing stage that we are in.  Simple counter.
130  */
131 static unsigned int phase;
132
133 /**
134  * User defined timestamp for completing operations.
135  */
136 static struct GNUNET_TIME_Relative timeout;
137
138 /**
139  * Do we want to give our stdout to gnunet-service-arm?
140  */
141 static unsigned int no_stdout;
142
143 /**
144  * Do we want to give our stderr to gnunet-service-arm?
145  */
146 static unsigned int no_stderr;
147
148
149 /**
150  * Attempts to delete configuration file and GNUNET_HOME
151  * on ARM shutdown provided the end and delete options
152  * were specified when gnunet-arm was run.
153  */
154 static void
155 delete_files ()
156 {
157   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
158               "Will attempt to remove configuration file %s and service directory %s\n",
159               config_file, dir);
160
161   if (0 != UNLINK (config_file))
162   {
163     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
164                 _("Failed to remove configuration file %s\n"),
165                 config_file);
166   }
167   if (GNUNET_OK != GNUNET_DISK_directory_remove (dir))
168   {
169     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
170                 _("Failed to remove servicehome directory %s\n"),
171                 dir);
172
173   }
174 }
175
176
177 /**
178  * Main continuation-passing-style loop.  Runs the various
179  * jobs that we've been asked to do in order.
180  *
181  * @param cls closure, unused
182  */
183 static void
184 shutdown_task (void *cls)
185 {
186   if (NULL != h)
187   {
188     GNUNET_ARM_disconnect_and_free (h);
189     h = NULL;
190   }
191   if (NULL != m)
192   {
193     GNUNET_ARM_monitor_disconnect_and_free (m);
194     m = NULL;
195   }
196   if ((GNUNET_YES == end) && (GNUNET_YES == delete))
197     delete_files ();
198   GNUNET_CONFIGURATION_destroy (cfg);
199   cfg = NULL;
200 }
201
202
203 /**
204  * Returns a string interpretation of 'rs'
205  *
206  * @param rs the request status from ARM
207  * @return a string interpretation of the request status
208  */
209 static const char *
210 req_string (enum GNUNET_ARM_RequestStatus rs)
211 {
212   switch (rs)
213   {
214   case GNUNET_ARM_REQUEST_SENT_OK:
215     return _("Message was sent successfully");
216   case GNUNET_ARM_REQUEST_CONFIGURATION_ERROR:
217     return _("Misconfiguration (can not connect to the ARM service)");
218   case GNUNET_ARM_REQUEST_DISCONNECTED:
219     return _("We disconnected from ARM before we could send a request");
220   case GNUNET_ARM_REQUEST_BUSY:
221     return _("ARM API is busy");
222   case GNUNET_ARM_REQUEST_TOO_LONG:
223     return _("Request does not fit into a message");
224   case GNUNET_ARM_REQUEST_TIMEOUT:
225     return _("Request timed out");
226   }
227   return _("Unknown request status");
228 }
229
230
231 /**
232  * Returns a string interpretation of the 'result'
233  *
234  * @param result the arm result
235  * @return a string interpretation
236  */
237 static const char *
238 ret_string (enum GNUNET_ARM_Result result)
239 {
240   switch (result)
241   {
242   case GNUNET_ARM_RESULT_STOPPED:
243     return _("%s is stopped");
244   case GNUNET_ARM_RESULT_STARTING:
245     return _("%s is starting");
246   case GNUNET_ARM_RESULT_STOPPING:
247     return _("%s is stopping");
248   case GNUNET_ARM_RESULT_IS_STARTING_ALREADY:
249     return _("%s is starting already");
250   case GNUNET_ARM_RESULT_IS_STOPPING_ALREADY:
251     return _("%s is stopping already");
252   case GNUNET_ARM_RESULT_IS_STARTED_ALREADY:
253     return _("%s is started already");
254   case GNUNET_ARM_RESULT_IS_STOPPED_ALREADY:
255     return _("%s is stopped already");
256   case GNUNET_ARM_RESULT_IS_NOT_KNOWN:
257     return _("%s service is not known to ARM");
258   case GNUNET_ARM_RESULT_START_FAILED:
259     return _("%s service failed to start");
260   case GNUNET_ARM_RESULT_IN_SHUTDOWN:
261     return _("%s service cannot be started because ARM is shutting down");
262   }
263   return _("%.s Unknown result code.");
264 }
265
266
267 /**
268  * Main task that runs our various operations in order.
269  *
270  * @param cls closure
271  */
272 static void
273 action_loop (void *cls);
274
275
276 /**
277  * Function called whenever we connect to or disconnect from ARM.
278  * Termiantes the process if we fail to connect to the service on
279  * our first attempt.
280  *
281  * @param cls closure
282  * @param connected GNUNET_YES if connected, GNUNET_NO if disconnected,
283  *                  GNUNET_SYSERR on error.
284  */
285 static void
286 conn_status (void *cls,
287              int connected)
288 {
289   static int once;
290
291   if ( (GNUNET_SYSERR == connected) &&
292        (0 == once) )
293   {
294     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
295                 _("Fatal error initializing ARM API.\n"));
296     GNUNET_SCHEDULER_shutdown ();
297     return;
298   }
299   once = 1;
300 }
301
302
303 /**
304  * We have requested ARM to be started, this function
305  * is called with the result of the operation.  Informs the
306  * use of the result; on success, we continue with the event
307  * loop, on failure we terminate the process.
308  *
309  * @param cls closure unused
310  * @param rs what happened to our request
311  * @param service name of the service we tried to start ("arm")
312  * @param result if the request was processed, this is the result
313  *               according to ARM
314  */
315 static void
316 start_callback (void *cls,
317                 enum GNUNET_ARM_RequestStatus rs, const char *service,
318                 enum GNUNET_ARM_Result result)
319 {
320   char *msg;
321
322   if (GNUNET_ARM_REQUEST_SENT_OK != rs)
323   {
324     GNUNET_asprintf (&msg, "%s", _("Failed to start the ARM service: %s\n"));
325     FPRINTF (stdout, msg, req_string (rs));
326     GNUNET_free (msg);
327     GNUNET_SCHEDULER_shutdown ();
328     return;
329   }
330   if ( (GNUNET_ARM_RESULT_STARTING != result) &&
331        (GNUNET_ARM_RESULT_IS_STARTED_ALREADY != result) )
332   {
333     GNUNET_asprintf (&msg, "%s", _("Failed to start the ARM service: %s\n"));
334     FPRINTF (stdout, msg, ret_string (result));
335     GNUNET_free (msg);
336     GNUNET_SCHEDULER_shutdown ();
337     return;
338   }
339   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "ARM service [re]start successful\n");
340   start = 0;
341   GNUNET_SCHEDULER_add_now (action_loop, NULL);
342 }
343
344
345 /**
346  * We have requested ARM to be stopped, this function
347  * is called with the result of the operation.  Informs the
348  * use of the result; on success, we continue with the event
349  * loop, on failure we terminate the process.
350  *
351  * @param cls closure unused
352  * @param rs what happened to our request
353  * @param service name of the service we tried to start ("arm")
354  * @param result if the request was processed, this is the result
355  *               according to ARM
356  */
357 static void
358 stop_callback (void *cls,
359                enum GNUNET_ARM_RequestStatus rs, const char *service,
360                enum GNUNET_ARM_Result result)
361 {
362   char *msg;
363
364   if (GNUNET_ARM_REQUEST_SENT_OK != rs)
365   {
366     GNUNET_asprintf (&msg, "%s",
367                      _("Failed to send a stop request to the ARM service: %s\n"));
368     FPRINTF (stdout, msg, req_string (rs));
369     GNUNET_free (msg);
370     GNUNET_SCHEDULER_shutdown ();
371     return;
372   }
373   if ((GNUNET_ARM_RESULT_STOPPING != result) &&
374       (GNUNET_ARM_RESULT_STOPPED != result) &&
375       (GNUNET_ARM_RESULT_IS_STOPPED_ALREADY != result))
376   {
377     GNUNET_asprintf (&msg, "%s", _("Failed to stop the ARM service: %s\n"));
378     FPRINTF (stdout, msg, ret_string (result));
379     GNUNET_free (msg);
380     GNUNET_SCHEDULER_shutdown ();
381     return;
382   }
383   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
384               "ARM service shutdown successful\n");
385   end = 0;
386   if (restart)
387   {
388     restart = 0;
389     start = 1;
390     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
391                 "Initiating an ARM restart\n");
392   }
393   GNUNET_SCHEDULER_add_now (&action_loop, NULL);
394 }
395
396
397 /**
398  * We have requested a service to be started, this function
399  * is called with the result of the operation.  Informs the
400  * use of the result; on success, we continue with the event
401  * loop, on failure we terminate the process.
402  *
403  * @param cls closure unused
404  * @param rs what happened to our request
405  * @param service name of the service we tried to start
406  * @param result if the request was processed, this is the result
407  *               according to ARM
408  */
409 static void
410 init_callback (void *cls,
411                enum GNUNET_ARM_RequestStatus rs, const char *service,
412                enum GNUNET_ARM_Result result)
413 {
414   char *msg;
415
416   if (GNUNET_ARM_REQUEST_SENT_OK != rs)
417   {
418     GNUNET_asprintf (&msg,
419                      _("Failed to send a request to start the `%s' service: %%s\n"),
420                      init);
421     FPRINTF (stdout, msg, req_string (rs));
422     GNUNET_free (msg);
423     GNUNET_SCHEDULER_shutdown ();
424     return;
425   }
426   if ((GNUNET_ARM_RESULT_STARTING != result) &&
427       (GNUNET_ARM_RESULT_IS_STARTED_ALREADY != result))
428   {
429     GNUNET_asprintf (&msg, _("Failed to start the `%s' service: %s\n"),
430                      init, ret_string (result));
431     FPRINTF (stdout, msg, service);
432     GNUNET_free (msg);
433     GNUNET_SCHEDULER_shutdown ();
434     return;
435   }
436   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
437               "Service %s [re]started successfully\n",
438               init);
439   GNUNET_free (init);
440   init = NULL;
441   GNUNET_SCHEDULER_add_now (&action_loop, NULL);
442 }
443
444
445 /**
446  * We have requested a service to be stopped, this function
447  * is called with the result of the operation.  Informs the
448  * use of the result; on success, we continue with the event
449  * loop, on failure we terminate the process.
450  *
451  * @param cls closure unused
452  * @param rs what happened to our request
453  * @param service name of the service we tried to start
454  * @param result if the request was processed, this is the result
455  *               according to ARM
456  */
457 static void
458 term_callback (void *cls,
459                enum GNUNET_ARM_RequestStatus rs, const char *service,
460                enum GNUNET_ARM_Result result)
461 {
462   char *msg;
463   if (GNUNET_ARM_REQUEST_SENT_OK != rs)
464   {
465     GNUNET_asprintf (&msg,
466                      _("Failed to send a request to kill the `%s' service: %%s\n"),
467                      term);
468     FPRINTF (stdout, msg, req_string (rs));
469     GNUNET_free (msg);
470     GNUNET_SCHEDULER_shutdown ();
471     return;
472   }
473   if ((GNUNET_ARM_RESULT_STOPPED != result) &&
474       (GNUNET_ARM_RESULT_IS_STOPPED_ALREADY != result))
475   {
476     GNUNET_asprintf (&msg,
477                      _("Failed to kill the `%s' service: %s\n"),
478                      term, ret_string (result));
479     FPRINTF (stdout, msg, service);
480     GNUNET_free (msg);
481     GNUNET_SCHEDULER_shutdown ();
482     return;
483   }
484
485   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
486               "Service %s stopped successfully\n",
487               term);
488   GNUNET_free (term);
489   term = NULL;
490   GNUNET_SCHEDULER_add_now (&action_loop, NULL);
491 }
492
493
494 /**
495  * Function called with the list of running services. Prints
496  * the list to stdout, then starts the event loop again.
497  * Prints an error message and terminates the process on errors.
498  *
499  * @param cls closure (unused)
500  * @param rs request status (success, failure, etc.)
501  * @param count number of services in the list
502  * @param list list of services that are running
503  */
504 static void
505 list_callback (void *cls,
506                enum GNUNET_ARM_RequestStatus rs, unsigned int count,
507                const char *const*list)
508 {
509   unsigned int i;
510
511   if (GNUNET_ARM_REQUEST_SENT_OK != rs)
512   {
513     char *msg;
514
515     GNUNET_asprintf (&msg, "%s", _("Failed to request a list of services: %s\n"));
516     FPRINTF (stdout, msg, req_string (rs));
517     GNUNET_free (msg);
518     ret = 3;
519     GNUNET_SCHEDULER_shutdown ();
520   }
521   if (NULL == list)
522   {
523     FPRINTF (stderr, "%s", _("Error communicating with ARM. ARM not running?\n"));
524     GNUNET_SCHEDULER_shutdown ();
525     ret = 3;
526     return;
527   }
528   FPRINTF (stdout, "%s", _("Running services:\n"));
529   for (i = 0; i < count; i++)
530     FPRINTF (stdout, "%s\n", list[i]);
531   GNUNET_SCHEDULER_add_now (&action_loop, NULL);
532 }
533
534
535 /**
536  * Main action loop.  Runs the various jobs that we've been asked to
537  * do, in order.
538  *
539  * @param cls closure, unused
540  */
541 static void
542 action_loop (void *cls)
543 {
544   const struct GNUNET_SCHEDULER_TaskContext *tc;
545
546   tc = GNUNET_SCHEDULER_get_task_context ();
547   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
548     return;
549   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Running requested actions\n");
550   while (1)
551   {
552     switch (phase++)
553     {
554     case 0:
555       if (NULL != term)
556       {
557         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Termination action\n");
558         GNUNET_ARM_request_service_stop (h, term,
559                                          (0 == timeout.rel_value_us) ? STOP_TIMEOUT : timeout,
560                                          &term_callback, NULL);
561         return;
562       }
563       break;
564     case 1:
565       if (end || restart)
566       {
567         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "End action\n");
568         GNUNET_ARM_request_service_stop (h, "arm",
569                                          (0 == timeout.rel_value_us) ? STOP_TIMEOUT_ARM : timeout,
570                                          &stop_callback, NULL);
571         return;
572       }
573       break;
574     case 2:
575       if (start)
576       {
577         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Start action\n");
578         GNUNET_ARM_request_service_start (h, "arm",
579             (no_stdout ? 0 : GNUNET_OS_INHERIT_STD_OUT) |
580             (no_stderr ? 0 : GNUNET_OS_INHERIT_STD_ERR),
581             (0 == timeout.rel_value_us) ? START_TIMEOUT: timeout,
582             start_callback, NULL);
583         return;
584       }
585       break;
586     case 3:
587       if (NULL != init)
588       {
589         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Initialization action\n");
590         GNUNET_ARM_request_service_start (h, init, GNUNET_OS_INHERIT_STD_NONE,
591                                           (0 == timeout.rel_value_us) ? STOP_TIMEOUT : timeout,
592                                           &init_callback, NULL);
593         return;
594       }
595       break;
596     case 4:
597       if (list)
598       {
599         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
600                     "Going to list all running services controlled by ARM.\n");
601         GNUNET_ARM_request_service_list (h,
602                                          (0 == timeout.rel_value_us) ? LIST_TIMEOUT : timeout,
603                                          &list_callback, &list);
604         return;
605       }
606       break;
607     case 5:
608       if (monitor)
609         {
610           if (! quiet)
611             fprintf (stderr,
612                      _("Now only monitoring, press CTRL-C to stop.\n"));
613           quiet = 0; /* does not make sense to stay quiet in monitor mode at this time */
614           return; /* done with tasks, just monitor */
615         }
616       break;
617     default:            /* last phase */
618       GNUNET_SCHEDULER_shutdown ();
619       return;
620     }
621   }
622 }
623
624
625 /**
626  * Function called when a service starts or stops.
627  *
628  * @param cls closure
629  * @param service service name
630  * @param status status of the service
631  */
632 static void
633 srv_status (void *cls,
634             const char *service, enum GNUNET_ARM_ServiceStatus status)
635 {
636   const char *msg;
637
638   switch (status)
639   {
640   case GNUNET_ARM_SERVICE_MONITORING_STARTED:
641     return; /* this should be done silently */
642   case GNUNET_ARM_SERVICE_STOPPED:
643     msg = _("Stopped %s.\n");
644     break;
645   case GNUNET_ARM_SERVICE_STARTING:
646     msg = _("Starting %s...\n");
647     break;
648   case GNUNET_ARM_SERVICE_STOPPING:
649     msg = _("Stopping %s...\n");
650     break;
651   default:
652     msg = NULL;
653     break;
654   }
655   if (! quiet)
656     {
657       if (NULL != msg)
658         FPRINTF (stderr, msg, service);
659       else
660         FPRINTF (stderr, _("Unknown status %u for service %s.\n"), status, service);
661     }
662   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got service %s status %d\n", service, (int) status);
663 }
664
665
666 /**
667  * Main function that will be run by the scheduler.
668  *
669  * @param cls closure
670  * @param args remaining command-line arguments
671  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
672  * @param c configuration
673  */
674 static void
675 run (void *cls,
676      char *const *args,
677      const char *cfgfile,
678      const struct GNUNET_CONFIGURATION_Handle *c)
679 {
680   char *armconfig;
681
682   cfg = GNUNET_CONFIGURATION_dup (c);
683   config_file = cfgfile;
684   if (GNUNET_OK !=
685       GNUNET_CONFIGURATION_get_value_string (cfg, "PATHS", "GNUNET_HOME", &dir))
686   {
687     GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
688                                "PATHS", "GNUNET_HOME");
689     return;
690   }
691   if (NULL != cfgfile)
692   {
693     if (GNUNET_OK !=
694         GNUNET_CONFIGURATION_get_value_filename (cfg, "arm", "CONFIG",
695                                                  &armconfig))
696     {
697       GNUNET_CONFIGURATION_set_value_string (cfg, "arm", "CONFIG",
698                                              cfgfile);
699     }
700     else
701       GNUNET_free (armconfig);
702   }
703   if (NULL == (h = GNUNET_ARM_connect (cfg, &conn_status, NULL)))
704     return;
705   if (monitor)
706     m = GNUNET_ARM_monitor (cfg, &srv_status, NULL);
707   GNUNET_SCHEDULER_add_now (&action_loop, NULL);
708   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
709                                 &shutdown_task, NULL);
710 }
711
712
713 /**
714  * The main function to obtain arm from gnunetd.
715  *
716  * @param argc number of arguments from the command line
717  * @param argv command line arguments
718  * @return 0 ok, 1 on error
719  */
720 int
721 main (int argc, char *const *argv)
722 {
723   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
724     {'e', "end", NULL, gettext_noop ("stop all GNUnet services"),
725      GNUNET_NO, &GNUNET_GETOPT_set_one, &end},
726     {'i', "init", "SERVICE", gettext_noop ("start a particular service"),
727      GNUNET_YES, &GNUNET_GETOPT_set_string, &init},
728     {'k', "kill", "SERVICE", gettext_noop ("stop a particular service"),
729      GNUNET_YES, &GNUNET_GETOPT_set_string, &term},
730     {'s', "start", NULL, gettext_noop ("start all GNUnet default services"),
731      GNUNET_NO, &GNUNET_GETOPT_set_one, &start},
732     {'r', "restart", NULL,
733      gettext_noop ("stop and start all GNUnet default services"),
734      GNUNET_NO, &GNUNET_GETOPT_set_one, &restart},
735     {'d', "delete", NULL,
736      gettext_noop ("delete config file and directory on exit"),
737      GNUNET_NO, &GNUNET_GETOPT_set_one, &delete},
738     {'m', "monitor", NULL,
739      gettext_noop ("monitor ARM activities"),
740      GNUNET_NO, &GNUNET_GETOPT_set_one, &monitor},
741     {'q', "quiet", NULL, gettext_noop ("don't print status messages"),
742      GNUNET_NO, &GNUNET_GETOPT_set_one, &quiet},
743     {'T', "timeout", "DELAY",
744      gettext_noop ("exit with error status if operation does not finish after DELAY"),
745      GNUNET_YES, &GNUNET_GETOPT_set_relative_time, &timeout},
746     {'I', "info", NULL, gettext_noop ("list currently running services"),
747      GNUNET_NO, &GNUNET_GETOPT_set_one, &list},
748     {'O', "no-stdout", NULL, gettext_noop ("don't let gnunet-service-arm inherit standard output"),
749      GNUNET_NO, &GNUNET_GETOPT_set_one, &no_stdout},
750     {'E', "no-stderr", NULL, gettext_noop ("don't let gnunet-service-arm inherit standard error"),
751      GNUNET_NO, &GNUNET_GETOPT_set_one, &no_stderr},
752     GNUNET_GETOPT_OPTION_END
753   };
754
755   if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv))
756     return 2;
757
758   if (GNUNET_OK ==
759       GNUNET_PROGRAM_run (argc, argv, "gnunet-arm",
760                           gettext_noop
761                           ("Control services and the Automated Restart Manager (ARM)"),
762                           options, &run, NULL))
763     {
764       GNUNET_free ((void *) argv);
765       return ret;
766     }
767   GNUNET_free ((void*) argv);
768   return 1;
769 }
770
771 /* end of gnunet-arm.c */