- client-side implementation of peer queries
[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   {
670     match_uid =
671       GNUNET_CONFIGURATION_get_value_yesno (cfg, sl->name,
672                                             "UNIX_MATCH_UID");
673     match_gid =
674       GNUNET_CONFIGURATION_get_value_yesno (cfg, sl->name,
675                                             "UNIX_MATCH_GID");
676     GNUNET_DISK_fix_permissions (((const struct sockaddr_un *)sa)->sun_path,
677                                  match_uid,
678                                  match_gid);
679
680   }
681 #endif
682   if (GNUNET_NETWORK_socket_listen (sock, 5) != GNUNET_OK)
683   {
684     GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "listen");
685     GNUNET_break (GNUNET_OK == GNUNET_NETWORK_socket_close (sock));
686     GNUNET_free (sa);
687     return;
688   }
689   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
690               _("ARM now monitors connections to service `%s' at `%s'\n"),
691               sl->name, GNUNET_a2s (sa, addr_len));
692   sli = GNUNET_new (struct ServiceListeningInfo);
693   sli->service_addr = sa;
694   sli->service_addr_len = addr_len;
695   sli->listen_socket = sock;
696   sli->sl = sl;
697   sli->accept_task =
698     GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL, sock,
699                                    &accept_connection, sli);
700   GNUNET_CONTAINER_DLL_insert (sl->listen_head, sl->listen_tail, sli);
701 }
702
703
704 /**
705  * Remove and free an entry in the service list.  Listen sockets
706  * must have already been cleaned up.  Only to be called during shutdown.
707  *
708  * @param sl entry to free
709  */
710 static void
711 free_service (struct ServiceList *sl)
712 {
713   GNUNET_assert (GNUNET_YES == in_shutdown);
714   GNUNET_CONTAINER_DLL_remove (running_head, running_tail, sl);
715   GNUNET_assert (NULL == sl->listen_head);
716   GNUNET_free_non_null (sl->config);
717   GNUNET_free_non_null (sl->binary);
718   GNUNET_free (sl->name);
719   GNUNET_free (sl);
720 }
721
722
723 /**
724  * Handle START-message.
725  *
726  * @param cls closure (always NULL)
727  * @param client identification of the client
728  * @param message the actual message
729  * @return #GNUNET_OK to keep the connection open,
730  *         #GNUNET_SYSERR to close it (signal serious error)
731  */
732 static void
733 handle_start (void *cls, struct GNUNET_SERVER_Client *client,
734               const struct GNUNET_MessageHeader *message)
735 {
736   const char *servicename;
737   struct ServiceList *sl;
738   uint16_t size;
739   uint64_t request_id;
740   struct GNUNET_ARM_Message *amsg;
741
742   amsg = (struct GNUNET_ARM_Message *) message;
743   request_id = GNUNET_ntohll (amsg->request_id);
744   size = ntohs (amsg->header.size);
745   size -= sizeof (struct GNUNET_ARM_Message);
746   servicename = (const char *) &amsg[1];
747   if ((size == 0) || (servicename[size - 1] != '\0'))
748   {
749     GNUNET_break (0);
750     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
751     return;
752   }
753   if (GNUNET_YES == in_shutdown)
754   {
755     signal_result (client, servicename, request_id,
756                    GNUNET_ARM_RESULT_IN_SHUTDOWN);
757     GNUNET_SERVER_receive_done (client, GNUNET_OK);
758     return;
759   }
760   sl = find_service (servicename);
761   if (NULL == sl)
762   {
763     signal_result (client, servicename, request_id,
764                    GNUNET_ARM_RESULT_IS_NOT_KNOWN);
765     GNUNET_SERVER_receive_done (client, GNUNET_OK);
766     return;
767   }
768   sl->is_default = GNUNET_YES;
769   if (NULL != sl->proc)
770   {
771     signal_result (client, servicename, request_id,
772                    GNUNET_ARM_RESULT_IS_STARTED_ALREADY);
773     GNUNET_SERVER_receive_done (client, GNUNET_OK);
774     return;
775   }
776   start_process (sl, client, request_id);
777   GNUNET_SERVER_receive_done (client, GNUNET_OK);
778 }
779
780
781 /**
782  * Start a shutdown sequence.
783  *
784  * @param cls closure (refers to service)
785  * @param tc task context
786  */
787 static void
788 trigger_shutdown (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
789 {
790   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Triggering shutdown\n");
791   GNUNET_SCHEDULER_shutdown ();
792 }
793
794
795 /**
796  * Handle STOP-message.
797  *
798  * @param cls closure (always NULL)
799  * @param client identification of the client
800  * @param message the actual message
801  * @return #GNUNET_OK to keep the connection open,
802  *         #GNUNET_SYSERR to close it (signal serious error)
803  */
804 static void
805 handle_stop (void *cls, struct GNUNET_SERVER_Client *client,
806              const struct GNUNET_MessageHeader *message)
807 {
808   struct ServiceList *sl;
809   const char *servicename;
810   uint16_t size;
811   uint64_t request_id;
812   struct GNUNET_ARM_Message *amsg;
813
814   amsg = (struct GNUNET_ARM_Message *) message;
815   request_id = GNUNET_ntohll (amsg->request_id);
816   size = ntohs (amsg->header.size);
817   size -= sizeof (struct GNUNET_ARM_Message);
818   servicename = (const char *) &amsg[1];
819   if ((size == 0) || (servicename[size - 1] != '\0'))
820     {
821       GNUNET_break (0);
822       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
823       return;
824     }
825   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
826               _("Preparing to stop `%s'\n"),
827               servicename);
828   if (0 == strcasecmp (servicename, "arm"))
829   {
830     broadcast_status (servicename, GNUNET_ARM_SERVICE_STOPPING, NULL);
831     signal_result (client, servicename, request_id, GNUNET_ARM_RESULT_STOPPING);
832     GNUNET_SERVER_client_persist_ (client);
833     GNUNET_SCHEDULER_add_now (trigger_shutdown, NULL);
834     GNUNET_SERVER_receive_done (client, GNUNET_OK);
835     return;
836   }
837   sl = find_service (servicename);
838   if (sl == NULL)
839     {
840       signal_result (client, servicename, request_id, GNUNET_ARM_RESULT_IS_NOT_KNOWN);
841       GNUNET_SERVER_receive_done (client, GNUNET_OK);
842       return;
843     }
844   sl->is_default = GNUNET_NO;
845   if (GNUNET_YES == in_shutdown)
846     {
847       /* shutdown in progress */
848       signal_result (client, servicename, request_id, GNUNET_ARM_RESULT_IN_SHUTDOWN);
849       GNUNET_SERVER_receive_done (client, GNUNET_OK);
850       return;
851     }
852   if (NULL != sl->killing_client)
853   {
854     /* killing already in progress */
855     signal_result (client, servicename, request_id,
856                    GNUNET_ARM_RESULT_IS_STOPPING_ALREADY);
857     GNUNET_SERVER_receive_done (client, GNUNET_OK);
858     return;
859   }
860   if (NULL == sl->proc)
861   {
862     /* process is down */
863     signal_result (client, servicename, request_id,
864                    GNUNET_ARM_RESULT_IS_STOPPED_ALREADY);
865     GNUNET_SERVER_receive_done (client, GNUNET_OK);
866     return;
867   }
868   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
869               "Sending kill signal to service `%s', waiting for process to die.\n",
870               servicename);
871   broadcast_status (servicename, GNUNET_ARM_SERVICE_STOPPING, NULL);
872   /* no signal_start - only when it's STOPPED */
873   sl->killed_at = GNUNET_TIME_absolute_get ();
874   if (0 != GNUNET_OS_process_kill (sl->proc, GNUNET_TERM_SIG))
875     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
876   sl->killing_client = client;
877   sl->killing_client_request_id = request_id;
878   GNUNET_SERVER_client_keep (client);
879   GNUNET_SERVER_receive_done (client, GNUNET_OK);
880 }
881
882
883 /**
884  * Handle LIST-message.
885  *
886  * @param cls closure (always NULL)
887  * @param client identification of the client
888  * @param message the actual message
889  */
890 static void
891 handle_list (void *cls, struct GNUNET_SERVER_Client *client,
892              const struct GNUNET_MessageHeader *message)
893 {
894   struct GNUNET_ARM_ListResultMessage *msg;
895   struct GNUNET_ARM_Message *request;
896   size_t string_list_size;
897   size_t total_size;
898   struct ServiceList *sl;
899   uint16_t count;
900
901   if (NULL == client)
902     return;
903
904   request = (struct GNUNET_ARM_Message *) message;
905   GNUNET_break (0 == ntohl (request->reserved));
906   count = 0;
907   string_list_size = 0;
908   /* first count the running processes get their name's size */
909   for (sl = running_head; NULL != sl; sl = sl->next)
910   {
911     if (NULL != sl->proc)
912     {
913       string_list_size += strlen (sl->name);
914       string_list_size += strlen (sl->binary);
915       string_list_size += 4;
916       count++;
917     }
918   }
919
920   total_size = sizeof (struct GNUNET_ARM_ListResultMessage)
921                + string_list_size;
922   msg = GNUNET_malloc (total_size);
923   msg->arm_msg.header.size = total_size;
924   msg->arm_msg.header.type = GNUNET_MESSAGE_TYPE_ARM_LIST_RESULT;
925   msg->arm_msg.reserved = htonl (0);
926   msg->arm_msg.request_id = GNUNET_ntohll (request->request_id);
927   msg->count = count;
928
929   char *pos = (char *)&msg[1];
930   for (sl = running_head; NULL != sl; sl = sl->next)
931   {
932     if (NULL != sl->proc)
933     {
934       size_t s = strlen (sl->name) + strlen (sl->binary) + 4;
935       GNUNET_snprintf (pos, s, "%s (%s)", sl->name, sl->binary);
936       pos += s;
937     }
938   }
939   GNUNET_SERVER_notify_transmit_ready (client,
940                                        total_size,
941                                        GNUNET_TIME_UNIT_FOREVER_REL,
942                                        &write_list_result, msg);
943   GNUNET_SERVER_receive_done (client, GNUNET_OK);
944 }
945
946
947 /**
948  * We are done with everything.  Stop remaining
949  * tasks, signal handler and the server.
950  */
951 static void
952 do_shutdown ()
953 {
954   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Last shutdown phase\n");
955   if (NULL != notifier)
956   {
957     GNUNET_SERVER_notification_context_destroy (notifier);
958     notifier = NULL;
959   }
960   if (NULL != server)
961     {
962       GNUNET_SERVER_destroy (server);
963       server = NULL;
964     }
965   if (GNUNET_SCHEDULER_NO_TASK != child_death_task)
966     {
967       GNUNET_SCHEDULER_cancel (child_death_task);
968       child_death_task = GNUNET_SCHEDULER_NO_TASK;
969     }
970 }
971
972
973 /**
974  * Count how many services are still active.
975  *
976  * @param running_head list of services
977  * @return number of active services found
978  */
979 static unsigned int
980 list_count (struct ServiceList *running_head)
981 {
982   struct ServiceList *i;
983   unsigned int res = 0;
984
985   for (res = 0, i = running_head; i; i = i->next, res++)
986     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
987                 "%s\n",
988                 i->name);
989   return res;
990 }
991
992
993 /**
994  * Task run for shutdown.
995  *
996  * @param cls closure, NULL if we need to self-restart
997  * @param tc context
998  */
999 static void
1000 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1001 {
1002   struct ServiceList *pos;
1003   struct ServiceList *nxt;
1004   struct ServiceListeningInfo *sli;
1005
1006   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1007               "First shutdown phase\n");
1008   if (GNUNET_SCHEDULER_NO_TASK != child_restart_task)
1009   {
1010     GNUNET_SCHEDULER_cancel (child_restart_task);
1011     child_restart_task = GNUNET_SCHEDULER_NO_TASK;
1012   }
1013   in_shutdown = GNUNET_YES;
1014   /* first, stop listening */
1015   for (pos = running_head; NULL != pos; pos = pos->next)
1016   {
1017     while (NULL != (sli = pos->listen_head))
1018       {
1019         GNUNET_CONTAINER_DLL_remove (pos->listen_head,
1020                                      pos->listen_tail, sli);
1021         if (sli->accept_task != GNUNET_SCHEDULER_NO_TASK)
1022           {
1023             GNUNET_SCHEDULER_cancel (sli->accept_task);
1024             sli->accept_task = GNUNET_SCHEDULER_NO_TASK;
1025           }
1026         GNUNET_break (GNUNET_OK ==
1027                       GNUNET_NETWORK_socket_close (sli->listen_socket));
1028         GNUNET_free (sli->service_addr);
1029         GNUNET_free (sli);
1030       }
1031   }
1032   /* then, shutdown all existing service processes */
1033   nxt = running_head;
1034   while (NULL != (pos = nxt))
1035   {
1036     nxt = pos->next;
1037     if (pos->proc != NULL)
1038     {
1039       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1040                   "Stopping service `%s'\n",
1041                   pos->name);
1042       pos->killed_at = GNUNET_TIME_absolute_get ();
1043       if (0 != GNUNET_OS_process_kill (pos->proc, GNUNET_TERM_SIG))
1044         GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
1045     }
1046     else
1047     {
1048       free_service (pos);
1049     }
1050   }
1051   /* finally, should all service processes be already gone, terminate for real */
1052   if (running_head == NULL)
1053     do_shutdown ();
1054   else
1055     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1056                 "Delaying shutdown, have %u childs still running\n",
1057                 list_count (running_head));
1058 }
1059
1060
1061 /**
1062  * Task run whenever it is time to restart a child that died.
1063  *
1064  * @param cls closure, always NULL
1065  * @param tc context
1066  */
1067 static void
1068 delayed_restart_task (void *cls,
1069                       const struct GNUNET_SCHEDULER_TaskContext *tc)
1070 {
1071   struct ServiceList *sl;
1072   struct GNUNET_TIME_Relative lowestRestartDelay;
1073   struct ServiceListeningInfo *sli;
1074
1075   child_restart_task = GNUNET_SCHEDULER_NO_TASK;
1076   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
1077     return;
1078   GNUNET_assert (GNUNET_NO == in_shutdown);
1079   lowestRestartDelay = GNUNET_TIME_UNIT_FOREVER_REL;
1080
1081   /* check for services that need to be restarted due to
1082    * configuration changes or because the last restart failed */
1083   for (sl = running_head; NULL != sl; sl = sl->next)
1084   {
1085     if (NULL != sl->proc)
1086       continue;
1087     /* service is currently not running */
1088     if (0 == GNUNET_TIME_absolute_get_remaining (sl->restart_at).rel_value_us)
1089     {
1090       /* restart is now allowed */
1091       if (sl->is_default)
1092       {
1093         /* process should run by default, start immediately */
1094         GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1095                     _("Restarting service `%s'.\n"), sl->name);
1096         start_process (sl, NULL, 0);
1097       }
1098       else
1099       {
1100         /* process is run on-demand, ensure it is re-started if there is demand */
1101         for (sli = sl->listen_head; NULL != sli; sli = sli->next)
1102           if (GNUNET_SCHEDULER_NO_TASK == sli->accept_task)
1103           {
1104             /* accept was actually paused, so start it again */
1105             sli->accept_task =
1106               GNUNET_SCHEDULER_add_read_net
1107               (GNUNET_TIME_UNIT_FOREVER_REL, sli->listen_socket,
1108                &accept_connection, sli);
1109           }
1110       }
1111     }
1112     else
1113     {
1114       /* update calculation for earliest time to reactivate a service */
1115       lowestRestartDelay =
1116         GNUNET_TIME_relative_min (lowestRestartDelay,
1117                                   GNUNET_TIME_absolute_get_remaining
1118                                   (sl->restart_at));
1119     }
1120   }
1121   if (lowestRestartDelay.rel_value_us != GNUNET_TIME_UNIT_FOREVER_REL.rel_value_us)
1122   {
1123     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1124                 "Will restart process in %s\n",
1125                 GNUNET_STRINGS_relative_time_to_string (lowestRestartDelay, GNUNET_YES));
1126     child_restart_task =
1127       GNUNET_SCHEDULER_add_delayed_with_priority (lowestRestartDelay,
1128                                                   GNUNET_SCHEDULER_PRIORITY_IDLE,
1129                                                   &delayed_restart_task, NULL);
1130   }
1131 }
1132
1133
1134 /**
1135  * Task triggered whenever we receive a SIGCHLD (child
1136  * process died).
1137  *
1138  * @param cls closure, NULL if we need to self-restart
1139  * @param tc context
1140  */
1141 static void
1142 maint_child_death (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1143 {
1144   struct ServiceList *pos;
1145   struct ServiceList *next;
1146   struct ServiceListeningInfo *sli;
1147   const char *statstr;
1148   int statcode;
1149   int ret;
1150   char c[16];
1151   enum GNUNET_OS_ProcessStatusType statusType;
1152   unsigned long statusCode;
1153   const struct GNUNET_DISK_FileHandle *pr;
1154
1155   pr = GNUNET_DISK_pipe_handle (sigpipe, GNUNET_DISK_PIPE_END_READ);
1156   child_death_task = GNUNET_SCHEDULER_NO_TASK;
1157   if (0 == (tc->reason & GNUNET_SCHEDULER_REASON_READ_READY))
1158     {
1159       /* shutdown scheduled us, ignore! */
1160       child_death_task =
1161         GNUNET_SCHEDULER_add_read_file (GNUNET_TIME_UNIT_FOREVER_REL,
1162                                         pr, &maint_child_death, NULL);
1163       return;
1164     }
1165   /* consume the signal */
1166   GNUNET_break (0 < GNUNET_DISK_file_read (pr, &c, sizeof (c)));
1167
1168   /* check for services that died (WAITPID) */
1169   next = running_head;
1170   while (NULL != (pos = next))
1171     {
1172       next = pos->next;
1173
1174       if (pos->proc == NULL)
1175       {
1176         if (GNUNET_YES == in_shutdown)
1177           free_service (pos);
1178         continue;
1179       }
1180       if ((GNUNET_SYSERR ==
1181            (ret =
1182             GNUNET_OS_process_status (pos->proc, &statusType, &statusCode)))
1183           || ((ret == GNUNET_NO) || (statusType == GNUNET_OS_PROCESS_STOPPED)
1184               || (statusType == GNUNET_OS_PROCESS_RUNNING)))
1185         continue;
1186       if (statusType == GNUNET_OS_PROCESS_EXITED)
1187       {
1188         statstr = _( /* process termination method */ "exit");
1189         statcode = statusCode;
1190       }
1191       else if (statusType == GNUNET_OS_PROCESS_SIGNALED)
1192       {
1193         statstr = _( /* process termination method */ "signal");
1194         statcode = statusCode;
1195       }
1196       else
1197       {
1198         statstr = _( /* process termination method */ "unknown");
1199         statcode = 0;
1200       }
1201       if (0 != pos->killed_at.abs_value_us)
1202       {
1203         GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1204                     _("Service `%s' took %s to terminate\n"),
1205                     pos->name,
1206                     GNUNET_STRINGS_relative_time_to_string (GNUNET_TIME_absolute_get_duration (pos->killed_at), GNUNET_YES));
1207       }
1208       GNUNET_OS_process_destroy (pos->proc);
1209       pos->proc = NULL;
1210       broadcast_status (pos->name, GNUNET_ARM_SERVICE_STOPPED, NULL);
1211       if (NULL != pos->killing_client)
1212       {
1213         signal_result (pos->killing_client, pos->name,
1214             pos->killing_client_request_id, GNUNET_ARM_RESULT_STOPPED);
1215         GNUNET_SERVER_client_drop (pos->killing_client);
1216         pos->killing_client = NULL;
1217         pos->killing_client_request_id = 0;
1218       }
1219       if (GNUNET_YES != in_shutdown)
1220       {
1221         if ((statusType == GNUNET_OS_PROCESS_EXITED) && (statcode == 0))
1222         {
1223           /* process terminated normally, allow restart at any time */
1224           pos->restart_at.abs_value_us = 0;
1225           GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1226               _("Service `%s' terminated normally, will restart at any time\n"),
1227               pos->name);
1228           /* process can still be re-started on-demand, ensure it is re-started if there is demand */
1229           for (sli = pos->listen_head; NULL != sli; sli = sli->next)
1230           {
1231             GNUNET_break (GNUNET_SCHEDULER_NO_TASK == sli->accept_task);
1232             sli->accept_task =
1233                 GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
1234                     sli->listen_socket, &accept_connection, sli);
1235           }
1236         }
1237         else
1238         {
1239           if (0 == (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
1240             GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1241                 _("Service `%s' terminated with status %s/%d, will restart in %s\n"),
1242                 pos->name, statstr, statcode,
1243                 GNUNET_STRINGS_relative_time_to_string (pos->backoff, GNUNET_YES));
1244           /* schedule restart */
1245           pos->restart_at = GNUNET_TIME_relative_to_absolute (pos->backoff);
1246           pos->backoff = GNUNET_TIME_STD_BACKOFF (pos->backoff);
1247           if (GNUNET_SCHEDULER_NO_TASK != child_restart_task)
1248             GNUNET_SCHEDULER_cancel (child_restart_task);
1249           child_restart_task = GNUNET_SCHEDULER_add_with_priority (
1250             GNUNET_SCHEDULER_PRIORITY_IDLE, &delayed_restart_task, NULL);
1251         }
1252       }
1253       else
1254       {
1255         free_service (pos);
1256       }
1257     }
1258   child_death_task = GNUNET_SCHEDULER_add_read_file (
1259       GNUNET_TIME_UNIT_FOREVER_REL, pr, &maint_child_death, NULL);
1260   if ((NULL == running_head) && (GNUNET_YES == in_shutdown))
1261     do_shutdown ();
1262   else if (GNUNET_YES == in_shutdown)
1263     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1264         "Delaying shutdown after child's death, still have %u children\n",
1265         list_count (running_head));
1266
1267 }
1268
1269
1270 /**
1271  * Signal handler called for SIGCHLD.  Triggers the
1272  * respective handler by writing to the trigger pipe.
1273  */
1274 static void
1275 sighandler_child_death ()
1276 {
1277   static char c;
1278   int old_errno = errno;        /* back-up errno */
1279
1280   GNUNET_break (1 ==
1281                 GNUNET_DISK_file_write (GNUNET_DISK_pipe_handle
1282                                         (sigpipe, GNUNET_DISK_PIPE_END_WRITE),
1283                                         &c, sizeof (c)));
1284   errno = old_errno;            /* restore errno */
1285 }
1286
1287
1288 /**
1289  * Setup our service record for the given section in the configuration file
1290  * (assuming the section is for a service).
1291  *
1292  * @param cls unused
1293  * @param section a section in the configuration file
1294  * @return #GNUNET_OK (continue)
1295  */
1296 static void
1297 setup_service (void *cls, const char *section)
1298 {
1299   struct ServiceList *sl;
1300   char *binary;
1301   char *config;
1302   struct stat sbuf;
1303   struct sockaddr **addrs;
1304   socklen_t *addr_lens;
1305   int ret;
1306   unsigned int i;
1307
1308   if (strcasecmp (section, "arm") == 0)
1309     return;
1310   if (GNUNET_OK !=
1311       GNUNET_CONFIGURATION_get_value_string (cfg, section, "BINARY", &binary))
1312   {
1313     /* not a service section */
1314     return;
1315   }
1316   if ((GNUNET_YES ==
1317        GNUNET_CONFIGURATION_have_value (cfg, section, "USER_SERVICE")) &&
1318       (GNUNET_YES ==
1319        GNUNET_CONFIGURATION_get_value_yesno (cfg, section, "USER_SERVICE")))
1320   {
1321     if (GNUNET_NO == start_user)
1322     {
1323       GNUNET_free (binary);
1324       return; /* user service, and we don't deal with those */
1325     }
1326   }
1327   else
1328   {
1329     if (GNUNET_NO == start_system)
1330     {
1331       GNUNET_free (binary);
1332       return; /* system service, and we don't deal with those */
1333     }
1334   }
1335   sl = find_service (section);
1336   if (NULL != sl)
1337   {
1338     /* got the same section twice!? */
1339     GNUNET_break (0);
1340     GNUNET_free (binary);
1341     return;
1342   }
1343   config = NULL;
1344   if (( (GNUNET_OK !=
1345          GNUNET_CONFIGURATION_get_value_filename (cfg, section, "CONFIG",
1346                                                   &config)) &&
1347         (GNUNET_OK !=
1348          GNUNET_CONFIGURATION_get_value_filename (cfg, "PATHS", "DEFAULTCONFIG",
1349                                                   &config)) ) ||
1350       (0 != STAT (config, &sbuf)))
1351   {
1352     if (NULL != config)
1353     {
1354       GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_WARNING,
1355                                  section, "CONFIG",
1356                                  STRERROR (errno));
1357       GNUNET_free (config);
1358       config = NULL;
1359     }
1360   }
1361   sl = GNUNET_new (struct ServiceList);
1362   sl->name = GNUNET_strdup (section);
1363   sl->binary = binary;
1364   sl->config = config;
1365   sl->backoff = GNUNET_TIME_UNIT_MILLISECONDS;
1366   sl->restart_at = GNUNET_TIME_UNIT_FOREVER_ABS;
1367 #if WINDOWS
1368   sl->pipe_control = GNUNET_YES;
1369 #else
1370   if (GNUNET_CONFIGURATION_have_value (cfg, section, "PIPECONTROL"))
1371     sl->pipe_control = GNUNET_CONFIGURATION_get_value_yesno (cfg, section, "PIPECONTROL");
1372 #endif
1373   GNUNET_CONTAINER_DLL_insert (running_head, running_tail, sl);
1374
1375   if (GNUNET_YES !=
1376       GNUNET_CONFIGURATION_get_value_yesno (cfg, section, "AUTOSTART"))
1377     return;
1378   if (0 >= (ret = GNUNET_SERVICE_get_server_addresses (section, cfg,
1379                                                        &addrs, &addr_lens)))
1380     return;
1381   /* this will free (or capture) addrs[i] */
1382   for (i = 0; i < ret; i++)
1383     create_listen_socket (addrs[i], addr_lens[i], sl);
1384   GNUNET_free (addrs);
1385   GNUNET_free (addr_lens);
1386 }
1387
1388
1389 /**
1390  * A client connected, add it to the notification context.
1391  *
1392  * @param cls closure
1393  * @param client identification of the client
1394  */
1395 static void
1396 handle_client_connecting (void *cls, struct GNUNET_SERVER_Client *client)
1397 {
1398   /* All clients are considered to be of the "monitor" kind
1399    * (that is, they don't affect ARM shutdown).
1400    */
1401   if (NULL != client)
1402     GNUNET_SERVER_client_mark_monitor (client);
1403 }
1404
1405
1406 /**
1407  * Handle MONITOR-message.
1408  *
1409  * @param cls closure (always NULL)
1410  * @param client identification of the client
1411  * @param message the actual message
1412  * @return #GNUNET_OK to keep the connection open,
1413  *         #GNUNET_SYSERR to close it (signal serious error)
1414  */
1415 static void
1416 handle_monitor (void *cls, struct GNUNET_SERVER_Client *client,
1417              const struct GNUNET_MessageHeader *message)
1418 {
1419   /* Removal is handled by the server implementation, internally. */
1420   if ((NULL != client) && (NULL != notifier))
1421   {
1422     GNUNET_SERVER_notification_context_add (notifier, client);
1423     broadcast_status ("arm", GNUNET_ARM_SERVICE_MONITORING_STARTED, client);
1424     GNUNET_SERVER_receive_done (client, GNUNET_OK);
1425   }
1426 }
1427
1428
1429 /**
1430  * Process arm requests.
1431  *
1432  * @param cls closure
1433  * @param serv the initialized server
1434  * @param c configuration to use
1435  */
1436 static void
1437 run (void *cls, struct GNUNET_SERVER_Handle *serv,
1438      const struct GNUNET_CONFIGURATION_Handle *c)
1439 {
1440   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
1441     {&handle_start, NULL, GNUNET_MESSAGE_TYPE_ARM_START, 0},
1442     {&handle_stop, NULL, GNUNET_MESSAGE_TYPE_ARM_STOP, 0},
1443     {&handle_monitor, NULL, GNUNET_MESSAGE_TYPE_ARM_MONITOR,
1444      sizeof (struct GNUNET_MessageHeader)},
1445     {&handle_list, NULL, GNUNET_MESSAGE_TYPE_ARM_LIST,
1446      sizeof (struct GNUNET_ARM_Message)},
1447     {NULL, NULL, 0, 0}
1448   };
1449   char *defaultservices;
1450   const char *pos;
1451   struct ServiceList *sl;
1452
1453   cfg = c;
1454   server = serv;
1455   GNUNET_assert (NULL != serv);
1456   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
1457                                 &shutdown_task,
1458                                 NULL);
1459   child_death_task =
1460     GNUNET_SCHEDULER_add_read_file (GNUNET_TIME_UNIT_FOREVER_REL,
1461                                     GNUNET_DISK_pipe_handle (sigpipe,
1462                                                              GNUNET_DISK_PIPE_END_READ),
1463                                     &maint_child_death, NULL);
1464
1465   if (GNUNET_OK !=
1466       GNUNET_CONFIGURATION_get_value_string (cfg, "ARM", "GLOBAL_PREFIX",
1467                                              &prefix_command))
1468     prefix_command = GNUNET_strdup ("");
1469   if (GNUNET_OK !=
1470       GNUNET_CONFIGURATION_get_value_string (cfg, "ARM", "GLOBAL_POSTFIX",
1471                                              &final_option))
1472     final_option = GNUNET_strdup ("");
1473   if (GNUNET_YES ==
1474       GNUNET_CONFIGURATION_get_value_yesno (cfg, "ARM", "USER_ONLY"))
1475   {
1476     GNUNET_break (GNUNET_YES == start_user);
1477     start_system = GNUNET_NO;
1478   }
1479   if (GNUNET_YES ==
1480       GNUNET_CONFIGURATION_get_value_yesno (cfg, "ARM", "SYSTEM_ONLY"))
1481   {
1482     GNUNET_break (GNUNET_YES == start_system);
1483     start_user = GNUNET_NO;
1484   }
1485   GNUNET_CONFIGURATION_iterate_sections (cfg, &setup_service, NULL);
1486
1487   /* start default services... */
1488   if (GNUNET_OK ==
1489       GNUNET_CONFIGURATION_get_value_string (cfg,
1490                                              "ARM",
1491                                              "DEFAULTSERVICES",
1492                                              &defaultservices))
1493   {
1494     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1495                 _("Starting default services `%s'\n"),
1496                 defaultservices);
1497     if (0 < strlen (defaultservices))
1498     {
1499       for (pos = strtok (defaultservices, " "); NULL != pos;
1500            pos = strtok (NULL, " "))
1501       {
1502         sl = find_service (pos);
1503         if (NULL == sl)
1504         {
1505           GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1506                       _("Default service `%s' not configured correctly!\n"),
1507                       pos);
1508           continue;
1509         }
1510         sl->is_default = GNUNET_YES;
1511         start_process (sl, NULL, 0);
1512       }
1513     }
1514     GNUNET_free (defaultservices);
1515   }
1516   else
1517   {
1518     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1519                 _("No default services configured, GNUnet will not really start right now.\n"));
1520   }
1521
1522   notifier =
1523       GNUNET_SERVER_notification_context_create (server, MAX_NOTIFY_QUEUE);
1524   GNUNET_SERVER_connect_notify (server, handle_client_connecting, NULL);
1525   /* process client requests */
1526   GNUNET_SERVER_add_handlers (server, handlers);
1527 }
1528
1529
1530 /**
1531  * The main function for the arm service.
1532  *
1533  * @param argc number of arguments from the command line
1534  * @param argv command line arguments
1535  * @return 0 ok, 1 on error
1536  */
1537 int
1538 main (int argc, char *const *argv)
1539 {
1540   int ret;
1541   struct GNUNET_SIGNAL_Context *shc_chld;
1542
1543   sigpipe = GNUNET_DISK_pipe (GNUNET_NO, GNUNET_NO, GNUNET_NO, GNUNET_NO);
1544   GNUNET_assert (sigpipe != NULL);
1545   shc_chld =
1546     GNUNET_SIGNAL_handler_install (GNUNET_SIGCHLD, &sighandler_child_death);
1547   ret =
1548     (GNUNET_OK ==
1549      GNUNET_SERVICE_run (argc, argv, "arm",
1550                          GNUNET_SERVICE_OPTION_MANUAL_SHUTDOWN, &run, NULL)) ? 0 : 1;
1551   GNUNET_SIGNAL_handler_uninstall (shc_chld);
1552   shc_chld = NULL;
1553   GNUNET_DISK_pipe_close (sigpipe);
1554   sigpipe = NULL;
1555   return ret;
1556 }
1557
1558
1559 #ifdef LINUX
1560 #include <malloc.h>
1561
1562 /**
1563  * MINIMIZE heap size (way below 128k) since this process doesn't need much.
1564  */
1565 void __attribute__ ((constructor)) GNUNET_ARM_memory_init ()
1566 {
1567   mallopt (M_TRIM_THRESHOLD, 4 * 1024);
1568   mallopt (M_TOP_PAD, 1 * 1024);
1569   malloc_trim (0);
1570 }
1571 #endif
1572
1573
1574 /* end of gnunet-service-arm.c */