remove protocol violation
[oweals/gnunet.git] / src / arm / gnunet-service-arm.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 2010, 2011 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-service-arm.c
23  * @brief the automated restart manager service
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet_util_lib.h"
28 #include "gnunet_arm_service.h"
29 #include "gnunet_protocols.h"
30 #include "arm.h"
31
32 /**
33  * How many messages do we queue up at most for optional
34  * notifications to a client?  (this can cause notifications
35  * about outgoing messages to be dropped).
36  */
37 #define MAX_NOTIFY_QUEUE 1024
38
39
40 /**
41  * List of our services.
42  */
43 struct ServiceList;
44
45
46 /**
47  * Record with information about a listen socket we have open.
48  */
49 struct ServiceListeningInfo
50 {
51   /**
52    * This is a linked list.
53    */
54   struct ServiceListeningInfo *next;
55
56   /**
57    * This is a linked list.
58    */
59   struct ServiceListeningInfo *prev;
60
61   /**
62    * Address this socket is listening on.
63    */
64   struct sockaddr *service_addr;
65
66   /**
67    * Service this listen socket is for.
68    */
69   struct ServiceList *sl;
70
71   /**
72    * Number of bytes in 'service_addr'
73    */
74   socklen_t service_addr_len;
75
76   /**
77    * Our listening socket.
78    */
79   struct GNUNET_NETWORK_Handle *listen_socket;
80
81   /**
82    * Task doing the accepting.
83    */
84   GNUNET_SCHEDULER_TaskIdentifier accept_task;
85
86 };
87
88
89 /**
90  * List of our services.
91  */
92 struct ServiceList
93 {
94   /**
95    * This is a doubly-linked list.
96    */
97   struct ServiceList *next;
98
99   /**
100    * This is a doubly-linked list.
101    */
102   struct ServiceList *prev;
103
104   /**
105    * Linked list of listen sockets associated with this service.
106    */
107   struct ServiceListeningInfo *listen_head;
108
109   /**
110    * Linked list of listen sockets associated with this service.
111    */
112   struct ServiceListeningInfo *listen_tail;
113
114   /**
115    * Name of the service.
116    */
117   char *name;
118
119   /**
120    * Name of the binary used.
121    */
122   char *binary;
123
124   /**
125    * Name of the configuration file used.
126    */
127   char *config;
128
129   /**
130    * Client to notify upon kill completion (waitpid), NULL
131    * if we should simply restart the process.
132    */
133   struct GNUNET_SERVER_Client *killing_client;
134
135   /**
136    * ID of the request that killed the service (for reporting back).
137    */
138   uint64_t killing_client_request_id;
139
140   /**
141    * Process structure pointer of the child.
142    */
143   struct GNUNET_OS_Process *proc;
144
145   /**
146    * Process exponential backoff time
147    */
148   struct GNUNET_TIME_Relative backoff;
149
150   /**
151    * Absolute time at which the process is scheduled to restart in case of death
152    */
153   struct GNUNET_TIME_Absolute restart_at;
154
155   /**
156    * Time we asked the service to shut down (used to calculate time it took
157    * the service to terminate).
158    */
159   struct GNUNET_TIME_Absolute killed_at;
160
161   /**
162    * Is this service to be started by default (or did a client tell us explicitly
163    * to start it)?  #GNUNET_NO if the service is started only upon 'accept' on a
164    * listen socket or possibly explicitly by a client changing the value.
165    */
166   int is_default;
167
168   /**
169    * Should we use pipes to signal this process? (YES for Java binaries and if we
170    * are on Windoze).
171    */
172   int pipe_control;
173 };
174
175 /**
176  * List of running services.
177  */
178 static struct ServiceList *running_head;
179
180 /**
181  * List of running services.
182  */
183 static struct ServiceList *running_tail;
184
185 /**
186  * Our configuration
187  */
188 static const struct GNUNET_CONFIGURATION_Handle *cfg;
189
190 /**
191  * Command to prepend to each actual command.
192  */
193 static char *prefix_command;
194
195 /**
196  * Option to append to each actual command.
197  */
198 static char *final_option;
199
200 /**
201  * ID of task called whenever we get a SIGCHILD.
202  */
203 static GNUNET_SCHEDULER_TaskIdentifier child_death_task;
204
205 /**
206  * ID of task called whenever the timeout for restarting a child
207  * expires.
208  */
209 static GNUNET_SCHEDULER_TaskIdentifier child_restart_task;
210
211 /**
212  * Pipe used to communicate shutdown via signal.
213  */
214 static struct GNUNET_DISK_PipeHandle *sigpipe;
215
216 /**
217  * Are we in shutdown mode?
218  */
219 static int in_shutdown;
220
221 /**
222  * Are we starting user services?
223  */
224 static int start_user = GNUNET_YES;
225
226 /**
227  * Are we starting system services?
228  */
229 static int start_system = GNUNET_YES;
230
231 /**
232  * Handle to our server instance.  Our server is a bit special in that
233  * its service is not immediately stopped once we get a shutdown
234  * request (since we need to continue service until all of our child
235  * processes are dead).  This handle is used to shut down the server
236  * (and thus trigger process termination) once all child processes are
237  * also dead.  A special option in the ARM configuration modifies the
238  * behaviour of the service implementation to not do the shutdown
239  * immediately.
240  */
241 static struct GNUNET_SERVER_Handle *server;
242
243 /**
244  * Context for notifications we need to send to our clients.
245  */
246 static struct GNUNET_SERVER_NotificationContext *notifier;
247
248
249 /**
250  * Transmit a status result message.
251  *
252  * @param cls a `unit16_t *` with message type
253  * @param size number of bytes available in @a buf
254  * @param buf where to copy the message, NULL on error
255  * @return number of bytes copied to @a buf
256  */
257 static size_t
258 write_result (void *cls, size_t size, void *buf)
259 {
260   struct GNUNET_ARM_ResultMessage *msg = cls;
261   size_t msize;
262
263   if (NULL == buf)
264   {
265     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
266                 _("Could not send status result to client\n"));
267     GNUNET_free (msg);
268     return 0;                   /* error, not much we can do */
269   }
270   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
271               "Sending status response %u to client\n",
272               (unsigned int) msg->result);
273   msize = msg->arm_msg.header.size;
274   GNUNET_assert (size >= msize);
275   msg->arm_msg.header.size = htons (msg->arm_msg.header.size);
276   msg->arm_msg.header.type = htons (msg->arm_msg.header.type);
277   msg->result = htonl (msg->result);
278   msg->arm_msg.request_id = GNUNET_htonll (msg->arm_msg.request_id);
279   memcpy (buf, msg, msize);
280   GNUNET_free (msg);
281   return msize;
282 }
283
284
285 /**
286  * Transmit the list of running services.
287  *
288  * @param cls pointer to `struct GNUNET_ARM_ListResultMessage` with the message
289  * @param size number of bytes available in @a buf
290  * @param buf where to copy the message, NULL on error
291  * @return number of bytes copied to @a buf
292  */
293 static size_t
294 write_list_result (void *cls, size_t size, void *buf)
295 {
296   struct GNUNET_ARM_ListResultMessage *msg = cls;
297   size_t rslt_size;
298
299   if (NULL == buf)
300   {
301     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
302                 _("Could not send list result to client\n"));
303     GNUNET_free (msg);
304     return 0;                   /* error, not much we can do */
305   }
306
307   rslt_size = msg->arm_msg.header.size;
308   GNUNET_assert (size >= rslt_size);
309   msg->arm_msg.header.size = htons (msg->arm_msg.header.size);
310   msg->arm_msg.header.type = htons (msg->arm_msg.header.type);
311   msg->arm_msg.request_id = GNUNET_htonll (msg->arm_msg.request_id);
312   msg->count = htons (msg->count);
313
314   memcpy (buf, msg, rslt_size);
315   GNUNET_free (msg);
316   return rslt_size;
317 }
318
319
320 /**
321  * Signal our client that we will start or stop the
322  * service.
323  *
324  * @param client who is being signalled
325  * @param name name of the service
326  * @param request_id id of the request that is being responded to.
327  * @param result message type to send
328  * @return NULL if it was not found
329  */
330 static void
331 signal_result (struct GNUNET_SERVER_Client *client,
332                const char *name,
333                uint64_t request_id,
334                enum GNUNET_ARM_Result result)
335 {
336   struct GNUNET_ARM_ResultMessage *msg;
337   size_t msize;
338
339   msize = sizeof (struct GNUNET_ARM_ResultMessage);
340   msg = GNUNET_malloc (msize);
341   msg->arm_msg.header.size = msize;
342   msg->arm_msg.header.type = GNUNET_MESSAGE_TYPE_ARM_RESULT;
343   msg->result = result;
344   msg->arm_msg.request_id = request_id;
345
346   GNUNET_SERVER_notify_transmit_ready (client, msize,
347                                        GNUNET_TIME_UNIT_FOREVER_REL,
348                                        write_result, msg);
349 }
350
351
352 /**
353  * Tell all clients about status change of a service.
354  *
355  * @param name name of the service
356  * @param status message type to send
357  * @param unicast if not NULL, send to this client only.
358  *                otherwise, send to all clients in the notifier
359  */
360 static void
361 broadcast_status (const char *name,
362                   enum GNUNET_ARM_ServiceStatus status,
363                   struct GNUNET_SERVER_Client *unicast)
364 {
365   struct GNUNET_ARM_StatusMessage *msg;
366   size_t namelen;
367
368   if (NULL == notifier)
369     return;
370   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
371       "Sending status %u of service `%s' to client\n",
372       (unsigned int) status, name);
373   namelen = strlen (name);
374   msg = GNUNET_malloc (sizeof (struct GNUNET_ARM_StatusMessage) + namelen + 1);
375   msg->header.size = htons (sizeof (struct GNUNET_ARM_StatusMessage) + namelen + 1);
376   msg->header.type = htons (GNUNET_MESSAGE_TYPE_ARM_STATUS);
377   msg->status = htonl ((uint32_t) (status));
378   memcpy ((char *) &msg[1], name, namelen + 1);
379
380   if (NULL == unicast)
381     GNUNET_SERVER_notification_context_broadcast (notifier,
382         (struct GNUNET_MessageHeader *) msg, GNUNET_YES);
383   else
384     GNUNET_SERVER_notification_context_unicast (notifier, unicast,
385         (const struct GNUNET_MessageHeader *) msg, GNUNET_NO);
386   GNUNET_free (msg);
387 }
388
389
390 /**
391  * Actually start the process for the given service.
392  *
393  * @param sl identifies service to start
394  * @param client that asked to start the service (may be NULL)
395  * @param request_id id of the request in response to which the process is
396  *                   being started. 0 if starting was not requested.
397  */
398 static void
399 start_process (struct ServiceList *sl,
400                struct GNUNET_SERVER_Client *client,
401                uint64_t request_id)
402 {
403   char *loprefix;
404   char *options;
405   char *optpos;
406   char *optend;
407   const char *next;
408   int use_debug;
409   char b;
410   char *val;
411   struct ServiceListeningInfo *sli;
412   SOCKTYPE *lsocks;
413   unsigned int ls;
414   char *binary;
415   char *quotedbinary;
416
417   /* calculate listen socket list */
418   lsocks = NULL;
419   ls = 0;
420   for (sli = sl->listen_head; NULL != sli; sli = sli->next)
421     {
422       GNUNET_array_append (lsocks, ls,
423                            GNUNET_NETWORK_get_fd (sli->listen_socket));
424       if (sli->accept_task != GNUNET_SCHEDULER_NO_TASK)
425         {
426           GNUNET_SCHEDULER_cancel (sli->accept_task);
427           sli->accept_task = GNUNET_SCHEDULER_NO_TASK;
428         }
429     }
430 #if WINDOWS
431   GNUNET_array_append (lsocks, ls, INVALID_SOCKET);
432 #else
433   GNUNET_array_append (lsocks, ls, -1);
434 #endif
435
436   /* obtain configuration */
437   if (GNUNET_OK !=
438       GNUNET_CONFIGURATION_get_value_string (cfg, sl->name, "PREFIX",
439                                              &loprefix))
440     loprefix = GNUNET_strdup (prefix_command);
441   if (GNUNET_OK !=
442       GNUNET_CONFIGURATION_get_value_string (cfg, sl->name, "OPTIONS",
443                                              &options))
444     {
445       options = GNUNET_strdup (final_option);
446       if (NULL == strstr (options, "%"))
447         {
448           /* replace '{}' with service name */
449           while (NULL != (optpos = strstr (options, "{}")))
450             {
451               optpos[0] = '%';
452               optpos[1] = 's';
453               GNUNET_asprintf (&optpos, options, sl->name);
454               GNUNET_free (options);
455               options = optpos;
456             }
457           /* replace '$PATH' with value associated with "PATH" */
458           while (NULL != (optpos = strstr (options, "$")))
459             {
460               optend = optpos + 1;
461               while (isupper ((unsigned char) *optend))
462                 optend++;
463               b = *optend;
464               if ('\0' == b)
465                 next = "";
466               else
467                 next = optend + 1;
468               *optend = '\0';
469               if (GNUNET_OK !=
470                   GNUNET_CONFIGURATION_get_value_string (cfg, "PATHS",
471                                                          optpos + 1, &val))
472                 val = GNUNET_strdup ("");
473               *optpos = '\0';
474               GNUNET_asprintf (&optpos, "%s%s%c%s", options, val, b, next);
475               GNUNET_free (options);
476               GNUNET_free (val);
477               options = optpos;
478             }
479         }
480     }
481   use_debug = GNUNET_CONFIGURATION_get_value_yesno (cfg, sl->name, "DEBUG");
482
483   /* actually start process */
484   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
485               "Starting service `%s' using binary `%s' and configuration `%s'\n",
486               sl->name, sl->binary, sl->config);
487   binary = GNUNET_OS_get_libexec_binary_path (sl->binary);
488   GNUNET_asprintf (&quotedbinary,
489                    "\"%s\"",
490                    binary);
491
492   GNUNET_assert (NULL == sl->proc);
493   if (GNUNET_YES == use_debug)
494   {
495     if (NULL == sl->config)
496       sl->proc =
497         GNUNET_OS_start_process_s (sl->pipe_control,
498                                    GNUNET_OS_INHERIT_STD_OUT_AND_ERR,
499                                    lsocks, loprefix, quotedbinary, "-L",
500                                    "DEBUG", options, NULL);
501     else
502       sl->proc =
503           GNUNET_OS_start_process_s (sl->pipe_control,
504                                      GNUNET_OS_INHERIT_STD_OUT_AND_ERR,
505                                      lsocks, loprefix, quotedbinary, "-c",
506                                      sl->config, "-L",
507                                      "DEBUG", options, NULL);
508   }
509   else
510   {
511     if (NULL == sl->config)
512       sl->proc =
513           GNUNET_OS_start_process_s (sl->pipe_control,
514                                      GNUNET_OS_INHERIT_STD_OUT_AND_ERR,
515                                      lsocks, loprefix, quotedbinary,
516                                      options, NULL);
517     else
518       sl->proc =
519           GNUNET_OS_start_process_s (sl->pipe_control,
520                                      GNUNET_OS_INHERIT_STD_OUT_AND_ERR,
521                                      lsocks, loprefix, quotedbinary, "-c",
522                                      sl->config, options, NULL);
523   }
524   GNUNET_free (binary);
525   GNUNET_free (quotedbinary);
526   if (sl->proc == NULL)
527   {
528     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
529                 _("Failed to start service `%s'\n"),
530                 sl->name);
531     if (client)
532       signal_result (client,
533                      sl->name,
534                      request_id,
535                      GNUNET_ARM_RESULT_START_FAILED);
536   }
537   else
538   {
539     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
540                 _("Starting service `%s'\n"),
541                 sl->name);
542     broadcast_status (sl->name, GNUNET_ARM_SERVICE_STARTING, NULL);
543     if (client)
544       signal_result (client, sl->name, request_id, GNUNET_ARM_RESULT_STARTING);
545   }
546   /* clean up */
547   GNUNET_free (loprefix);
548   GNUNET_free (options);
549   GNUNET_array_grow (lsocks, ls, 0);
550 }
551
552
553 /**
554  * Find the process with the given service
555  * name in the given list and return it.
556  *
557  * @param name which service entry to look up
558  * @return NULL if it was not found
559  */
560 static struct ServiceList *
561 find_service (const char *name)
562 {
563   struct ServiceList *sl;
564
565   sl = running_head;
566   while (sl != NULL)
567     {
568       if (0 == strcasecmp (sl->name, name))
569         return sl;
570       sl = sl->next;
571     }
572   return NULL;
573 }
574
575
576 /**
577  * First connection has come to the listening socket associated with the service,
578  * create the service in order to relay the incoming connection to it
579  *
580  * @param cls callback data, `struct ServiceListeningInfo` describing a listen socket
581  * @param tc context
582  */
583 static void
584 accept_connection (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
585 {
586   struct ServiceListeningInfo *sli = cls;
587   struct ServiceList *sl = sli->sl;
588
589   sli->accept_task = GNUNET_SCHEDULER_NO_TASK;
590   GNUNET_assert (GNUNET_NO == in_shutdown);
591   if (0 != (GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason))
592     return;
593   start_process (sl, NULL, 0);
594 }
595
596
597 /**
598  * Creating a listening socket for each of the service's addresses and
599  * wait for the first incoming connection to it
600  *
601  * @param sa address associated with the service
602  * @param addr_len length of @a sa
603  * @param sl service entry for the service in question
604  */
605 static void
606 create_listen_socket (struct sockaddr *sa, socklen_t addr_len,
607                       struct ServiceList *sl)
608 {
609   static int on = 1;
610   struct GNUNET_NETWORK_Handle *sock;
611   struct ServiceListeningInfo *sli;
612 #ifndef WINDOWS
613   int match_uid;
614   int match_gid;
615 #endif
616
617   switch (sa->sa_family)
618   {
619   case AF_INET:
620     sock = GNUNET_NETWORK_socket_create (PF_INET, SOCK_STREAM, 0);
621     break;
622   case AF_INET6:
623     sock = GNUNET_NETWORK_socket_create (PF_INET6, SOCK_STREAM, 0);
624     break;
625   case AF_UNIX:
626     if (strcmp (GNUNET_a2s (sa, addr_len), "@") == 0)   /* Do not bind to blank UNIX path! */
627       return;
628     sock = GNUNET_NETWORK_socket_create (PF_UNIX, SOCK_STREAM, 0);
629     break;
630   default:
631     GNUNET_break (0);
632     sock = NULL;
633     errno = EAFNOSUPPORT;
634     break;
635   }
636   if (NULL == sock)
637   {
638     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
639                 _("Unable to create socket for service `%s': %s\n"),
640                 sl->name, STRERROR (errno));
641     GNUNET_free (sa);
642     return;
643   }
644   if (GNUNET_NETWORK_socket_setsockopt
645       (sock, SOL_SOCKET, SO_REUSEADDR, &on, sizeof (on)) != GNUNET_OK)
646     GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
647                          "setsockopt");
648 #ifdef IPV6_V6ONLY
649   if ((sa->sa_family == AF_INET6) &&
650       (GNUNET_NETWORK_socket_setsockopt
651        (sock, IPPROTO_IPV6, IPV6_V6ONLY, &on, sizeof (on)) != GNUNET_OK))
652     GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
653                          "setsockopt");
654 #endif
655
656   if (GNUNET_OK !=
657       GNUNET_NETWORK_socket_bind (sock, (const struct sockaddr *) sa, addr_len))
658   {
659     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
660                 _
661                 ("Unable to bind listening socket for service `%s' to address `%s': %s\n"),
662                 sl->name, GNUNET_a2s (sa, addr_len), STRERROR (errno));
663     GNUNET_break (GNUNET_OK == GNUNET_NETWORK_socket_close (sock));
664     GNUNET_free (sa);
665     return;
666   }
667 #ifndef WINDOWS
668   if ((AF_UNIX == sa->sa_family)
669 #ifdef LINUX
670       /* Permission settings are not required when abstract sockets are used */
671       && ('\0' != ((const struct sockaddr_un *)sa)->sun_path[0])
672 #endif      
673       )
674   {
675     match_uid =
676       GNUNET_CONFIGURATION_get_value_yesno (cfg, sl->name,
677                                             "UNIX_MATCH_UID");
678     match_gid =
679       GNUNET_CONFIGURATION_get_value_yesno (cfg, sl->name,
680                                             "UNIX_MATCH_GID");
681     GNUNET_DISK_fix_permissions (((const struct sockaddr_un *)sa)->sun_path,
682                                  match_uid,
683                                  match_gid);
684
685   }
686 #endif
687   if (GNUNET_NETWORK_socket_listen (sock, 5) != GNUNET_OK)
688   {
689     GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "listen");
690     GNUNET_break (GNUNET_OK == GNUNET_NETWORK_socket_close (sock));
691     GNUNET_free (sa);
692     return;
693   }
694   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
695               _("ARM now monitors connections to service `%s' at `%s'\n"),
696               sl->name, GNUNET_a2s (sa, addr_len));
697   sli = GNUNET_new (struct ServiceListeningInfo);
698   sli->service_addr = sa;
699   sli->service_addr_len = addr_len;
700   sli->listen_socket = sock;
701   sli->sl = sl;
702   sli->accept_task =
703     GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL, sock,
704                                    &accept_connection, sli);
705   GNUNET_CONTAINER_DLL_insert (sl->listen_head, sl->listen_tail, sli);
706 }
707
708
709 /**
710  * Remove and free an entry in the service list.  Listen sockets
711  * must have already been cleaned up.  Only to be called during shutdown.
712  *
713  * @param sl entry to free
714  */
715 static void
716 free_service (struct ServiceList *sl)
717 {
718   GNUNET_assert (GNUNET_YES == in_shutdown);
719   GNUNET_CONTAINER_DLL_remove (running_head, running_tail, sl);
720   GNUNET_assert (NULL == sl->listen_head);
721   GNUNET_free_non_null (sl->config);
722   GNUNET_free_non_null (sl->binary);
723   GNUNET_free (sl->name);
724   GNUNET_free (sl);
725 }
726
727
728 /**
729  * Handle START-message.
730  *
731  * @param cls closure (always NULL)
732  * @param client identification of the client
733  * @param message the actual message
734  * @return #GNUNET_OK to keep the connection open,
735  *         #GNUNET_SYSERR to close it (signal serious error)
736  */
737 static void
738 handle_start (void *cls, struct GNUNET_SERVER_Client *client,
739               const struct GNUNET_MessageHeader *message)
740 {
741   const char *servicename;
742   struct ServiceList *sl;
743   uint16_t size;
744   uint64_t request_id;
745   struct GNUNET_ARM_Message *amsg;
746
747   amsg = (struct GNUNET_ARM_Message *) message;
748   request_id = GNUNET_ntohll (amsg->request_id);
749   size = ntohs (amsg->header.size);
750   size -= sizeof (struct GNUNET_ARM_Message);
751   servicename = (const char *) &amsg[1];
752   if ((size == 0) || (servicename[size - 1] != '\0'))
753   {
754     GNUNET_break (0);
755     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
756     return;
757   }
758   if (GNUNET_YES == in_shutdown)
759   {
760     signal_result (client, servicename, request_id,
761                    GNUNET_ARM_RESULT_IN_SHUTDOWN);
762     GNUNET_SERVER_receive_done (client, GNUNET_OK);
763     return;
764   }
765   sl = find_service (servicename);
766   if (NULL == sl)
767   {
768     signal_result (client, servicename, request_id,
769                    GNUNET_ARM_RESULT_IS_NOT_KNOWN);
770     GNUNET_SERVER_receive_done (client, GNUNET_OK);
771     return;
772   }
773   sl->is_default = GNUNET_YES;
774   if (NULL != sl->proc)
775   {
776     signal_result (client, servicename, request_id,
777                    GNUNET_ARM_RESULT_IS_STARTED_ALREADY);
778     GNUNET_SERVER_receive_done (client, GNUNET_OK);
779     return;
780   }
781   start_process (sl, client, request_id);
782   GNUNET_SERVER_receive_done (client, GNUNET_OK);
783 }
784
785
786 /**
787  * Start a shutdown sequence.
788  *
789  * @param cls closure (refers to service)
790  * @param tc task context
791  */
792 static void
793 trigger_shutdown (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
794 {
795   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Triggering shutdown\n");
796   GNUNET_SCHEDULER_shutdown ();
797 }
798
799
800 /**
801  * Handle STOP-message.
802  *
803  * @param cls closure (always NULL)
804  * @param client identification of the client
805  * @param message the actual message
806  * @return #GNUNET_OK to keep the connection open,
807  *         #GNUNET_SYSERR to close it (signal serious error)
808  */
809 static void
810 handle_stop (void *cls, struct GNUNET_SERVER_Client *client,
811              const struct GNUNET_MessageHeader *message)
812 {
813   struct ServiceList *sl;
814   const char *servicename;
815   uint16_t size;
816   uint64_t request_id;
817   struct GNUNET_ARM_Message *amsg;
818
819   amsg = (struct GNUNET_ARM_Message *) message;
820   request_id = GNUNET_ntohll (amsg->request_id);
821   size = ntohs (amsg->header.size);
822   size -= sizeof (struct GNUNET_ARM_Message);
823   servicename = (const char *) &amsg[1];
824   if ((size == 0) || (servicename[size - 1] != '\0'))
825     {
826       GNUNET_break (0);
827       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
828       return;
829     }
830   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
831               _("Preparing to stop `%s'\n"),
832               servicename);
833   if (0 == strcasecmp (servicename, "arm"))
834   {
835     broadcast_status (servicename, GNUNET_ARM_SERVICE_STOPPING, NULL);
836     signal_result (client, servicename, request_id, GNUNET_ARM_RESULT_STOPPING);
837     GNUNET_SERVER_client_persist_ (client);
838     GNUNET_SCHEDULER_add_now (trigger_shutdown, NULL);
839     GNUNET_SERVER_receive_done (client, GNUNET_OK);
840     return;
841   }
842   sl = find_service (servicename);
843   if (sl == NULL)
844     {
845       signal_result (client, servicename, request_id, GNUNET_ARM_RESULT_IS_NOT_KNOWN);
846       GNUNET_SERVER_receive_done (client, GNUNET_OK);
847       return;
848     }
849   sl->is_default = GNUNET_NO;
850   if (GNUNET_YES == in_shutdown)
851     {
852       /* shutdown in progress */
853       signal_result (client, servicename, request_id, GNUNET_ARM_RESULT_IN_SHUTDOWN);
854       GNUNET_SERVER_receive_done (client, GNUNET_OK);
855       return;
856     }
857   if (NULL != sl->killing_client)
858   {
859     /* killing already in progress */
860     signal_result (client, servicename, request_id,
861                    GNUNET_ARM_RESULT_IS_STOPPING_ALREADY);
862     GNUNET_SERVER_receive_done (client, GNUNET_OK);
863     return;
864   }
865   if (NULL == sl->proc)
866   {
867     /* process is down */
868     signal_result (client, servicename, request_id,
869                    GNUNET_ARM_RESULT_IS_STOPPED_ALREADY);
870     GNUNET_SERVER_receive_done (client, GNUNET_OK);
871     return;
872   }
873   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
874               "Sending kill signal to service `%s', waiting for process to die.\n",
875               servicename);
876   broadcast_status (servicename, GNUNET_ARM_SERVICE_STOPPING, NULL);
877   /* no signal_start - only when it's STOPPED */
878   sl->killed_at = GNUNET_TIME_absolute_get ();
879   if (0 != GNUNET_OS_process_kill (sl->proc, GNUNET_TERM_SIG))
880     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
881   sl->killing_client = client;
882   sl->killing_client_request_id = request_id;
883   GNUNET_SERVER_client_keep (client);
884   GNUNET_SERVER_receive_done (client, GNUNET_OK);
885 }
886
887
888 /**
889  * Handle LIST-message.
890  *
891  * @param cls closure (always NULL)
892  * @param client identification of the client
893  * @param message the actual message
894  */
895 static void
896 handle_list (void *cls, struct GNUNET_SERVER_Client *client,
897              const struct GNUNET_MessageHeader *message)
898 {
899   struct GNUNET_ARM_ListResultMessage *msg;
900   struct GNUNET_ARM_Message *request;
901   size_t string_list_size;
902   size_t total_size;
903   struct ServiceList *sl;
904   uint16_t count;
905
906   if (NULL == client)
907     return;
908
909   request = (struct GNUNET_ARM_Message *) message;
910   GNUNET_break (0 == ntohl (request->reserved));
911   count = 0;
912   string_list_size = 0;
913   /* first count the running processes get their name's size */
914   for (sl = running_head; NULL != sl; sl = sl->next)
915   {
916     if (NULL != sl->proc)
917     {
918       string_list_size += strlen (sl->name);
919       string_list_size += strlen (sl->binary);
920       string_list_size += 4;
921       count++;
922     }
923   }
924
925   total_size = sizeof (struct GNUNET_ARM_ListResultMessage)
926                + string_list_size;
927   msg = GNUNET_malloc (total_size);
928   msg->arm_msg.header.size = total_size;
929   msg->arm_msg.header.type = GNUNET_MESSAGE_TYPE_ARM_LIST_RESULT;
930   msg->arm_msg.reserved = htonl (0);
931   msg->arm_msg.request_id = GNUNET_ntohll (request->request_id);
932   msg->count = count;
933
934   char *pos = (char *)&msg[1];
935   for (sl = running_head; NULL != sl; sl = sl->next)
936   {
937     if (NULL != sl->proc)
938     {
939       size_t s = strlen (sl->name) + strlen (sl->binary) + 4;
940       GNUNET_snprintf (pos, s, "%s (%s)", sl->name, sl->binary);
941       pos += s;
942     }
943   }
944   GNUNET_SERVER_notify_transmit_ready (client,
945                                        total_size,
946                                        GNUNET_TIME_UNIT_FOREVER_REL,
947                                        &write_list_result, msg);
948   GNUNET_SERVER_receive_done (client, GNUNET_OK);
949 }
950
951
952 /**
953  * We are done with everything.  Stop remaining
954  * tasks, signal handler and the server.
955  */
956 static void
957 do_shutdown ()
958 {
959   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Last shutdown phase\n");
960   if (NULL != notifier)
961   {
962     GNUNET_SERVER_notification_context_destroy (notifier);
963     notifier = NULL;
964   }
965   if (NULL != server)
966     {
967       GNUNET_SERVER_destroy (server);
968       server = NULL;
969     }
970   if (GNUNET_SCHEDULER_NO_TASK != child_death_task)
971     {
972       GNUNET_SCHEDULER_cancel (child_death_task);
973       child_death_task = GNUNET_SCHEDULER_NO_TASK;
974     }
975 }
976
977
978 /**
979  * Count how many services are still active.
980  *
981  * @param running_head list of services
982  * @return number of active services found
983  */
984 static unsigned int
985 list_count (struct ServiceList *running_head)
986 {
987   struct ServiceList *i;
988   unsigned int res = 0;
989
990   for (res = 0, i = running_head; i; i = i->next, res++)
991     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
992                 "%s\n",
993                 i->name);
994   return res;
995 }
996
997
998 /**
999  * Task run for shutdown.
1000  *
1001  * @param cls closure, NULL if we need to self-restart
1002  * @param tc context
1003  */
1004 static void
1005 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1006 {
1007   struct ServiceList *pos;
1008   struct ServiceList *nxt;
1009   struct ServiceListeningInfo *sli;
1010
1011   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1012               "First shutdown phase\n");
1013   if (GNUNET_SCHEDULER_NO_TASK != child_restart_task)
1014   {
1015     GNUNET_SCHEDULER_cancel (child_restart_task);
1016     child_restart_task = GNUNET_SCHEDULER_NO_TASK;
1017   }
1018   in_shutdown = GNUNET_YES;
1019   /* first, stop listening */
1020   for (pos = running_head; NULL != pos; pos = pos->next)
1021   {
1022     while (NULL != (sli = pos->listen_head))
1023       {
1024         GNUNET_CONTAINER_DLL_remove (pos->listen_head,
1025                                      pos->listen_tail, sli);
1026         if (sli->accept_task != GNUNET_SCHEDULER_NO_TASK)
1027           {
1028             GNUNET_SCHEDULER_cancel (sli->accept_task);
1029             sli->accept_task = GNUNET_SCHEDULER_NO_TASK;
1030           }
1031         GNUNET_break (GNUNET_OK ==
1032                       GNUNET_NETWORK_socket_close (sli->listen_socket));
1033         GNUNET_free (sli->service_addr);
1034         GNUNET_free (sli);
1035       }
1036   }
1037   /* then, shutdown all existing service processes */
1038   nxt = running_head;
1039   while (NULL != (pos = nxt))
1040   {
1041     nxt = pos->next;
1042     if (pos->proc != NULL)
1043     {
1044       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1045                   "Stopping service `%s'\n",
1046                   pos->name);
1047       pos->killed_at = GNUNET_TIME_absolute_get ();
1048       if (0 != GNUNET_OS_process_kill (pos->proc, GNUNET_TERM_SIG))
1049         GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
1050     }
1051     else
1052     {
1053       free_service (pos);
1054     }
1055   }
1056   /* finally, should all service processes be already gone, terminate for real */
1057   if (running_head == NULL)
1058     do_shutdown ();
1059   else
1060     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1061                 "Delaying shutdown, have %u childs still running\n",
1062                 list_count (running_head));
1063 }
1064
1065
1066 /**
1067  * Task run whenever it is time to restart a child that died.
1068  *
1069  * @param cls closure, always NULL
1070  * @param tc context
1071  */
1072 static void
1073 delayed_restart_task (void *cls,
1074                       const struct GNUNET_SCHEDULER_TaskContext *tc)
1075 {
1076   struct ServiceList *sl;
1077   struct GNUNET_TIME_Relative lowestRestartDelay;
1078   struct ServiceListeningInfo *sli;
1079
1080   child_restart_task = GNUNET_SCHEDULER_NO_TASK;
1081   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
1082     return;
1083   GNUNET_assert (GNUNET_NO == in_shutdown);
1084   lowestRestartDelay = GNUNET_TIME_UNIT_FOREVER_REL;
1085
1086   /* check for services that need to be restarted due to
1087    * configuration changes or because the last restart failed */
1088   for (sl = running_head; NULL != sl; sl = sl->next)
1089   {
1090     if (NULL != sl->proc)
1091       continue;
1092     /* service is currently not running */
1093     if (0 == GNUNET_TIME_absolute_get_remaining (sl->restart_at).rel_value_us)
1094     {
1095       /* restart is now allowed */
1096       if (sl->is_default)
1097       {
1098         /* process should run by default, start immediately */
1099         GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1100                     _("Restarting service `%s'.\n"), sl->name);
1101         start_process (sl, NULL, 0);
1102       }
1103       else
1104       {
1105         /* process is run on-demand, ensure it is re-started if there is demand */
1106         for (sli = sl->listen_head; NULL != sli; sli = sli->next)
1107           if (GNUNET_SCHEDULER_NO_TASK == sli->accept_task)
1108           {
1109             /* accept was actually paused, so start it again */
1110             sli->accept_task =
1111               GNUNET_SCHEDULER_add_read_net
1112               (GNUNET_TIME_UNIT_FOREVER_REL, sli->listen_socket,
1113                &accept_connection, sli);
1114           }
1115       }
1116     }
1117     else
1118     {
1119       /* update calculation for earliest time to reactivate a service */
1120       lowestRestartDelay =
1121         GNUNET_TIME_relative_min (lowestRestartDelay,
1122                                   GNUNET_TIME_absolute_get_remaining
1123                                   (sl->restart_at));
1124     }
1125   }
1126   if (lowestRestartDelay.rel_value_us != GNUNET_TIME_UNIT_FOREVER_REL.rel_value_us)
1127   {
1128     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1129                 "Will restart process in %s\n",
1130                 GNUNET_STRINGS_relative_time_to_string (lowestRestartDelay, GNUNET_YES));
1131     child_restart_task =
1132       GNUNET_SCHEDULER_add_delayed_with_priority (lowestRestartDelay,
1133                                                   GNUNET_SCHEDULER_PRIORITY_IDLE,
1134                                                   &delayed_restart_task, NULL);
1135   }
1136 }
1137
1138
1139 /**
1140  * Task triggered whenever we receive a SIGCHLD (child
1141  * process died).
1142  *
1143  * @param cls closure, NULL if we need to self-restart
1144  * @param tc context
1145  */
1146 static void
1147 maint_child_death (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1148 {
1149   struct ServiceList *pos;
1150   struct ServiceList *next;
1151   struct ServiceListeningInfo *sli;
1152   const char *statstr;
1153   int statcode;
1154   int ret;
1155   char c[16];
1156   enum GNUNET_OS_ProcessStatusType statusType;
1157   unsigned long statusCode;
1158   const struct GNUNET_DISK_FileHandle *pr;
1159
1160   pr = GNUNET_DISK_pipe_handle (sigpipe, GNUNET_DISK_PIPE_END_READ);
1161   child_death_task = GNUNET_SCHEDULER_NO_TASK;
1162   if (0 == (tc->reason & GNUNET_SCHEDULER_REASON_READ_READY))
1163     {
1164       /* shutdown scheduled us, ignore! */
1165       child_death_task =
1166         GNUNET_SCHEDULER_add_read_file (GNUNET_TIME_UNIT_FOREVER_REL,
1167                                         pr, &maint_child_death, NULL);
1168       return;
1169     }
1170   /* consume the signal */
1171   GNUNET_break (0 < GNUNET_DISK_file_read (pr, &c, sizeof (c)));
1172
1173   /* check for services that died (WAITPID) */
1174   next = running_head;
1175   while (NULL != (pos = next))
1176     {
1177       next = pos->next;
1178
1179       if (pos->proc == NULL)
1180       {
1181         if (GNUNET_YES == in_shutdown)
1182           free_service (pos);
1183         continue;
1184       }
1185       if ((GNUNET_SYSERR ==
1186            (ret =
1187             GNUNET_OS_process_status (pos->proc, &statusType, &statusCode)))
1188           || ((ret == GNUNET_NO) || (statusType == GNUNET_OS_PROCESS_STOPPED)
1189               || (statusType == GNUNET_OS_PROCESS_RUNNING)))
1190         continue;
1191       if (statusType == GNUNET_OS_PROCESS_EXITED)
1192       {
1193         statstr = _( /* process termination method */ "exit");
1194         statcode = statusCode;
1195       }
1196       else if (statusType == GNUNET_OS_PROCESS_SIGNALED)
1197       {
1198         statstr = _( /* process termination method */ "signal");
1199         statcode = statusCode;
1200       }
1201       else
1202       {
1203         statstr = _( /* process termination method */ "unknown");
1204         statcode = 0;
1205       }
1206       if (0 != pos->killed_at.abs_value_us)
1207       {
1208         GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1209                     _("Service `%s' took %s to terminate\n"),
1210                     pos->name,
1211                     GNUNET_STRINGS_relative_time_to_string (GNUNET_TIME_absolute_get_duration (pos->killed_at), GNUNET_YES));
1212       }
1213       GNUNET_OS_process_destroy (pos->proc);
1214       pos->proc = NULL;
1215       broadcast_status (pos->name, GNUNET_ARM_SERVICE_STOPPED, NULL);
1216       if (NULL != pos->killing_client)
1217       {
1218         signal_result (pos->killing_client, pos->name,
1219             pos->killing_client_request_id, GNUNET_ARM_RESULT_STOPPED);
1220         GNUNET_SERVER_client_drop (pos->killing_client);
1221         pos->killing_client = NULL;
1222         pos->killing_client_request_id = 0;
1223       }
1224       if (GNUNET_YES != in_shutdown)
1225       {
1226         if ((statusType == GNUNET_OS_PROCESS_EXITED) && (statcode == 0))
1227         {
1228           /* process terminated normally, allow restart at any time */
1229           pos->restart_at.abs_value_us = 0;
1230           GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1231               _("Service `%s' terminated normally, will restart at any time\n"),
1232               pos->name);
1233           /* process can still be re-started on-demand, ensure it is re-started if there is demand */
1234           for (sli = pos->listen_head; NULL != sli; sli = sli->next)
1235           {
1236             GNUNET_break (GNUNET_SCHEDULER_NO_TASK == sli->accept_task);
1237             sli->accept_task =
1238                 GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
1239                     sli->listen_socket, &accept_connection, sli);
1240           }
1241         }
1242         else
1243         {
1244           if (0 == (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
1245             GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1246                 _("Service `%s' terminated with status %s/%d, will restart in %s\n"),
1247                 pos->name, statstr, statcode,
1248                 GNUNET_STRINGS_relative_time_to_string (pos->backoff, GNUNET_YES));
1249           /* schedule restart */
1250           pos->restart_at = GNUNET_TIME_relative_to_absolute (pos->backoff);
1251           pos->backoff = GNUNET_TIME_STD_BACKOFF (pos->backoff);
1252           if (GNUNET_SCHEDULER_NO_TASK != child_restart_task)
1253             GNUNET_SCHEDULER_cancel (child_restart_task);
1254           child_restart_task = GNUNET_SCHEDULER_add_with_priority (
1255             GNUNET_SCHEDULER_PRIORITY_IDLE, &delayed_restart_task, NULL);
1256         }
1257       }
1258       else
1259       {
1260         free_service (pos);
1261       }
1262     }
1263   child_death_task = GNUNET_SCHEDULER_add_read_file (
1264       GNUNET_TIME_UNIT_FOREVER_REL, pr, &maint_child_death, NULL);
1265   if ((NULL == running_head) && (GNUNET_YES == in_shutdown))
1266     do_shutdown ();
1267   else if (GNUNET_YES == in_shutdown)
1268     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1269         "Delaying shutdown after child's death, still have %u children\n",
1270         list_count (running_head));
1271
1272 }
1273
1274
1275 /**
1276  * Signal handler called for SIGCHLD.  Triggers the
1277  * respective handler by writing to the trigger pipe.
1278  */
1279 static void
1280 sighandler_child_death ()
1281 {
1282   static char c;
1283   int old_errno = errno;        /* back-up errno */
1284
1285   GNUNET_break (1 ==
1286                 GNUNET_DISK_file_write (GNUNET_DISK_pipe_handle
1287                                         (sigpipe, GNUNET_DISK_PIPE_END_WRITE),
1288                                         &c, sizeof (c)));
1289   errno = old_errno;            /* restore errno */
1290 }
1291
1292
1293 /**
1294  * Setup our service record for the given section in the configuration file
1295  * (assuming the section is for a service).
1296  *
1297  * @param cls unused
1298  * @param section a section in the configuration file
1299  * @return #GNUNET_OK (continue)
1300  */
1301 static void
1302 setup_service (void *cls, const char *section)
1303 {
1304   struct ServiceList *sl;
1305   char *binary;
1306   char *config;
1307   struct stat sbuf;
1308   struct sockaddr **addrs;
1309   socklen_t *addr_lens;
1310   int ret;
1311   unsigned int i;
1312
1313   if (strcasecmp (section, "arm") == 0)
1314     return;
1315   if (GNUNET_OK !=
1316       GNUNET_CONFIGURATION_get_value_string (cfg, section, "BINARY", &binary))
1317   {
1318     /* not a service section */
1319     return;
1320   }
1321   if ((GNUNET_YES ==
1322        GNUNET_CONFIGURATION_have_value (cfg, section, "USER_SERVICE")) &&
1323       (GNUNET_YES ==
1324        GNUNET_CONFIGURATION_get_value_yesno (cfg, section, "USER_SERVICE")))
1325   {
1326     if (GNUNET_NO == start_user)
1327     {
1328       GNUNET_free (binary);
1329       return; /* user service, and we don't deal with those */
1330     }
1331   }
1332   else
1333   {
1334     if (GNUNET_NO == start_system)
1335     {
1336       GNUNET_free (binary);
1337       return; /* system service, and we don't deal with those */
1338     }
1339   }
1340   sl = find_service (section);
1341   if (NULL != sl)
1342   {
1343     /* got the same section twice!? */
1344     GNUNET_break (0);
1345     GNUNET_free (binary);
1346     return;
1347   }
1348   config = NULL;
1349   if (( (GNUNET_OK !=
1350          GNUNET_CONFIGURATION_get_value_filename (cfg, section, "CONFIG",
1351                                                   &config)) &&
1352         (GNUNET_OK !=
1353          GNUNET_CONFIGURATION_get_value_filename (cfg, "PATHS", "DEFAULTCONFIG",
1354                                                   &config)) ) ||
1355       (0 != STAT (config, &sbuf)))
1356   {
1357     if (NULL != config)
1358     {
1359       GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_WARNING,
1360                                  section, "CONFIG",
1361                                  STRERROR (errno));
1362       GNUNET_free (config);
1363       config = NULL;
1364     }
1365   }
1366   sl = GNUNET_new (struct ServiceList);
1367   sl->name = GNUNET_strdup (section);
1368   sl->binary = binary;
1369   sl->config = config;
1370   sl->backoff = GNUNET_TIME_UNIT_MILLISECONDS;
1371   sl->restart_at = GNUNET_TIME_UNIT_FOREVER_ABS;
1372 #if WINDOWS
1373   sl->pipe_control = GNUNET_YES;
1374 #else
1375   if (GNUNET_CONFIGURATION_have_value (cfg, section, "PIPECONTROL"))
1376     sl->pipe_control = GNUNET_CONFIGURATION_get_value_yesno (cfg, section, "PIPECONTROL");
1377 #endif
1378   GNUNET_CONTAINER_DLL_insert (running_head, running_tail, sl);
1379
1380   if (GNUNET_YES !=
1381       GNUNET_CONFIGURATION_get_value_yesno (cfg, section, "AUTOSTART"))
1382     return;
1383   if (0 >= (ret = GNUNET_SERVICE_get_server_addresses (section, cfg,
1384                                                        &addrs, &addr_lens)))
1385     return;
1386   /* this will free (or capture) addrs[i] */
1387   for (i = 0; i < ret; i++)
1388     create_listen_socket (addrs[i], addr_lens[i], sl);
1389   GNUNET_free (addrs);
1390   GNUNET_free (addr_lens);
1391 }
1392
1393
1394 /**
1395  * A client connected, add it to the notification context.
1396  *
1397  * @param cls closure
1398  * @param client identification of the client
1399  */
1400 static void
1401 handle_client_connecting (void *cls, struct GNUNET_SERVER_Client *client)
1402 {
1403   /* All clients are considered to be of the "monitor" kind
1404    * (that is, they don't affect ARM shutdown).
1405    */
1406   if (NULL != client)
1407     GNUNET_SERVER_client_mark_monitor (client);
1408 }
1409
1410
1411 /**
1412  * Handle MONITOR-message.
1413  *
1414  * @param cls closure (always NULL)
1415  * @param client identification of the client
1416  * @param message the actual message
1417  * @return #GNUNET_OK to keep the connection open,
1418  *         #GNUNET_SYSERR to close it (signal serious error)
1419  */
1420 static void
1421 handle_monitor (void *cls, struct GNUNET_SERVER_Client *client,
1422              const struct GNUNET_MessageHeader *message)
1423 {
1424   /* Removal is handled by the server implementation, internally. */
1425   if ((NULL != client) && (NULL != notifier))
1426   {
1427     GNUNET_SERVER_notification_context_add (notifier, client);
1428     broadcast_status ("arm", GNUNET_ARM_SERVICE_MONITORING_STARTED, client);
1429     GNUNET_SERVER_receive_done (client, GNUNET_OK);
1430   }
1431 }
1432
1433
1434 /**
1435  * Process arm requests.
1436  *
1437  * @param cls closure
1438  * @param serv the initialized server
1439  * @param c configuration to use
1440  */
1441 static void
1442 run (void *cls, struct GNUNET_SERVER_Handle *serv,
1443      const struct GNUNET_CONFIGURATION_Handle *c)
1444 {
1445   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
1446     {&handle_start, NULL, GNUNET_MESSAGE_TYPE_ARM_START, 0},
1447     {&handle_stop, NULL, GNUNET_MESSAGE_TYPE_ARM_STOP, 0},
1448     {&handle_monitor, NULL, GNUNET_MESSAGE_TYPE_ARM_MONITOR,
1449      sizeof (struct GNUNET_MessageHeader)},
1450     {&handle_list, NULL, GNUNET_MESSAGE_TYPE_ARM_LIST,
1451      sizeof (struct GNUNET_ARM_Message)},
1452     {NULL, NULL, 0, 0}
1453   };
1454   char *defaultservices;
1455   const char *pos;
1456   struct ServiceList *sl;
1457
1458   cfg = c;
1459   server = serv;
1460   GNUNET_assert (NULL != serv);
1461   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
1462                                 &shutdown_task,
1463                                 NULL);
1464   child_death_task =
1465     GNUNET_SCHEDULER_add_read_file (GNUNET_TIME_UNIT_FOREVER_REL,
1466                                     GNUNET_DISK_pipe_handle (sigpipe,
1467                                                              GNUNET_DISK_PIPE_END_READ),
1468                                     &maint_child_death, NULL);
1469
1470   if (GNUNET_OK !=
1471       GNUNET_CONFIGURATION_get_value_string (cfg, "ARM", "GLOBAL_PREFIX",
1472                                              &prefix_command))
1473     prefix_command = GNUNET_strdup ("");
1474   if (GNUNET_OK !=
1475       GNUNET_CONFIGURATION_get_value_string (cfg, "ARM", "GLOBAL_POSTFIX",
1476                                              &final_option))
1477     final_option = GNUNET_strdup ("");
1478   if (GNUNET_YES ==
1479       GNUNET_CONFIGURATION_get_value_yesno (cfg, "ARM", "USER_ONLY"))
1480   {
1481     GNUNET_break (GNUNET_YES == start_user);
1482     start_system = GNUNET_NO;
1483   }
1484   if (GNUNET_YES ==
1485       GNUNET_CONFIGURATION_get_value_yesno (cfg, "ARM", "SYSTEM_ONLY"))
1486   {
1487     GNUNET_break (GNUNET_YES == start_system);
1488     start_user = GNUNET_NO;
1489   }
1490   GNUNET_CONFIGURATION_iterate_sections (cfg, &setup_service, NULL);
1491
1492   /* start default services... */
1493   if (GNUNET_OK ==
1494       GNUNET_CONFIGURATION_get_value_string (cfg,
1495                                              "ARM",
1496                                              "DEFAULTSERVICES",
1497                                              &defaultservices))
1498   {
1499     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1500                 _("Starting default services `%s'\n"),
1501                 defaultservices);
1502     if (0 < strlen (defaultservices))
1503     {
1504       for (pos = strtok (defaultservices, " "); NULL != pos;
1505            pos = strtok (NULL, " "))
1506       {
1507         sl = find_service (pos);
1508         if (NULL == sl)
1509         {
1510           GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1511                       _("Default service `%s' not configured correctly!\n"),
1512                       pos);
1513           continue;
1514         }
1515         sl->is_default = GNUNET_YES;
1516         start_process (sl, NULL, 0);
1517       }
1518     }
1519     GNUNET_free (defaultservices);
1520   }
1521   else
1522   {
1523     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1524                 _("No default services configured, GNUnet will not really start right now.\n"));
1525   }
1526
1527   notifier =
1528       GNUNET_SERVER_notification_context_create (server, MAX_NOTIFY_QUEUE);
1529   GNUNET_SERVER_connect_notify (server, handle_client_connecting, NULL);
1530   /* process client requests */
1531   GNUNET_SERVER_add_handlers (server, handlers);
1532 }
1533
1534
1535 /**
1536  * The main function for the arm service.
1537  *
1538  * @param argc number of arguments from the command line
1539  * @param argv command line arguments
1540  * @return 0 ok, 1 on error
1541  */
1542 int
1543 main (int argc, char *const *argv)
1544 {
1545   int ret;
1546   struct GNUNET_SIGNAL_Context *shc_chld;
1547
1548   sigpipe = GNUNET_DISK_pipe (GNUNET_NO, GNUNET_NO, GNUNET_NO, GNUNET_NO);
1549   GNUNET_assert (sigpipe != NULL);
1550   shc_chld =
1551     GNUNET_SIGNAL_handler_install (GNUNET_SIGCHLD, &sighandler_child_death);
1552   ret =
1553     (GNUNET_OK ==
1554      GNUNET_SERVICE_run (argc, argv, "arm",
1555                          GNUNET_SERVICE_OPTION_MANUAL_SHUTDOWN, &run, NULL)) ? 0 : 1;
1556   GNUNET_SIGNAL_handler_uninstall (shc_chld);
1557   shc_chld = NULL;
1558   GNUNET_DISK_pipe_close (sigpipe);
1559   sigpipe = NULL;
1560   return ret;
1561 }
1562
1563
1564 #ifdef LINUX
1565 #include <malloc.h>
1566
1567 /**
1568  * MINIMIZE heap size (way below 128k) since this process doesn't need much.
1569  */
1570 void __attribute__ ((constructor)) GNUNET_ARM_memory_init ()
1571 {
1572   mallopt (M_TRIM_THRESHOLD, 4 * 1024);
1573   mallopt (M_TOP_PAD, 1 * 1024);
1574   malloc_trim (0);
1575 }
1576 #endif
1577
1578
1579 /* end of gnunet-service-arm.c */