arm related changes to util things, enabling leaky sockets and shutdown messages...
[oweals/gnunet.git] / src / util / service.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 2, 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 util/service.c
23  * @brief functions related to starting services
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet_common.h"
28 #include "gnunet_configuration_lib.h"
29 #include "gnunet_crypto_lib.h"
30 #include "gnunet_directories.h"
31 #include "gnunet_disk_lib.h"
32 #include "gnunet_getopt_lib.h"
33 #include "gnunet_os_lib.h"
34 #include "gnunet_protocols.h"
35 #include "gnunet_server_lib.h"
36 #include "gnunet_service_lib.h"
37
38 #define DEBUG_SERVICE GNUNET_NO
39
40 /* ******************* access control ******************** */
41
42 /**
43  * @brief IPV4 network in CIDR notation.
44  */
45 struct IPv4NetworkSet
46 {
47   struct in_addr network;
48   struct in_addr netmask;
49 };
50
51 /**
52  * @brief network in CIDR notation for IPV6.
53  */
54 struct IPv6NetworkSet
55 {
56   struct in6_addr network;
57   struct in6_addr netmask;
58 };
59
60
61 /**
62  * Parse a network specification. The argument specifies
63  * a list of networks. The format is
64  * <tt>[network/netmask;]*</tt> (no whitespace, must be terminated
65  * with a semicolon). The network must be given in dotted-decimal
66  * notation. The netmask can be given in CIDR notation (/16) or
67  * in dotted-decimal (/255.255.0.0).
68  * <p>
69  * @param routeList a string specifying the forbidden networks
70  * @return the converted list, NULL if the synatx is flawed
71  */
72 static struct IPv4NetworkSet *
73 parse_ipv4_specification (const char *routeList)
74 {
75   unsigned int count;
76   unsigned int i;
77   unsigned int j;
78   unsigned int len;
79   int cnt;
80   unsigned int pos;
81   unsigned int temps[8];
82   int slash;
83   struct IPv4NetworkSet *result;
84
85   if (routeList == NULL)
86     return NULL;
87   len = strlen (routeList);
88   if (len == 0)
89     return NULL;
90   count = 0;
91   for (i = 0; i < len; i++)
92     if (routeList[i] == ';')
93       count++;
94   result = GNUNET_malloc (sizeof (struct IPv4NetworkSet) * (count + 1));
95   /* add termination */
96   memset (result, 0, sizeof (struct IPv4NetworkSet) * (count + 1));
97   i = 0;
98   pos = 0;
99   while (i < count)
100     {
101       cnt = sscanf (&routeList[pos],
102                     "%u.%u.%u.%u/%u.%u.%u.%u;",
103                     &temps[0],
104                     &temps[1],
105                     &temps[2],
106                     &temps[3], &temps[4], &temps[5], &temps[6], &temps[7]);
107       if (cnt == 8)
108         {
109           for (j = 0; j < 8; j++)
110             if (temps[j] > 0xFF)
111               {
112                 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
113                             _("Invalid format for IP: `%s'\n"),
114                             &routeList[pos]);
115                 GNUNET_free (result);
116                 return NULL;
117               }
118           result[i].network.s_addr
119             =
120             htonl ((temps[0] << 24) + (temps[1] << 16) + (temps[2] << 8) +
121                    temps[3]);
122           result[i].netmask.s_addr =
123             htonl ((temps[4] << 24) + (temps[5] << 16) + (temps[6] << 8) +
124                    temps[7]);
125           while (routeList[pos] != ';')
126             pos++;
127           pos++;
128           i++;
129           continue;
130         }
131       /* try second notation */
132       cnt = sscanf (&routeList[pos],
133                     "%u.%u.%u.%u/%u;",
134                     &temps[0], &temps[1], &temps[2], &temps[3], &slash);
135       if (cnt == 5)
136         {
137           for (j = 0; j < 4; j++)
138             if (temps[j] > 0xFF)
139               {
140                 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
141                             _("Invalid format for IP: `%s'\n"),
142                             &routeList[pos]);
143                 GNUNET_free (result);
144                 return NULL;
145               }
146           result[i].network.s_addr
147             =
148             htonl ((temps[0] << 24) + (temps[1] << 16) + (temps[2] << 8) +
149                    temps[3]);
150           if ((slash <= 32) && (slash >= 0))
151             {
152               result[i].netmask.s_addr = 0;
153               while (slash > 0)
154                 {
155                   result[i].netmask.s_addr
156                     = (result[i].netmask.s_addr >> 1) + 0x80000000;
157                   slash--;
158                 }
159               result[i].netmask.s_addr = htonl (result[i].netmask.s_addr);
160               while (routeList[pos] != ';')
161                 pos++;
162               pos++;
163               i++;
164               continue;
165             }
166           else
167             {
168               GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
169                           _
170                           ("Invalid network notation ('/%d' is not legal in IPv4 CIDR)."),
171                           slash);
172               GNUNET_free (result);
173               return NULL;      /* error */
174             }
175         }
176       /* try third notation */
177       slash = 32;
178       cnt = sscanf (&routeList[pos],
179                     "%u.%u.%u.%u;",
180                     &temps[0], &temps[1], &temps[2], &temps[3]);
181       if (cnt == 4)
182         {
183           for (j = 0; j < 4; j++)
184             if (temps[j] > 0xFF)
185               {
186                 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
187                             _("Invalid format for IP: `%s'\n"),
188                             &routeList[pos]);
189                 GNUNET_free (result);
190                 return NULL;
191               }
192           result[i].network.s_addr
193             =
194             htonl ((temps[0] << 24) + (temps[1] << 16) + (temps[2] << 8) +
195                    temps[3]);
196           result[i].netmask.s_addr = 0;
197           while (slash > 0)
198             {
199               result[i].netmask.s_addr
200                 = (result[i].netmask.s_addr >> 1) + 0x80000000;
201               slash--;
202             }
203           result[i].netmask.s_addr = htonl (result[i].netmask.s_addr);
204           while (routeList[pos] != ';')
205             pos++;
206           pos++;
207           i++;
208           continue;
209         }
210       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
211                   _("Invalid format for IP: `%s'\n"), &routeList[pos]);
212       GNUNET_free (result);
213       return NULL;              /* error */
214     }
215   if (pos < strlen (routeList))
216     {
217       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
218                   _("Invalid format for IP: `%s'\n"), &routeList[pos]);
219       GNUNET_free (result);
220       return NULL;              /* oops */
221     }
222   return result;                /* ok */
223 }
224
225
226 /**
227  * Parse a network specification. The argument specifies
228  * a list of networks. The format is
229  * <tt>[network/netmask;]*</tt> (no whitespace, must be terminated
230  * with a semicolon). The network must be given in colon-hex
231  * notation.  The netmask must be given in CIDR notation (/16) or
232  * can be omitted to specify a single host.
233  * <p>
234  * @param routeListX a string specifying the forbidden networks
235  * @return the converted list, NULL if the synatx is flawed
236  */
237 static struct IPv6NetworkSet *
238 parse_ipv6_specification (const char *routeListX)
239 {
240   unsigned int count;
241   unsigned int i;
242   unsigned int len;
243   unsigned int pos;
244   int start;
245   int slash;
246   int ret;
247   char *routeList;
248   struct IPv6NetworkSet *result;
249   unsigned int bits;
250   unsigned int off;
251   int save;
252
253   if (routeListX == NULL)
254     return NULL;
255   len = strlen (routeListX);
256   if (len == 0)
257     return NULL;
258   routeList = GNUNET_strdup (routeListX);
259   count = 0;
260   for (i = 0; i < len; i++)
261     if (routeList[i] == ';')
262       count++;
263   if (routeList[len - 1] != ';')
264     {
265       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
266                   _
267                   ("Invalid network notation (does not end with ';': `%s')\n"),
268                   routeList);
269       GNUNET_free (routeList);
270       return NULL;
271     }
272
273   result = GNUNET_malloc (sizeof (struct IPv6NetworkSet) * (count + 1));
274   memset (result, 0, sizeof (struct IPv6NetworkSet) * (count + 1));
275   i = 0;
276   pos = 0;
277   while (i < count)
278     {
279       start = pos;
280       while (routeList[pos] != ';')
281         pos++;
282       slash = pos;
283       while ((slash >= start) && (routeList[slash] != '/'))
284         slash--;
285       if (slash < start)
286         {
287           memset (&result[i].netmask, 0xFF, sizeof (struct in6_addr));
288           slash = pos;
289         }
290       else
291         {
292           routeList[pos] = '\0';
293           ret = inet_pton (AF_INET6,
294                            &routeList[slash + 1], &result[i].netmask);
295           if (ret <= 0)
296             {
297               save = errno;
298               if ((1 != SSCANF (&routeList[slash + 1],
299                                 "%u", &bits)) || (bits >= 128))
300                 {
301                   if (ret == 0)
302                     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
303                                 _("Wrong format `%s' for netmask\n"),
304                                 &routeList[slash + 1]);
305                   else
306                     {
307                       errno = save;
308                       GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR,
309                                            "inet_pton");
310                     }
311                   GNUNET_free (result);
312                   GNUNET_free (routeList);
313                   return NULL;
314                 }
315               off = 0;
316               while (bits > 8)
317                 {
318                   result[i].netmask.s6_addr[off++] = 0xFF;
319                   bits -= 8;
320                 }
321               while (bits > 0)
322                 {
323                   result[i].netmask.s6_addr[off]
324                     = (result[i].netmask.s6_addr[off] >> 1) + 0x80;
325                   bits--;
326                 }
327             }
328         }
329       routeList[slash] = '\0';
330       ret = inet_pton (AF_INET6, &routeList[start], &result[i].network);
331       if (ret <= 0)
332         {
333           if (ret == 0)
334             GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
335                         _("Wrong format `%s' for network\n"),
336                         &routeList[slash + 1]);
337           else
338             GNUNET_log_strerror(GNUNET_ERROR_TYPE_ERROR, "inet_pton");
339           GNUNET_free (result);
340           GNUNET_free (routeList);
341           return NULL;
342         }
343       pos++;
344       i++;
345     }
346   GNUNET_free (routeList);
347   return result;
348 }
349
350
351 /**
352  * Check if the given IP address is in the list of IP addresses.
353  *
354  * @param list a list of networks
355  * @param add the IP to check (in network byte order)
356  * @return GNUNET_NO if the IP is not in the list, GNUNET_YES if it it is
357  */
358 static int
359 check_ipv4_listed (const struct IPv4NetworkSet *list,
360                    const struct in_addr *add)
361 {
362   int i;
363
364   i = 0;
365   if (list == NULL)
366     return GNUNET_NO;
367
368   while ((list[i].network.s_addr != 0) || (list[i].netmask.s_addr != 0))
369     {
370       if ((add->s_addr & list[i].netmask.s_addr) ==
371           (list[i].network.s_addr & list[i].netmask.s_addr))
372         return GNUNET_YES;
373       i++;
374     }
375   return GNUNET_NO;
376 }
377
378 /**
379  * Check if the given IP address is in the list of IP addresses.
380  *
381  * @param list a list of networks
382  * @param ip the IP to check (in network byte order)
383  * @return GNUNET_NO if the IP is not in the list, GNUNET_YES if it it is
384  */
385 static int
386 check_ipv6_listed (const struct IPv6NetworkSet *list,
387                    const struct in6_addr *ip)
388 {
389   unsigned int i;
390   unsigned int j;
391   struct in6_addr zero;
392
393   if (list == NULL)
394     return GNUNET_NO;
395
396   memset (&zero, 0, sizeof (struct in6_addr));
397   i = 0;
398 NEXT:
399   while (memcmp (&zero, &list[i].network, sizeof (struct in6_addr)) != 0)
400     {
401       for (j = 0; j < sizeof (struct in6_addr) / sizeof (int); j++)
402         if (((((int *) ip)[j] & ((int *) &list[i].netmask)[j])) !=
403             (((int *) &list[i].network)[j] & ((int *) &list[i].netmask)[j]))
404           {
405             i++;
406             goto NEXT;
407           }
408       return GNUNET_YES;
409     }
410   return GNUNET_NO;
411 }
412
413
414 /* ****************** service struct ****************** */
415
416
417 /**
418  * Context for "service_task".
419  */
420 struct GNUNET_SERVICE_Context
421 {
422   /**
423    * Our configuration.
424    */
425   const struct GNUNET_CONFIGURATION_Handle *cfg;
426
427   /**
428    * Handle for the server.
429    */
430   struct GNUNET_SERVER_Handle *server;
431
432   /**
433    * Scheduler for the server.
434    */
435   struct GNUNET_SCHEDULER_Handle *sched;
436
437   /**
438    * NULL-terminated array of addresses to bind to.
439    */
440   struct sockaddr **addrs;
441
442   /**
443    * Name of our service.
444    */
445   const char *serviceName;
446
447   /**
448    * Main service-specific task to run.
449    */
450   GNUNET_SERVICE_Main task;
451
452   /**
453    * Closure for task.
454    */
455   void *task_cls;
456
457   /**
458    * IPv4 addresses that are not allowed to connect.
459    */
460   struct IPv4NetworkSet *v4_denied;
461
462   /**
463    * IPv6 addresses that are not allowed to connect.
464    */
465   struct IPv6NetworkSet *v6_denied;
466
467   /**
468    * IPv4 addresses that are allowed to connect (if not
469    * set, all are allowed).
470    */
471   struct IPv4NetworkSet *v4_allowed;
472
473   /**
474    * IPv6 addresses that are allowed to connect (if not
475    * set, all are allowed).
476    */
477   struct IPv6NetworkSet *v6_allowed;
478
479   /**
480    * My (default) message handlers.  Adjusted copy
481    * of "defhandlers".
482    */
483   struct GNUNET_SERVER_MessageHandler *my_handlers;
484
485   /**
486    * Idle timeout for server.
487    */
488   struct GNUNET_TIME_Relative timeout;
489
490   /**
491    * Maximum buffer size for the server.
492    */
493   size_t maxbuf;
494
495   /**
496    * Overall success/failure of the service start.
497    */
498   int ret;
499
500   /**
501    * If we are daemonizing, this FD is set to the
502    * pipe to the parent.  Send '.' if we started
503    * ok, '!' if not.  -1 if we are not daemonizing.
504    */
505   int ready_confirm_fd;
506
507   /**
508    * Do we close connections if we receive messages
509    * for which we have no handler?
510    */
511   int require_found;
512
513   /**
514    * Can clients ask us to initiate a shutdown?
515    */
516   int allow_shutdown;
517
518   /**
519    * Our options.
520    */
521   enum GNUNET_SERVICE_Options options;
522
523   /**
524    * Array of the lengths of the entries in addrs.
525    */
526   socklen_t * addrlens;
527
528 };
529
530
531 /* ****************** message handlers ****************** */
532
533 static size_t
534 write_test (void *cls, size_t size, void *buf)
535 {
536   struct GNUNET_SERVER_Client *client = cls;
537   struct GNUNET_MessageHeader *msg;
538
539   if (size < sizeof (struct GNUNET_MessageHeader))
540     {
541       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
542       return 0;                 /* client disconnected */
543     }
544   msg = (struct GNUNET_MessageHeader *) buf;
545   msg->type = htons (GNUNET_MESSAGE_TYPE_TEST);
546   msg->size = htons (sizeof (struct GNUNET_MessageHeader));
547   GNUNET_SERVER_receive_done (client, GNUNET_OK);
548   return sizeof (struct GNUNET_MessageHeader);
549 }
550
551 /**
552  * Handler for TEST message.
553  *
554  * @param cls closure (refers to service)
555  * @param client identification of the client
556  * @param message the actual message
557  */
558 static void
559 handle_test (void *cls,
560              struct GNUNET_SERVER_Client *client,
561              const struct GNUNET_MessageHeader *message)
562 {
563   /* simply bounce message back to acknowledge */
564   if (NULL == GNUNET_SERVER_notify_transmit_ready (client,
565                                                    sizeof (struct
566                                                            GNUNET_MessageHeader),
567                                                    GNUNET_TIME_UNIT_FOREVER_REL,
568                                                    &write_test, client))
569     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
570 }
571
572
573 static size_t
574 transmit_shutdown_deny (void *cls, size_t size, void *buf)
575 {
576   struct GNUNET_SERVER_Client *client = cls;
577   struct GNUNET_MessageHeader *msg;
578
579   if (size < sizeof (struct GNUNET_MessageHeader))
580     {
581       return 0;                 /* client disconnected */
582       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
583     }
584   msg = (struct GNUNET_MessageHeader *) buf;
585   msg->type = htons (GNUNET_MESSAGE_TYPE_SHUTDOWN_REFUSE);
586   msg->size = htons (sizeof (struct GNUNET_MessageHeader));
587   GNUNET_SERVER_receive_done (client, GNUNET_OK);
588   GNUNET_SERVER_client_drop(client);
589   return sizeof (struct GNUNET_MessageHeader);
590 }
591
592 static size_t
593 transmit_shutdown_ack (void *cls, size_t size, void *buf)
594 {
595   struct GNUNET_SERVER_Client *client = cls;
596   struct GNUNET_MessageHeader *msg;
597
598   if (size < sizeof (struct GNUNET_MessageHeader))
599     {
600       return 0;                 /* client disconnected */
601       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
602     }
603
604   msg = (struct GNUNET_MessageHeader *) buf;
605   msg->type = htons (GNUNET_MESSAGE_TYPE_SHUTDOWN_ACK);
606   msg->size = htons (sizeof (struct GNUNET_MessageHeader));
607   GNUNET_SERVER_receive_done (client, GNUNET_OK);
608   GNUNET_SERVER_client_drop(client);
609   return sizeof (struct GNUNET_MessageHeader);
610 }
611
612 /**
613  * Handler for SHUTDOWN message.
614  *
615  * @param cls closure (refers to service)
616  * @param client identification of the client
617  * @param message the actual message
618  */
619 static void
620 handle_shutdown (void *cls,
621                  struct GNUNET_SERVER_Client *client,
622                  const struct GNUNET_MessageHeader *message)
623 {
624   struct GNUNET_SERVICE_Context *service = cls;
625
626   /* FIXME: why is this call necessary???? */
627   GNUNET_SERVER_client_keep(client);
628   if (!service->allow_shutdown)
629     {
630       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
631                   _
632                   ("Received shutdown request, but configured to ignore!\n"));
633       GNUNET_SERVER_notify_transmit_ready (client,
634                                            sizeof(struct GNUNET_MessageHeader),
635                                            GNUNET_TIME_UNIT_FOREVER_REL,
636                                            &transmit_shutdown_deny, client);
637       return;
638     }
639   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
640               _("Initiating shutdown as requested by client.\n"));
641
642   GNUNET_SERVER_notify_transmit_ready (client,
643                                        sizeof(struct GNUNET_MessageHeader),
644                                        GNUNET_TIME_UNIT_FOREVER_REL,
645                                        &transmit_shutdown_ack, client);
646
647   GNUNET_assert (service->sched != NULL);
648   GNUNET_SERVER_client_persist_ (client);
649   GNUNET_SCHEDULER_shutdown (service->sched);
650 }
651
652
653 /**
654  * Default handlers for all services.  Will be copied and the
655  * "callback_cls" fields will be replaced with the specific service
656  * struct.
657  */
658 static const struct GNUNET_SERVER_MessageHandler defhandlers[] = {
659   {&handle_test, NULL, GNUNET_MESSAGE_TYPE_TEST,
660    sizeof (struct GNUNET_MessageHeader)},
661   {&handle_shutdown, NULL, GNUNET_MESSAGE_TYPE_SHUTDOWN,
662    sizeof (struct GNUNET_MessageHeader)},
663   {NULL, NULL, 0, 0}
664 };
665
666
667
668 /* ****************** service core routines ************** */
669
670
671 /**
672  * Check if access to the service is allowed from the given address.
673  */
674 static int
675 check_access (void *cls, const struct sockaddr *addr, socklen_t addrlen)
676 {
677   struct GNUNET_SERVICE_Context *sctx = cls;
678   const struct sockaddr_in *i4;
679   const struct sockaddr_in6 *i6;
680   int ret;
681
682   switch (addr->sa_family)
683     {
684     case AF_INET:
685       GNUNET_assert (addrlen == sizeof (struct sockaddr_in));
686       i4 = (const struct sockaddr_in *) addr;
687       ret = ((sctx->v4_allowed == NULL) ||
688              (check_ipv4_listed (sctx->v4_allowed,
689                                  &i4->sin_addr)))
690         && ((sctx->v4_denied == NULL) ||
691             (!check_ipv4_listed (sctx->v4_denied, &i4->sin_addr)));
692       break;
693     case AF_INET6:
694       GNUNET_assert (addrlen == sizeof (struct sockaddr_in6));
695       i6 = (const struct sockaddr_in6 *) addr;
696       ret = ((sctx->v6_allowed == NULL) ||
697              (check_ipv6_listed (sctx->v6_allowed,
698                                  &i6->sin6_addr)))
699         && ((sctx->v6_denied == NULL) ||
700             (!check_ipv6_listed (sctx->v6_denied, &i6->sin6_addr)));
701       break;
702     default:
703       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
704                   _("Unknown address family %d\n"), addr->sa_family);
705       return GNUNET_SYSERR;
706     }
707   if (ret != GNUNET_OK)
708     {
709       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
710                   _("Access from `%s' denied to service `%s'\n"),
711                   GNUNET_a2s (addr, addrlen), sctx->serviceName);
712     }
713   return ret;
714 }
715
716
717 /**
718  * Get the name of the file where we will
719  * write the PID of the service.
720  */
721 static char *
722 get_pid_file_name (struct GNUNET_SERVICE_Context *sctx)
723 {
724
725   char *pif;
726
727   if (GNUNET_OK !=
728       GNUNET_CONFIGURATION_get_value_filename (sctx->cfg,
729                                                sctx->serviceName,
730                                                "PIDFILE", &pif))
731     return NULL;
732   return pif;
733 }
734
735
736 /**
737  * Parse an IPv4 access control list.
738  */
739 static int
740 process_acl4 (struct IPv4NetworkSet **ret,
741               struct GNUNET_SERVICE_Context *sctx, const char *option)
742 {
743   char *opt;
744
745   if (!GNUNET_CONFIGURATION_have_value (sctx->cfg, sctx->serviceName, option))
746     return GNUNET_OK;
747   GNUNET_break (GNUNET_OK ==
748                 GNUNET_CONFIGURATION_get_value_string (sctx->cfg,
749                                                        sctx->serviceName,
750                                                        option, &opt));
751   if (NULL == (*ret = parse_ipv4_specification (opt)))
752     {
753       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
754                   _
755                   ("Could not parse IPv4 network specification `%s' for `%s:%s'\n"),
756                   opt, sctx->serviceName, option);
757       GNUNET_free (opt);
758       return GNUNET_SYSERR;
759     }
760   GNUNET_free (opt);
761   return GNUNET_OK;
762 }
763
764
765 /**
766  * Parse an IPv4 access control list.
767  */
768 static int
769 process_acl6 (struct IPv6NetworkSet **ret,
770               struct GNUNET_SERVICE_Context *sctx, const char *option)
771 {
772   char *opt;
773   if (!GNUNET_CONFIGURATION_have_value (sctx->cfg, sctx->serviceName, option))
774     return GNUNET_OK;
775   GNUNET_break (GNUNET_OK ==
776                 GNUNET_CONFIGURATION_get_value_string (sctx->cfg,
777                                                        sctx->serviceName,
778                                                        option, &opt));
779   if (NULL == (*ret = parse_ipv6_specification (opt)))
780     {
781       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
782                   _
783                   ("Could not parse IPv6 network specification `%s' for `%s:%s'\n"),
784                   opt, sctx->serviceName, option);
785       GNUNET_free (opt);
786       return GNUNET_SYSERR;
787     }
788   GNUNET_free (opt);
789   return GNUNET_OK;
790 }
791
792
793 /**
794  * Get the list of addresses that a server for the given service
795  * should bind to.
796  *
797  * @param serviceName name of the service
798  * @param cfg configuration (which specifies the addresses)
799  * @param addrs set (call by reference) to an array of pointers to the
800  *              addresses the server should bind to and listen on; the
801  *              array will be NULL-terminated (on success)
802  * @param addr_lens set (call by reference) to an array of the lengths
803  *              of the respective 'struct sockaddr' struct in the 'addrs'
804  *              array (on success)
805  * @return number of addresses found on success,
806  *              GNUNET_SYSERR if the configuration
807  *              did not specify reasonable finding information or
808  *              if it specified a hostname that could not be resolved;
809  *              GNUNET_NO if the number of addresses configured is
810  *              zero (in this case, '*addrs' and '*addr_lens' will be
811  *              set to NULL).
812  */
813 int
814 GNUNET_SERVICE_get_server_addresses (const char *serviceName,
815                                      const struct GNUNET_CONFIGURATION_Handle *cfg,
816                                      struct sockaddr ***addrs,
817                                      socklen_t **addr_lens)
818 {
819   int disablev6;
820   struct GNUNET_NETWORK_Handle *desc;
821   unsigned long long port;
822   struct addrinfo hints;
823   struct addrinfo *res;
824   struct addrinfo *pos;
825   struct addrinfo *next;
826   unsigned int i;
827   int resi;
828   int ret;
829   struct sockaddr **saddrs;
830   socklen_t *saddrlens;
831   char *hostname;
832
833   *addrs = NULL;
834   *addr_lens = NULL;
835   if (GNUNET_CONFIGURATION_have_value (cfg,
836                                        serviceName, "DISABLEV6"))
837     {
838       if (GNUNET_SYSERR ==
839           (disablev6 = GNUNET_CONFIGURATION_get_value_yesno (cfg,
840                                                              serviceName,
841                                                              "DISABLEV6")))
842         return GNUNET_SYSERR;
843     }
844   else
845     disablev6 = GNUNET_NO;
846
847   if (!disablev6)
848     {
849       /* probe IPv6 support */
850       desc = GNUNET_NETWORK_socket_create (PF_INET6, SOCK_STREAM, 0);
851       if (NULL == desc)
852         {
853           if ((errno == ENOBUFS) ||
854               (errno == ENOMEM) || (errno == ENFILE) || (errno == EACCES))
855             {
856               GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "socket");
857               return GNUNET_SYSERR;
858             }
859           GNUNET_log (GNUNET_ERROR_TYPE_INFO,
860                       _
861                       ("Disabling IPv6 support for service `%s', failed to create IPv6 socket: %s\n"),
862                       serviceName, STRERROR (errno));
863           disablev6 = GNUNET_YES;
864         }
865       else
866         {
867           GNUNET_break (GNUNET_OK == GNUNET_NETWORK_socket_close (desc));
868         }
869     }
870
871
872   if ((GNUNET_OK !=
873        GNUNET_CONFIGURATION_get_value_number (cfg,
874                                               serviceName,
875                                               "PORT",
876                                               &port)) || (port > 65535))
877     {
878       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
879                   _
880                   ("Require valid port number for service `%s' in configuration!\n"),
881                   serviceName);
882       return GNUNET_SYSERR;
883     }
884   if (GNUNET_CONFIGURATION_have_value (cfg,
885                                        serviceName, "BINDTO"))
886     {
887       GNUNET_break (GNUNET_OK ==
888                     GNUNET_CONFIGURATION_get_value_string (cfg,
889                                                            serviceName,
890                                                            "BINDTO",
891                                                            &hostname));
892     }
893   else
894     hostname = NULL;
895
896   if (hostname != NULL)
897     {
898 #if DEBUG_SERVICE
899       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
900                   "Resolving `%s' since that is where `%s' will bind to.\n",
901                   hostname,
902                   serviceName);
903 #endif
904       memset (&hints, 0, sizeof (struct addrinfo));
905       if (disablev6)
906         hints.ai_family = AF_INET;
907       if ((0 != (ret = getaddrinfo (hostname,
908                                     NULL, &hints, &res))) || (res == NULL))
909         {
910           GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
911                       _("Failed to resolve `%s': %s\n"),
912                       hostname, gai_strerror (ret));
913           GNUNET_free (hostname);
914           return GNUNET_SYSERR;
915         }
916       next = res;
917       i = 0;
918       while (NULL != (pos = next)) 
919         {
920           next = pos->ai_next;
921           if ( (disablev6) && (pos->ai_family == AF_INET6))
922             continue;
923           i++;
924         }
925       if (0 == i)
926         {
927           GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
928                       _("Failed to find %saddress for `%s'.\n"),
929                       disablev6 ? "IPv4 " : "", hostname);
930           freeaddrinfo (res);
931           GNUNET_free (hostname);
932           return GNUNET_SYSERR;
933         }
934       resi = i;
935       saddrs = GNUNET_malloc ((i+1) * sizeof(struct sockaddr*));
936       saddrlens = GNUNET_malloc ((i+1) * sizeof (socklen_t));
937       i = 0;
938       next = res;
939       while (NULL != (pos = next)) 
940         {
941           next = pos->ai_next;
942           if ( (disablev6) && (pos->ai_family == AF_INET6))
943             continue;
944 #if DEBUG_SERVICE
945           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
946                       "Service `%s' will bind to `%s'\n",
947                       serviceName,
948                       GNUNET_a2s (pos->ai_addr,
949                                   pos->ai_addrlen));
950 #endif
951           if (pos->ai_family == AF_INET)
952             {
953               GNUNET_assert (pos->ai_addrlen == sizeof (struct sockaddr_in));
954               saddrlens[i] = pos->ai_addrlen;
955               saddrs[i] = GNUNET_malloc (saddrlens[i]);
956               memcpy (saddrs[i], pos->ai_addr, saddrlens[i]);
957               ((struct sockaddr_in *) saddrs[i])->sin_port = htons (port);
958             }
959           else
960             {
961               GNUNET_assert (pos->ai_family == AF_INET6);
962               GNUNET_assert (pos->ai_addrlen == sizeof (struct sockaddr_in6));
963               saddrlens[i] = pos->ai_addrlen;
964               saddrs[i] = GNUNET_malloc (saddrlens[i]);
965               memcpy (saddrs[i], pos->ai_addr, saddrlens[i]);
966               ((struct sockaddr_in6 *) saddrs[i])->sin6_port = htons (port);
967             }     
968           i++;
969         }
970       GNUNET_free (hostname);
971       freeaddrinfo (res);
972     }
973   else
974     {
975       /* will bind against everything, just set port */
976       if (disablev6)
977         {
978           /* V4-only */
979           resi = 1;
980           saddrs = GNUNET_malloc (2 * sizeof(struct sockaddr*));
981           saddrlens = GNUNET_malloc (2 * sizeof (socklen_t));
982           saddrlens[0] = sizeof (struct sockaddr_in);
983           saddrs[0] = GNUNET_malloc (saddrlens[0]);
984 #if HAVE_SOCKADDR_IN_SIN_LEN
985           ((struct sockaddr_in *) saddrs[0])->sin_len = saddrlens[0];
986 #endif
987           ((struct sockaddr_in *) saddrs[0])->sin_family = AF_INET;
988           ((struct sockaddr_in *) saddrs[0])->sin_port = htons (port);
989         }
990       else
991         {
992           /* dual stack */
993           resi = 2;
994           saddrs = GNUNET_malloc (3 * sizeof(struct sockaddr*));
995           saddrlens = GNUNET_malloc (3 * sizeof (socklen_t));
996
997           saddrlens[0] = sizeof (struct sockaddr_in6);
998           saddrs[0] = GNUNET_malloc (saddrlens[0]);
999 #if HAVE_SOCKADDR_IN_SIN_LEN
1000           ((struct sockaddr_in6 *) saddrs[0])->sin6_len = saddrlens[0];
1001 #endif
1002           ((struct sockaddr_in6 *) saddrs[0])->sin6_family = AF_INET6;
1003           ((struct sockaddr_in6 *) saddrs[0])->sin6_port = htons (port);
1004
1005           saddrlens[1] = sizeof (struct sockaddr_in);
1006           saddrs[1] = GNUNET_malloc (saddrlens[1]);
1007 #if HAVE_SOCKADDR_IN_SIN_LEN
1008           ((struct sockaddr_in *) saddrs[1])->sin_len = saddrlens[1];
1009 #endif
1010           ((struct sockaddr_in *) saddrs[1])->sin_family = AF_INET;
1011           ((struct sockaddr_in *) saddrs[1])->sin_port = htons (port);
1012
1013         }
1014     }
1015   *addrs = saddrs;
1016   *addr_lens = saddrlens;
1017   return resi;
1018 }
1019
1020
1021 /**
1022  * Setup addr, addrlen, maxbuf, idle_timeout
1023  * based on configuration!
1024  *
1025  * Configuration must specify a "PORT".  It may
1026  * specify:
1027  * - TIMEOUT (after how many ms does an inactive service timeout);
1028  * - MAXBUF (maximum incoming message size supported)
1029  * - DISABLEV6 (disable support for IPv6, otherwise we use dual-stack)
1030  * - ALLOW_SHUTDOWN (allow clients to shutdown this service)
1031  * - BINDTO (hostname or IP address to bind to, otherwise we take everything)
1032  * - ACCEPT_FROM  (only allow connections from specified IPv4 subnets)
1033  * - ACCEPT_FROM6 (only allow connections from specified IPv6 subnets)
1034  * - REJECT_FROM  (disallow allow connections from specified IPv4 subnets)
1035  * - REJECT_FROM6 (disallow allow connections from specified IPv6 subnets)
1036  *
1037  * @return GNUNET_OK if configuration succeeded
1038  */
1039 static int
1040 setup_service (struct GNUNET_SERVICE_Context *sctx)
1041 {
1042   unsigned long long maxbuf;
1043   struct GNUNET_TIME_Relative idleout;
1044   int tolerant;
1045
1046   if (GNUNET_CONFIGURATION_have_value (sctx->cfg,
1047                                        sctx->serviceName, "TIMEOUT"))
1048     {
1049       if (GNUNET_OK !=
1050           GNUNET_CONFIGURATION_get_value_time (sctx->cfg,
1051                                                sctx->serviceName,
1052                                                "TIMEOUT", &idleout))
1053         {
1054           GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1055                       _("Specified value for `%s' of service `%s' is invalid\n"),
1056                       "TIMEOUT",
1057                       sctx->serviceName);
1058           return GNUNET_SYSERR;
1059         }
1060       sctx->timeout = idleout;
1061     }
1062   else
1063     sctx->timeout = GNUNET_TIME_UNIT_FOREVER_REL;
1064   if (GNUNET_CONFIGURATION_have_value (sctx->cfg,
1065                                        sctx->serviceName, "MAXBUF"))
1066     {
1067       if (GNUNET_OK !=
1068           GNUNET_CONFIGURATION_get_value_number (sctx->cfg,
1069                                                  sctx->serviceName,
1070                                                  "MAXBUF", &maxbuf))
1071         {
1072           GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1073                       _("Specified value for `%s' of service `%s' is invalid\n"),
1074                       "MAXBUF",
1075                       sctx->serviceName);
1076           return GNUNET_SYSERR;
1077         }
1078     }
1079   else
1080     maxbuf = GNUNET_SERVER_MAX_MESSAGE_SIZE;
1081   if (GNUNET_CONFIGURATION_have_value (sctx->cfg,
1082                                        sctx->serviceName, "ALLOW_SHUTDOWN"))
1083     {
1084       if (GNUNET_SYSERR ==
1085           (sctx->allow_shutdown =
1086            GNUNET_CONFIGURATION_get_value_yesno (sctx->cfg, sctx->serviceName,
1087                                                  "ALLOW_SHUTDOWN")))
1088         {
1089           GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1090                       _("Specified value for `%s' of service `%s' is invalid\n"),
1091                       "ALLOW_SHUTDOWN",
1092                       sctx->serviceName);
1093           return GNUNET_SYSERR;
1094         }
1095     }
1096   else
1097     sctx->allow_shutdown = GNUNET_NO;
1098
1099
1100   if (GNUNET_CONFIGURATION_have_value (sctx->cfg,
1101                                        sctx->serviceName, "TOLERANT"))
1102     {
1103       if (GNUNET_SYSERR ==
1104           (tolerant = GNUNET_CONFIGURATION_get_value_yesno (sctx->cfg,
1105                                                             sctx->serviceName,
1106                                                             "TOLERANT")))
1107         {
1108           GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1109                       _("Specified value for `%s' of service `%s' is invalid\n"),
1110                       "TOLERANT",
1111                       sctx->serviceName);
1112           return GNUNET_SYSERR;
1113         }
1114     }
1115   else
1116     tolerant = GNUNET_NO;
1117
1118   if (GNUNET_SYSERR ==
1119       GNUNET_SERVICE_get_server_addresses (sctx->serviceName,
1120                                            sctx->cfg,
1121                                            &sctx->addrs,
1122                                            &sctx->addrlens))
1123     return GNUNET_SYSERR;
1124   sctx->require_found = tolerant ? GNUNET_NO : GNUNET_YES;
1125   sctx->maxbuf = (size_t) maxbuf;
1126   if (sctx->maxbuf != maxbuf)
1127     {
1128       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1129                   _
1130                   ("Value in configuration for `%s' and service `%s' too large!\n"),
1131                   "MAXBUF", sctx->serviceName);
1132       return GNUNET_SYSERR;
1133     }
1134
1135   process_acl4 (&sctx->v4_denied, sctx, "REJECT_FROM");
1136   process_acl4 (&sctx->v4_allowed, sctx, "ACCEPT_FROM");
1137   process_acl6 (&sctx->v6_denied, sctx, "REJECT_FROM6");
1138   process_acl6 (&sctx->v6_allowed, sctx, "ACCEPT_FROM6");
1139
1140   return GNUNET_OK;
1141 }
1142
1143
1144 /**
1145  * Get the name of the user that'll be used
1146  * to provide the service.
1147  */
1148 static char *
1149 get_user_name (struct GNUNET_SERVICE_Context *sctx)
1150 {
1151
1152   char *un;
1153
1154   if (GNUNET_OK !=
1155       GNUNET_CONFIGURATION_get_value_filename (sctx->cfg,
1156                                                sctx->serviceName,
1157                                                "USERNAME", &un))
1158     return NULL;
1159   return un;
1160 }
1161
1162 /**
1163  * Write PID file.
1164  */
1165 static int
1166 write_pid_file (struct GNUNET_SERVICE_Context *sctx, pid_t pid)
1167 {
1168   FILE *pidfd;
1169   char *pif;
1170   char *user;
1171   char *rdir;
1172   int len;
1173
1174   if (NULL == (pif = get_pid_file_name (sctx)))
1175     return GNUNET_OK;           /* no file desired */
1176   user = get_user_name (sctx);
1177   rdir = GNUNET_strdup (pif);
1178   len = strlen (rdir);
1179   while ((len > 0) && (rdir[len] != DIR_SEPARATOR))
1180     len--;
1181   rdir[len] = '\0';
1182   if (0 != ACCESS (rdir, F_OK))
1183     {
1184       /* we get to create a directory -- and claim it
1185          as ours! */
1186       GNUNET_DISK_directory_create (rdir);
1187       if ((user != NULL) && (0 < strlen (user)))
1188         GNUNET_DISK_file_change_owner (rdir, user);
1189     }
1190   if (0 != ACCESS (rdir, W_OK | X_OK))
1191     {
1192       GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR, "access", rdir);
1193       GNUNET_free (rdir);
1194       GNUNET_free_non_null (user);
1195       GNUNET_free (pif);
1196       return GNUNET_SYSERR;
1197     }
1198   GNUNET_free (rdir);
1199   pidfd = FOPEN (pif, "w");
1200   if (pidfd == NULL)
1201     {
1202       GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR, "fopen", pif);
1203       GNUNET_free (pif);
1204       GNUNET_free_non_null (user);
1205       return GNUNET_SYSERR;
1206     }
1207   if (0 > FPRINTF (pidfd, "%u", pid))
1208     GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING, "fprintf", pif);
1209   GNUNET_break (0 == fclose (pidfd));
1210   if ((user != NULL) && (0 < strlen (user)))
1211     GNUNET_DISK_file_change_owner (pif, user);
1212   GNUNET_free_non_null (user);
1213   GNUNET_free (pif);
1214   return GNUNET_OK;
1215 }
1216
1217
1218 /**
1219  * Task run during shutdown.
1220  *
1221  * @param cls unused
1222  * @param tc unused
1223  */
1224 static void
1225 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1226 {
1227   struct GNUNET_SERVER_Handle *server = cls;
1228
1229   GNUNET_SERVER_destroy (server);
1230 }
1231
1232
1233 /**
1234  * Initial task for the service.
1235  */
1236 static void
1237 service_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1238 {
1239   struct GNUNET_SERVICE_Context *sctx = cls;
1240   unsigned int i;
1241
1242   sctx->sched = tc->sched;
1243   sctx->server = GNUNET_SERVER_create (tc->sched,
1244                                        &check_access,
1245                                        sctx,
1246                                        sctx->addrs,
1247                                        sctx->addrlens,
1248                                        sctx->maxbuf,
1249                                        sctx->timeout, sctx->require_found);
1250   if (sctx->server == NULL)
1251     {
1252       i = 0;
1253       while (sctx->addrs[i] != NULL)
1254         {
1255           GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1256                       _("Failed to start `%s' at `%s'\n"),
1257                       sctx->serviceName, 
1258                       GNUNET_a2s (sctx->addrs[i], sctx->addrlens[i]));
1259           i++;
1260         }
1261       sctx->ret = GNUNET_SYSERR;
1262       return;
1263     }
1264   if (0 == (sctx->options & GNUNET_SERVICE_OPTION_MANUAL_SHUTDOWN))
1265     {
1266       /* install a task that will kill the server
1267          process if the scheduler ever gets a shutdown signal */
1268       GNUNET_SCHEDULER_add_delayed (tc->sched,
1269                                     GNUNET_TIME_UNIT_FOREVER_REL,
1270                                     &shutdown_task, sctx->server);
1271     }
1272   sctx->my_handlers = GNUNET_malloc (sizeof (defhandlers));
1273   memcpy (sctx->my_handlers, defhandlers, sizeof (defhandlers));
1274   i = 0;
1275   while ((sctx->my_handlers[i].callback != NULL))
1276     sctx->my_handlers[i++].callback_cls = sctx;
1277   GNUNET_SERVER_add_handlers (sctx->server, sctx->my_handlers);
1278   if (sctx->ready_confirm_fd != -1)
1279     {
1280       GNUNET_break (1 == WRITE (sctx->ready_confirm_fd, ".", 1));
1281       GNUNET_break (0 == CLOSE (sctx->ready_confirm_fd));
1282       sctx->ready_confirm_fd = -1;
1283       write_pid_file (sctx, getpid ());
1284     }
1285   i = 0;
1286   while (sctx->addrs[i] != NULL)
1287     {
1288       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1289                   _("Service `%s' runs at %s\n"),
1290                   sctx->serviceName, 
1291                   GNUNET_a2s (sctx->addrs[i], sctx->addrlens[i]));
1292       i++;
1293     }
1294   sctx->task (sctx->task_cls, tc->sched, sctx->server, sctx->cfg);
1295 }
1296
1297
1298 /**
1299  * Detach from terminal.
1300  */
1301 static int
1302 detach_terminal (struct GNUNET_SERVICE_Context *sctx)
1303 {
1304 #ifndef MINGW
1305   pid_t pid;
1306   int nullfd;
1307   int filedes[2];
1308
1309   if (0 != PIPE (filedes))
1310     {
1311       GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "pipe");
1312       return GNUNET_SYSERR;
1313     }
1314   pid = fork ();
1315   if (pid < 0)
1316     {
1317       GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "fork");
1318       return GNUNET_SYSERR;
1319     }
1320   if (pid != 0)
1321     {
1322       /* Parent */
1323       char c;
1324
1325       GNUNET_break (0 == CLOSE (filedes[1]));
1326       c = 'X';
1327       if (1 != READ (filedes[0], &c, sizeof (char)))
1328         GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "read");
1329       fflush (stdout);
1330       switch (c)
1331         {
1332         case '.':
1333           exit (0);
1334         case 'I':
1335           GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1336                       _("Service process failed to initialize\n"));
1337           break;
1338         case 'S':
1339           GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1340                       _
1341                       ("Service process could not initialize server function\n"));
1342           break;
1343         case 'X':
1344           GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1345                       _("Service process failed to report status\n"));
1346           break;
1347         }
1348       exit (1);                 /* child reported error */
1349     }
1350   GNUNET_break (0 == CLOSE (0));
1351   GNUNET_break (0 == CLOSE (1));
1352   GNUNET_break (0 == CLOSE (filedes[0]));
1353   nullfd = OPEN ("/dev/null", O_RDWR | O_APPEND);
1354   if (nullfd < 0)
1355     return GNUNET_SYSERR;
1356   /* set stdin/stdout to /dev/null */
1357   if ((dup2 (nullfd, 0) < 0) || (dup2 (nullfd, 1) < 0))
1358     {
1359       GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "dup2");
1360       return GNUNET_SYSERR;
1361     }
1362   /* Detach from controlling terminal */
1363   pid = setsid ();
1364   if (pid == -1)
1365     GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "setsid");
1366   sctx->ready_confirm_fd = filedes[1];
1367 #else
1368   /* FIXME: we probably need to do something else
1369      elsewhere in order to fork the process itself... */
1370   FreeConsole ();
1371 #endif
1372   return GNUNET_OK;
1373 }
1374
1375
1376 /**
1377  * Set user ID.
1378  */
1379 static int
1380 set_user_id (struct GNUNET_SERVICE_Context *sctx)
1381 {
1382   char *user;
1383
1384   if (NULL == (user = get_user_name (sctx)))
1385     return GNUNET_OK;           /* keep */
1386 #ifndef MINGW
1387   struct passwd *pws;
1388
1389   errno = 0;
1390   pws = getpwnam (user);
1391   if (pws == NULL)
1392     {
1393       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1394                   _("Cannot obtain information about user `%s': %s\n"),
1395                   user, errno == 0 ? _("No such user") : STRERROR (errno));
1396       GNUNET_free (user);
1397       return GNUNET_SYSERR;
1398     }
1399   if ((0 != setgid (pws->pw_gid)) || (0 != setegid (pws->pw_gid)) ||
1400 #if HAVE_INITGROUPS
1401       (0 != initgroups (user, pws->pw_gid)) ||
1402 #endif
1403       (0 != setuid (pws->pw_uid)) || (0 != seteuid (pws->pw_uid)))
1404     {
1405       if ((0 != setregid (pws->pw_gid, pws->pw_gid)) ||
1406           (0 != setreuid (pws->pw_uid, pws->pw_uid)))
1407         {
1408           GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1409                       _("Cannot change user/group to `%s': %s\n"), user,
1410                       STRERROR (errno));
1411           GNUNET_free (user);
1412           return GNUNET_SYSERR;
1413         }
1414     }
1415 #endif
1416   GNUNET_free (user);
1417   return GNUNET_OK;
1418 }
1419
1420
1421 /**
1422  * Delete the PID file that was created by our parent.
1423  */
1424 static void
1425 pid_file_delete (struct GNUNET_SERVICE_Context *sctx)
1426 {
1427   char *pif = get_pid_file_name (sctx);
1428   if (pif == NULL)
1429     return;                     /* no PID file */
1430   if (0 != UNLINK (pif))
1431     GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING, "unlink", pif);
1432   GNUNET_free (pif);
1433 }
1434
1435
1436 /**
1437  * Run a standard GNUnet service startup sequence (initialize loggers
1438  * and configuration, parse options).
1439  *
1440  * @param argc number of command line arguments
1441  * @param argv command line arguments
1442  * @param serviceName our service name
1443  * @param opt service options
1444  * @param task main task of the service
1445  * @param task_cls closure for task
1446  * @return GNUNET_SYSERR on error, GNUNET_OK
1447  *         if we shutdown nicely
1448  */
1449 int
1450 GNUNET_SERVICE_run (int argc,
1451                     char *const *argv,
1452                     const char *serviceName,
1453                     enum GNUNET_SERVICE_Options opt,
1454                     GNUNET_SERVICE_Main task, void *task_cls)
1455 {
1456 #define HANDLE_ERROR do { err = 1; GNUNET_break (0); goto shutdown; } while (0)
1457
1458   int err;
1459   char *cfg_fn;
1460   char *loglev;
1461   char *logfile;
1462   int do_daemonize;
1463   unsigned int i;
1464   struct GNUNET_SERVICE_Context sctx;
1465   struct GNUNET_CONFIGURATION_Handle *cfg;
1466   struct GNUNET_GETOPT_CommandLineOption service_options[] = {
1467     GNUNET_GETOPT_OPTION_CFG_FILE (&cfg_fn),
1468     {'d', "daemonize", NULL,
1469      gettext_noop ("do daemonize (detach from terminal)"), 0,
1470      GNUNET_GETOPT_set_one, &do_daemonize},
1471     GNUNET_GETOPT_OPTION_HELP (serviceName),
1472     GNUNET_GETOPT_OPTION_LOGLEVEL (&loglev),
1473     GNUNET_GETOPT_OPTION_LOGFILE (&logfile),
1474     GNUNET_GETOPT_OPTION_VERSION (PACKAGE_VERSION),
1475     GNUNET_GETOPT_OPTION_END
1476   };
1477   err = 0;
1478   do_daemonize = 0;
1479   logfile = NULL;
1480   loglev = GNUNET_strdup ("WARNING");
1481   cfg_fn = GNUNET_strdup (GNUNET_DEFAULT_USER_CONFIG_FILE);
1482   memset (&sctx, 0, sizeof (sctx));
1483   sctx.options = opt;
1484   sctx.ready_confirm_fd = -1;
1485   sctx.ret = GNUNET_OK;
1486   sctx.timeout = GNUNET_TIME_UNIT_FOREVER_REL;
1487   sctx.maxbuf = GNUNET_SERVER_MAX_MESSAGE_SIZE;
1488   sctx.task = task;
1489   sctx.serviceName = serviceName;
1490   sctx.cfg = cfg = GNUNET_CONFIGURATION_create ();
1491   /* setup subsystems */
1492   if (GNUNET_SYSERR == GNUNET_GETOPT_run (serviceName, service_options, argc,
1493       argv))    
1494     goto shutdown;
1495   if (GNUNET_OK != GNUNET_log_setup (serviceName, loglev, logfile))
1496     HANDLE_ERROR;
1497   if (GNUNET_OK != GNUNET_CONFIGURATION_load (cfg, cfg_fn))
1498     goto shutdown;
1499   if (GNUNET_OK != setup_service (&sctx))
1500     goto shutdown;
1501   if ( (do_daemonize == 1) && (GNUNET_OK != detach_terminal (&sctx)))    
1502     HANDLE_ERROR;
1503   if (GNUNET_OK != set_user_id (&sctx))
1504     goto shutdown;
1505 #if DEBUG_SERVICE
1506   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1507               "Service `%s' runs with configuration from `%s'\n",
1508               serviceName, cfg_fn);
1509 #endif
1510   /* actually run service */
1511   GNUNET_SCHEDULER_run (&service_task, &sctx);
1512
1513   /* shutdown */
1514   if ((do_daemonize == 1) && (sctx.server != NULL))
1515     pid_file_delete (&sctx);
1516   GNUNET_free_non_null (sctx.my_handlers);
1517
1518 shutdown:
1519   if (sctx.ready_confirm_fd != -1)
1520     {
1521       if (1 != WRITE (sctx.ready_confirm_fd, err ? "I" : "S", 1))
1522         GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "write");
1523       GNUNET_break (0 == CLOSE (sctx.ready_confirm_fd));
1524     }
1525
1526   GNUNET_CONFIGURATION_destroy (cfg);
1527   i = 0;
1528   if (sctx.addrs != NULL)
1529     while (sctx.addrs[i] != NULL)    
1530       GNUNET_free (sctx.addrs[i++]);    
1531   GNUNET_free_non_null (sctx.addrs);
1532   GNUNET_free_non_null (sctx.addrlens);
1533   GNUNET_free_non_null (logfile);
1534   GNUNET_free (loglev);
1535   GNUNET_free (cfg_fn);
1536   GNUNET_free_non_null (sctx.v4_denied);
1537   GNUNET_free_non_null (sctx.v6_denied);
1538   GNUNET_free_non_null (sctx.v4_allowed);
1539   GNUNET_free_non_null (sctx.v6_allowed);
1540
1541   return err ? GNUNET_SYSERR : sctx.ret;
1542 }
1543
1544
1545 /**
1546  * Run a service startup sequence within an existing
1547  * initialized system.
1548  *
1549  * @param serviceName our service name
1550  * @param sched scheduler to use
1551  * @param cfg configuration to use
1552  * @return NULL on error, service handle
1553  */
1554 struct GNUNET_SERVICE_Context *
1555 GNUNET_SERVICE_start (const char *serviceName,
1556                       struct GNUNET_SCHEDULER_Handle *sched,
1557                       const struct GNUNET_CONFIGURATION_Handle *cfg)
1558 {
1559   int i;
1560   struct GNUNET_SERVICE_Context *sctx;
1561
1562   sctx = GNUNET_malloc (sizeof (struct GNUNET_SERVICE_Context));
1563   sctx->ready_confirm_fd = -1;  /* no daemonizing */
1564   sctx->ret = GNUNET_OK;
1565   sctx->timeout = GNUNET_TIME_UNIT_FOREVER_REL;
1566   sctx->maxbuf = GNUNET_SERVER_MAX_MESSAGE_SIZE;
1567   sctx->serviceName = serviceName;
1568   sctx->cfg = cfg;
1569   sctx->sched = sched;
1570
1571   /* setup subsystems */
1572   if ((GNUNET_OK != setup_service (sctx)) ||
1573       (NULL == (sctx->server = GNUNET_SERVER_create (sched,
1574                                                      &check_access,
1575                                                      sctx,
1576                                                      sctx->addrs,
1577                                                      sctx->addrlens,
1578                                                      sctx->maxbuf,
1579                                                      sctx->timeout,
1580                                                      sctx->require_found))))
1581     {
1582       GNUNET_SERVICE_stop (sctx);
1583       return NULL;
1584     }
1585   sctx->my_handlers = GNUNET_malloc (sizeof (defhandlers));
1586   memcpy (sctx->my_handlers, defhandlers, sizeof (defhandlers));
1587   i = 0;
1588   while ((sctx->my_handlers[i].callback != NULL))
1589     sctx->my_handlers[i++].callback_cls = sctx;
1590   GNUNET_SERVER_add_handlers (sctx->server, sctx->my_handlers);
1591   return sctx;
1592 }
1593
1594 /**
1595  * Obtain the server used by a service.  Note that the server must NOT
1596  * be destroyed by the caller.
1597  *
1598  * @param ctx the service context returned from the start function
1599  * @return handle to the server for this service, NULL if there is none
1600  */
1601 struct GNUNET_SERVER_Handle *
1602 GNUNET_SERVICE_get_server (struct GNUNET_SERVICE_Context *ctx)
1603 {
1604   return ctx->server;
1605 }
1606
1607
1608 /**
1609  * Stop a service that was started with "GNUNET_SERVICE_start".
1610  *
1611  * @param sctx the service context returned from the start function
1612  */
1613 void
1614 GNUNET_SERVICE_stop (struct GNUNET_SERVICE_Context *sctx)
1615 {
1616   unsigned int i;
1617   if (NULL != sctx->server)
1618     GNUNET_SERVER_destroy (sctx->server);
1619   GNUNET_free_non_null (sctx->my_handlers);
1620   i = 0;
1621   while (sctx->addrs[i] != NULL)    
1622     GNUNET_free (sctx->addrs[i++]);    
1623   GNUNET_free_non_null (sctx->addrs);
1624   GNUNET_free_non_null (sctx->addrlens);
1625   GNUNET_free_non_null (sctx->v4_denied);
1626   GNUNET_free_non_null (sctx->v6_denied);
1627   GNUNET_free_non_null (sctx->v4_allowed);
1628   GNUNET_free_non_null (sctx->v6_allowed);
1629   GNUNET_free (sctx);
1630 }
1631
1632
1633 /* end of service.c */