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