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