2e75125cedfb4b85816bd5b07671e2db07069c79
[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     if (GNUNET_OK !=
935         GNUNET_CONFIGURATION_get_value_number (cfg, service_name,
936                                                "PORT", &port))
937     {
938       LOG (GNUNET_ERROR_TYPE_ERROR,
939            _("Require valid port number for service `%s' in configuration!\n"),
940            service_name);
941     }
942     if (port > 65535)
943     {
944       LOG (GNUNET_ERROR_TYPE_ERROR,
945            _("Require valid port number for service `%s' in configuration!\n"),
946            service_name);
947       return GNUNET_SYSERR;
948     }
949   }
950
951   if (GNUNET_CONFIGURATION_have_value (cfg, service_name, "BINDTO"))
952   {
953     GNUNET_break (GNUNET_OK ==
954                   GNUNET_CONFIGURATION_get_value_string (cfg, service_name,
955                                                          "BINDTO", &hostname));
956   }
957   else
958     hostname = NULL;
959
960   unixpath = NULL;
961 #ifdef AF_UNIX
962   if ((GNUNET_YES ==
963        GNUNET_CONFIGURATION_have_value (cfg, service_name, "UNIXPATH")) &&
964       (GNUNET_OK ==
965        GNUNET_CONFIGURATION_get_value_string (cfg, service_name, "UNIXPATH",
966                                               &unixpath)) &&
967       (0 < strlen (unixpath)))
968   {
969     /* probe UNIX support */
970     struct sockaddr_un s_un;
971
972     if (strlen (unixpath) >= sizeof (s_un.sun_path))
973     {
974       LOG (GNUNET_ERROR_TYPE_WARNING,
975            _("UNIXPATH `%s' too long, maximum length is %llu\n"), unixpath,
976            sizeof (s_un.sun_path));
977       GNUNET_free_non_null (hostname);
978       GNUNET_free (unixpath);
979       return GNUNET_SYSERR;
980     }
981
982     desc = GNUNET_NETWORK_socket_create (AF_UNIX, SOCK_STREAM, 0);
983     if (NULL == desc)
984     {
985       if ((ENOBUFS == errno) || (ENOMEM == errno) || (ENFILE == errno) ||
986           (EACCES == errno))
987       {
988         LOG_STRERROR (GNUNET_ERROR_TYPE_ERROR, "socket");
989         GNUNET_free_non_null (hostname);
990         GNUNET_free (unixpath);
991         return GNUNET_SYSERR;
992       }
993       LOG (GNUNET_ERROR_TYPE_INFO,
994            _
995            ("Disabling UNIX domain socket support for service `%s', failed to create UNIX domain socket: %s\n"),
996            service_name, STRERROR (errno));
997       GNUNET_free (unixpath);
998       unixpath = NULL;
999     }
1000     else
1001     {
1002       GNUNET_break (GNUNET_OK == GNUNET_NETWORK_socket_close (desc));
1003       desc = NULL;
1004     }
1005   }
1006 #endif
1007
1008   if ((0 == port) && (NULL == unixpath))
1009   {
1010     LOG (GNUNET_ERROR_TYPE_ERROR,
1011          _
1012          ("Have neither PORT nor UNIXPATH for service `%s', but one is required\n"),
1013          service_name);
1014     GNUNET_free_non_null (hostname);
1015     return GNUNET_SYSERR;
1016   }
1017   if (0 == port)
1018   {
1019     saddrs = GNUNET_malloc (2 * sizeof (struct sockaddr *));
1020     saddrlens = GNUNET_malloc (2 * sizeof (socklen_t));
1021     add_unixpath (saddrs, saddrlens, unixpath);
1022     GNUNET_free_non_null (unixpath);
1023     GNUNET_free_non_null (hostname);
1024     *addrs = saddrs;
1025     *addr_lens = saddrlens;
1026     return 1;
1027   }
1028
1029   if (NULL != hostname)
1030   {
1031     LOG (GNUNET_ERROR_TYPE_DEBUG,
1032          "Resolving `%s' since that is where `%s' will bind to.\n", hostname,
1033          service_name);
1034     memset (&hints, 0, sizeof (struct addrinfo));
1035     if (disablev6)
1036       hints.ai_family = AF_INET;
1037     hints.ai_protocol = IPPROTO_TCP;
1038     if ((0 != (ret = getaddrinfo (hostname, NULL, &hints, &res))) ||
1039         (res == NULL))
1040     {
1041       LOG (GNUNET_ERROR_TYPE_ERROR, _("Failed to resolve `%s': %s\n"), hostname,
1042            gai_strerror (ret));
1043       GNUNET_free (hostname);
1044       GNUNET_free_non_null (unixpath);
1045       return GNUNET_SYSERR;
1046     }
1047     next = res;
1048     i = 0;
1049     while (NULL != (pos = next))
1050     {
1051       next = pos->ai_next;
1052       if ((disablev6) && (pos->ai_family == AF_INET6))
1053         continue;
1054       i++;
1055     }
1056     if (0 == i)
1057     {
1058       LOG (GNUNET_ERROR_TYPE_ERROR, _("Failed to find %saddress for `%s'.\n"),
1059            disablev6 ? "IPv4 " : "", hostname);
1060       freeaddrinfo (res);
1061       GNUNET_free (hostname);
1062       GNUNET_free_non_null (unixpath);
1063       return GNUNET_SYSERR;
1064     }
1065     resi = i;
1066     if (NULL != unixpath)
1067       resi++;
1068     saddrs = GNUNET_malloc ((resi + 1) * sizeof (struct sockaddr *));
1069     saddrlens = GNUNET_malloc ((resi + 1) * sizeof (socklen_t));
1070     i = 0;
1071     if (NULL != unixpath)
1072     {
1073       add_unixpath (saddrs, saddrlens, unixpath);
1074       i++;
1075     }
1076     next = res;
1077     while (NULL != (pos = next))
1078     {
1079       next = pos->ai_next;
1080       if ((disablev6) && (AF_INET6 == pos->ai_family))
1081         continue;
1082       if ((IPPROTO_TCP != pos->ai_protocol) && (0 != pos->ai_protocol))
1083         continue;               /* not TCP */
1084       if ((SOCK_STREAM != pos->ai_socktype) && (0 != pos->ai_socktype))
1085         continue;               /* huh? */
1086       LOG (GNUNET_ERROR_TYPE_DEBUG, "Service `%s' will bind to `%s'\n",
1087            service_name, GNUNET_a2s (pos->ai_addr, pos->ai_addrlen));
1088       if (AF_INET == pos->ai_family)
1089       {
1090         GNUNET_assert (sizeof (struct sockaddr_in) == pos->ai_addrlen);
1091         saddrlens[i] = pos->ai_addrlen;
1092         saddrs[i] = GNUNET_malloc (saddrlens[i]);
1093         memcpy (saddrs[i], pos->ai_addr, saddrlens[i]);
1094         ((struct sockaddr_in *) saddrs[i])->sin_port = htons (port);
1095       }
1096       else
1097       {
1098         GNUNET_assert (AF_INET6 == pos->ai_family);
1099         GNUNET_assert (sizeof (struct sockaddr_in6) == pos->ai_addrlen);
1100         saddrlens[i] = pos->ai_addrlen;
1101         saddrs[i] = GNUNET_malloc (saddrlens[i]);
1102         memcpy (saddrs[i], pos->ai_addr, saddrlens[i]);
1103         ((struct sockaddr_in6 *) saddrs[i])->sin6_port = htons (port);
1104       }
1105       i++;
1106     }
1107     GNUNET_free (hostname);
1108     freeaddrinfo (res);
1109     resi = i;
1110   }
1111   else
1112   {
1113     /* will bind against everything, just set port */
1114     if (disablev6)
1115     {
1116       /* V4-only */
1117       resi = 1;
1118       if (NULL != unixpath)
1119         resi++;
1120       i = 0;
1121       saddrs = GNUNET_malloc ((resi + 1) * sizeof (struct sockaddr *));
1122       saddrlens = GNUNET_malloc ((resi + 1) * sizeof (socklen_t));
1123       if (NULL != unixpath)
1124       {
1125         add_unixpath (saddrs, saddrlens, unixpath);
1126         i++;
1127       }
1128       saddrlens[i] = sizeof (struct sockaddr_in);
1129       saddrs[i] = GNUNET_malloc (saddrlens[i]);
1130 #if HAVE_SOCKADDR_IN_SIN_LEN
1131       ((struct sockaddr_in *) saddrs[i])->sin_len = saddrlens[i];
1132 #endif
1133       ((struct sockaddr_in *) saddrs[i])->sin_family = AF_INET;
1134       ((struct sockaddr_in *) saddrs[i])->sin_port = htons (port);
1135     }
1136     else
1137     {
1138       /* dual stack */
1139       resi = 2;
1140       if (NULL != unixpath)
1141         resi++;
1142       saddrs = GNUNET_malloc ((resi + 1) * sizeof (struct sockaddr *));
1143       saddrlens = GNUNET_malloc ((resi + 1) * sizeof (socklen_t));
1144       i = 0;
1145       if (NULL != unixpath)
1146       {
1147         add_unixpath (saddrs, saddrlens, unixpath);
1148         i++;
1149       }
1150       saddrlens[i] = sizeof (struct sockaddr_in6);
1151       saddrs[i] = GNUNET_malloc (saddrlens[i]);
1152 #if HAVE_SOCKADDR_IN_SIN_LEN
1153       ((struct sockaddr_in6 *) saddrs[i])->sin6_len = saddrlens[0];
1154 #endif
1155       ((struct sockaddr_in6 *) saddrs[i])->sin6_family = AF_INET6;
1156       ((struct sockaddr_in6 *) saddrs[i])->sin6_port = htons (port);
1157       i++;
1158       saddrlens[i] = sizeof (struct sockaddr_in);
1159       saddrs[i] = GNUNET_malloc (saddrlens[i]);
1160 #if HAVE_SOCKADDR_IN_SIN_LEN
1161       ((struct sockaddr_in *) saddrs[i])->sin_len = saddrlens[1];
1162 #endif
1163       ((struct sockaddr_in *) saddrs[i])->sin_family = AF_INET;
1164       ((struct sockaddr_in *) saddrs[i])->sin_port = htons (port);
1165     }
1166   }
1167   GNUNET_free_non_null (unixpath);
1168   *addrs = saddrs;
1169   *addr_lens = saddrlens;
1170   return resi;
1171 }
1172
1173
1174 #ifdef MINGW
1175 /**
1176  * Read listen sockets from the parent process (ARM).
1177  *
1178  * @param sctx service context to initialize
1179  * @return GNUNET_YES if ok, GNUNET_NO if not ok (must bind yourself),
1180  * and GNUNET_SYSERR on error.
1181  */
1182 static int
1183 receive_sockets_from_parent (struct GNUNET_SERVICE_Context *sctx)
1184 {
1185   const char *env_buf;
1186   int fail;
1187   uint64_t count;
1188   uint64_t i;
1189   HANDLE lsocks_pipe;
1190
1191   env_buf = getenv ("GNUNET_OS_READ_LSOCKS");
1192   if ((NULL == env_buf) || (strlen (env_buf) <= 0))
1193     return GNUNET_NO;
1194   /* Using W32 API directly here, because this pipe will
1195    * never be used outside of this function, and it's just too much of a bother
1196    * to create a GNUnet API that boxes a HANDLE (the way it is done with socks)
1197    */
1198   lsocks_pipe = (HANDLE) strtoul (env_buf, NULL, 10);
1199   if ( (0 == lsocks_pipe) || (INVALID_HANDLE_VALUE == lsocks_pipe))
1200     return GNUNET_NO;
1201   fail = 1;
1202   do
1203   {
1204     int ret;
1205     int fail2;
1206     DWORD rd;
1207
1208     ret = ReadFile (lsocks_pipe, &count, sizeof (count), &rd, NULL);
1209     if ((0 == ret) || (sizeof (count) != rd) || (0 == count))
1210       break;
1211     sctx->lsocks =
1212         GNUNET_malloc (sizeof (struct GNUNET_NETWORK_Handle *) * (count + 1));
1213
1214     fail2 = 1;
1215     for (i = 0; i < count; i++)
1216     {
1217       WSAPROTOCOL_INFOA pi;
1218       uint64_t size;
1219       SOCKET s;
1220
1221       ret = ReadFile (lsocks_pipe, &size, sizeof (size), &rd, NULL);
1222       if ( (0 == ret) || (sizeof (size) != rd) || (sizeof (pi) != size) )
1223         break;
1224       ret = ReadFile (lsocks_pipe, &pi, sizeof (pi), &rd, NULL);
1225       if ( (0 == ret) || (sizeof (pi) != rd))
1226         break;
1227       s = WSASocketA (pi.iAddressFamily, pi.iSocketType, pi.iProtocol, &pi, 0, WSA_FLAG_OVERLAPPED);
1228       sctx->lsocks[i] = GNUNET_NETWORK_socket_box_native (s);
1229       if (NULL == sctx->lsocks[i])
1230         break;
1231       else if (i == count - 1)
1232         fail2 = 0;
1233     }
1234     if (fail2)
1235       break;
1236     sctx->lsocks[count] = NULL;
1237     fail = 0;
1238   }
1239   while (fail);
1240
1241   CloseHandle (lsocks_pipe);
1242
1243   if (fail)
1244   {
1245     LOG (GNUNET_ERROR_TYPE_ERROR,
1246          _("Could not access a pre-bound socket, will try to bind myself\n"));
1247     for (i = 0; (i < count) && (NULL != sctx->lsocks[i]); i++)
1248       GNUNET_break (0 == GNUNET_NETWORK_socket_close (sctx->lsocks[i]));
1249     GNUNET_free_non_null (sctx->lsocks);
1250     sctx->lsocks = NULL;
1251     return GNUNET_NO;
1252   }
1253   return GNUNET_YES;
1254 }
1255 #endif
1256
1257
1258 /**
1259  * Setup addr, addrlen, idle_timeout
1260  * based on configuration!
1261  *
1262  * Configuration may specify:
1263  * - PORT (where to bind to for TCP)
1264  * - UNIXPATH (where to bind to for UNIX domain sockets)
1265  * - TIMEOUT (after how many ms does an inactive service timeout);
1266  * - DISABLEV6 (disable support for IPv6, otherwise we use dual-stack)
1267  * - BINDTO (hostname or IP address to bind to, otherwise we take everything)
1268  * - ACCEPT_FROM  (only allow connections from specified IPv4 subnets)
1269  * - ACCEPT_FROM6 (only allow connections from specified IPv6 subnets)
1270  * - REJECT_FROM  (disallow allow connections from specified IPv4 subnets)
1271  * - REJECT_FROM6 (disallow allow connections from specified IPv6 subnets)
1272  *
1273  * @param sctx service context to initialize
1274  * @return GNUNET_OK if configuration succeeded
1275  */
1276 static int
1277 setup_service (struct GNUNET_SERVICE_Context *sctx)
1278 {
1279   struct GNUNET_TIME_Relative idleout;
1280   int tolerant;
1281
1282 #ifndef MINGW
1283   const char *lpid;
1284   unsigned int pid;
1285   const char *nfds;
1286   unsigned int cnt;
1287   int flags;
1288 #endif
1289
1290   if (GNUNET_CONFIGURATION_have_value (sctx->cfg, sctx->service_name, "TIMEOUT"))
1291   {
1292     if (GNUNET_OK !=
1293         GNUNET_CONFIGURATION_get_value_time (sctx->cfg, sctx->service_name,
1294                                              "TIMEOUT", &idleout))
1295     {
1296       LOG (GNUNET_ERROR_TYPE_ERROR,
1297            _("Specified value for `%s' of service `%s' is invalid\n"),
1298            "TIMEOUT", sctx->service_name);
1299       return GNUNET_SYSERR;
1300     }
1301     sctx->timeout = idleout;
1302   }
1303   else
1304     sctx->timeout = GNUNET_TIME_UNIT_FOREVER_REL;
1305
1306   if (GNUNET_CONFIGURATION_have_value
1307       (sctx->cfg, sctx->service_name, "TOLERANT"))
1308   {
1309     if (GNUNET_SYSERR ==
1310         (tolerant =
1311          GNUNET_CONFIGURATION_get_value_yesno (sctx->cfg, sctx->service_name,
1312                                                "TOLERANT")))
1313     {
1314       LOG (GNUNET_ERROR_TYPE_ERROR,
1315            _("Specified value for `%s' of service `%s' is invalid\n"),
1316            "TOLERANT", sctx->service_name);
1317       return GNUNET_SYSERR;
1318     }
1319   }
1320   else
1321     tolerant = GNUNET_NO;
1322
1323 #ifndef MINGW
1324   errno = 0;
1325   if ((NULL != (lpid = getenv ("LISTEN_PID"))) &&
1326       (1 == SSCANF (lpid, "%u", &pid)) && (getpid () == (pid_t) pid) &&
1327       (NULL != (nfds = getenv ("LISTEN_FDS"))) &&
1328       (1 == SSCANF (nfds, "%u", &cnt)) && (cnt > 0) && (cnt < FD_SETSIZE) &&
1329       (cnt + 4 < FD_SETSIZE))
1330   {
1331     sctx->lsocks =
1332         GNUNET_malloc (sizeof (struct GNUNET_NETWORK_Handle *) * (cnt + 1));
1333     while (0 < cnt--)
1334     {
1335       flags = fcntl (3 + cnt, F_GETFD);
1336       if ((flags < 0) || (0 != (flags & FD_CLOEXEC)) ||
1337           (NULL ==
1338            (sctx->lsocks[cnt] = GNUNET_NETWORK_socket_box_native (3 + cnt))))
1339       {
1340         LOG (GNUNET_ERROR_TYPE_ERROR,
1341              _
1342              ("Could not access pre-bound socket %u, will try to bind myself\n"),
1343              (unsigned int) 3 + cnt);
1344         cnt++;
1345         while (sctx->lsocks[cnt] != NULL)
1346           GNUNET_break (0 == GNUNET_NETWORK_socket_close (sctx->lsocks[cnt++]));
1347         GNUNET_free (sctx->lsocks);
1348         sctx->lsocks = NULL;
1349         break;
1350       }
1351     }
1352     unsetenv ("LISTEN_PID");
1353     unsetenv ("LISTEN_FDS");
1354   }
1355 #else
1356   if (getenv ("GNUNET_OS_READ_LSOCKS") != NULL)
1357   {
1358     receive_sockets_from_parent (sctx);
1359     putenv ("GNUNET_OS_READ_LSOCKS=");
1360   }
1361 #endif
1362
1363   if ((NULL == sctx->lsocks) &&
1364       (GNUNET_SYSERR ==
1365        GNUNET_SERVICE_get_server_addresses (sctx->service_name, sctx->cfg,
1366                                             &sctx->addrs, &sctx->addrlens)))
1367     return GNUNET_SYSERR;
1368   sctx->require_found = tolerant ? GNUNET_NO : GNUNET_YES;
1369   sctx->match_uid =
1370       GNUNET_CONFIGURATION_get_value_yesno (sctx->cfg, sctx->service_name,
1371                                             "UNIX_MATCH_UID");
1372   sctx->match_gid =
1373       GNUNET_CONFIGURATION_get_value_yesno (sctx->cfg, sctx->service_name,
1374                                             "UNIX_MATCH_GID");
1375   process_acl4 (&sctx->v4_denied, sctx, "REJECT_FROM");
1376   process_acl4 (&sctx->v4_allowed, sctx, "ACCEPT_FROM");
1377   process_acl6 (&sctx->v6_denied, sctx, "REJECT_FROM6");
1378   process_acl6 (&sctx->v6_allowed, sctx, "ACCEPT_FROM6");
1379
1380   return GNUNET_OK;
1381 }
1382
1383
1384 /**
1385  * Get the name of the user that'll be used
1386  * to provide the service.
1387  *
1388  * @param sctx service context
1389  * @return value of the 'USERNAME' option
1390  */
1391 static char *
1392 get_user_name (struct GNUNET_SERVICE_Context *sctx)
1393 {
1394   char *un;
1395
1396   if (GNUNET_OK !=
1397       GNUNET_CONFIGURATION_get_value_filename (sctx->cfg, sctx->service_name,
1398                                                "USERNAME", &un))
1399     return NULL;
1400   return un;
1401 }
1402
1403 /**
1404  * Write PID file.
1405  *
1406  * @param sctx service context
1407  * @param pid PID to write (should be equal to 'getpid()'
1408  * @return  GNUNET_OK on success (including no work to be done)
1409  */
1410 static int
1411 write_pid_file (struct GNUNET_SERVICE_Context *sctx, pid_t pid)
1412 {
1413   FILE *pidfd;
1414   char *pif;
1415   char *user;
1416   char *rdir;
1417   int len;
1418
1419   if (NULL == (pif = get_pid_file_name (sctx)))
1420     return GNUNET_OK;           /* no file desired */
1421   user = get_user_name (sctx);
1422   rdir = GNUNET_strdup (pif);
1423   len = strlen (rdir);
1424   while ((len > 0) && (rdir[len] != DIR_SEPARATOR))
1425     len--;
1426   rdir[len] = '\0';
1427   if (0 != ACCESS (rdir, F_OK))
1428   {
1429     /* we get to create a directory -- and claim it
1430      * as ours! */
1431     GNUNET_DISK_directory_create (rdir);
1432     if ((NULL != user) && (0 < strlen (user)))
1433       GNUNET_DISK_file_change_owner (rdir, user);
1434   }
1435   if (0 != ACCESS (rdir, W_OK | X_OK))
1436   {
1437     LOG_STRERROR_FILE (GNUNET_ERROR_TYPE_ERROR, "access", rdir);
1438     GNUNET_free (rdir);
1439     GNUNET_free_non_null (user);
1440     GNUNET_free (pif);
1441     return GNUNET_SYSERR;
1442   }
1443   GNUNET_free (rdir);
1444   pidfd = FOPEN (pif, "w");
1445   if (NULL == pidfd)
1446   {
1447     LOG_STRERROR_FILE (GNUNET_ERROR_TYPE_ERROR, "fopen", pif);
1448     GNUNET_free (pif);
1449     GNUNET_free_non_null (user);
1450     return GNUNET_SYSERR;
1451   }
1452   if (0 > FPRINTF (pidfd, "%u", pid))
1453     LOG_STRERROR_FILE (GNUNET_ERROR_TYPE_WARNING, "fprintf", pif);
1454   GNUNET_break (0 == FCLOSE (pidfd));
1455   if ((NULL != user) && (0 < strlen (user)))
1456     GNUNET_DISK_file_change_owner (pif, user);
1457   GNUNET_free_non_null (user);
1458   GNUNET_free (pif);
1459   return GNUNET_OK;
1460 }
1461
1462
1463 /**
1464  * Task run during shutdown.  Stops the server/service.
1465  *
1466  * @param cls the 'struct GNUNET_SERVICE_Context'
1467  * @param tc unused
1468  */
1469 static void
1470 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1471 {
1472   struct GNUNET_SERVICE_Context *service = cls;
1473   struct GNUNET_SERVER_Handle *server = service->server;
1474
1475   service->shutdown_task = GNUNET_SCHEDULER_NO_TASK;
1476   if (0 != (service->options & GNUNET_SERVICE_OPTION_SOFT_SHUTDOWN))
1477     GNUNET_SERVER_stop_listening (server);
1478   else
1479     GNUNET_SERVER_destroy (server);
1480 }
1481
1482
1483 /**
1484  * Initial task for the service.
1485  *
1486  * @param cls service context
1487  * @param tc unused
1488  */
1489 static void
1490 service_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1491 {
1492   struct GNUNET_SERVICE_Context *sctx = cls;
1493   unsigned int i;
1494
1495   GNUNET_RESOLVER_connect (sctx->cfg);
1496   if (NULL != sctx->lsocks)
1497     sctx->server =
1498         GNUNET_SERVER_create_with_sockets (&check_access, sctx, sctx->lsocks,
1499                                            sctx->timeout, sctx->require_found);
1500   else
1501     sctx->server =
1502         GNUNET_SERVER_create (&check_access, sctx, sctx->addrs, sctx->addrlens,
1503                               sctx->timeout, sctx->require_found);
1504   if (NULL == sctx->server)
1505   {
1506     if (NULL != sctx->addrs)
1507     {
1508       i = 0;
1509       while (NULL != sctx->addrs[i])
1510       {
1511         LOG (GNUNET_ERROR_TYPE_INFO, _("Failed to start `%s' at `%s'\n"),
1512              sctx->service_name, GNUNET_a2s (sctx->addrs[i], sctx->addrlens[i]));
1513         i++;
1514       }
1515     }
1516     sctx->ret = GNUNET_SYSERR;
1517     return;
1518   }
1519   if (0 == (sctx->options & GNUNET_SERVICE_OPTION_MANUAL_SHUTDOWN))
1520   {
1521     /* install a task that will kill the server
1522      * process if the scheduler ever gets a shutdown signal */
1523     sctx->shutdown_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
1524                                                         sctx);
1525   }
1526   sctx->my_handlers = GNUNET_malloc (sizeof (defhandlers));
1527   memcpy (sctx->my_handlers, defhandlers, sizeof (defhandlers));
1528   i = 0;
1529   while (NULL != sctx->my_handlers[i].callback)
1530     sctx->my_handlers[i++].callback_cls = sctx;
1531   GNUNET_SERVER_add_handlers (sctx->server, sctx->my_handlers);
1532   if (-1 != sctx->ready_confirm_fd)
1533   {
1534     GNUNET_break (1 == WRITE (sctx->ready_confirm_fd, ".", 1));
1535     GNUNET_break (0 == CLOSE (sctx->ready_confirm_fd));
1536     sctx->ready_confirm_fd = -1;
1537     write_pid_file (sctx, getpid ());
1538   }
1539   if (NULL != sctx->addrs)
1540   {
1541     i = 0;
1542     while (NULL != sctx->addrs[i])
1543     {
1544       LOG (GNUNET_ERROR_TYPE_INFO, _("Service `%s' runs at %s\n"),
1545            sctx->service_name, GNUNET_a2s (sctx->addrs[i], sctx->addrlens[i]));
1546       i++;
1547     }
1548   }
1549   sctx->task (sctx->task_cls, sctx->server, sctx->cfg);
1550 }
1551
1552
1553 /**
1554  * Detach from terminal.
1555  *
1556  * @param sctx service context
1557  * @return GNUNET_OK on success, GNUNET_SYSERR on error
1558  */
1559 static int
1560 detach_terminal (struct GNUNET_SERVICE_Context *sctx)
1561 {
1562 #ifndef MINGW
1563   pid_t pid;
1564   int nullfd;
1565   int filedes[2];
1566
1567   if (0 != PIPE (filedes))
1568   {
1569     LOG_STRERROR (GNUNET_ERROR_TYPE_ERROR, "pipe");
1570     return GNUNET_SYSERR;
1571   }
1572   pid = fork ();
1573   if (pid < 0)
1574   {
1575     LOG_STRERROR (GNUNET_ERROR_TYPE_ERROR, "fork");
1576     return GNUNET_SYSERR;
1577   }
1578   if (0 != pid)
1579   {
1580     /* Parent */
1581     char c;
1582
1583     GNUNET_break (0 == CLOSE (filedes[1]));
1584     c = 'X';
1585     if (1 != READ (filedes[0], &c, sizeof (char)))
1586       LOG_STRERROR (GNUNET_ERROR_TYPE_WARNING, "read");
1587     fflush (stdout);
1588     switch (c)
1589     {
1590     case '.':
1591       exit (0);
1592     case 'I':
1593       LOG (GNUNET_ERROR_TYPE_INFO, _("Service process failed to initialize\n"));
1594       break;
1595     case 'S':
1596       LOG (GNUNET_ERROR_TYPE_INFO,
1597            _("Service process could not initialize server function\n"));
1598       break;
1599     case 'X':
1600       LOG (GNUNET_ERROR_TYPE_INFO,
1601            _("Service process failed to report status\n"));
1602       break;
1603     }
1604     exit (1);                   /* child reported error */
1605   }
1606   GNUNET_break (0 == CLOSE (0));
1607   GNUNET_break (0 == CLOSE (1));
1608   GNUNET_break (0 == CLOSE (filedes[0]));
1609   nullfd = OPEN ("/dev/null", O_RDWR | O_APPEND);
1610   if (nullfd < 0)
1611     return GNUNET_SYSERR;
1612   /* set stdin/stdout to /dev/null */
1613   if ((dup2 (nullfd, 0) < 0) || (dup2 (nullfd, 1) < 0))
1614   {
1615     LOG_STRERROR (GNUNET_ERROR_TYPE_ERROR, "dup2");
1616     (void) CLOSE (nullfd);
1617     return GNUNET_SYSERR;
1618   }
1619   (void) CLOSE (nullfd);
1620   /* Detach from controlling terminal */
1621   pid = setsid ();
1622   if (-1 == pid)
1623     LOG_STRERROR (GNUNET_ERROR_TYPE_ERROR, "setsid");
1624   sctx->ready_confirm_fd = filedes[1];
1625 #else
1626   /* FIXME: we probably need to do something else
1627    * elsewhere in order to fork the process itself... */
1628   FreeConsole ();
1629 #endif
1630   return GNUNET_OK;
1631 }
1632
1633
1634 /**
1635  * Set user ID.
1636  *
1637  * @param sctx service context
1638  * @return GNUNET_OK on success, GNUNET_SYSERR on error
1639  */
1640 static int
1641 set_user_id (struct GNUNET_SERVICE_Context *sctx)
1642 {
1643   char *user;
1644
1645   if (NULL == (user = get_user_name (sctx)))
1646     return GNUNET_OK;           /* keep */
1647 #ifndef MINGW
1648   struct passwd *pws;
1649
1650   errno = 0;
1651   pws = getpwnam (user);
1652   if (NULL == pws)
1653   {
1654     LOG (GNUNET_ERROR_TYPE_ERROR,
1655          _("Cannot obtain information about user `%s': %s\n"), user,
1656          errno == 0 ? _("No such user") : STRERROR (errno));
1657     GNUNET_free (user);
1658     return GNUNET_SYSERR;
1659   }
1660   if ((0 != setgid (pws->pw_gid)) || (0 != setegid (pws->pw_gid)) ||
1661 #if HAVE_INITGROUPS
1662       (0 != initgroups (user, pws->pw_gid)) ||
1663 #endif
1664       (0 != setuid (pws->pw_uid)) || (0 != seteuid (pws->pw_uid)))
1665   {
1666     if ((0 != setregid (pws->pw_gid, pws->pw_gid)) ||
1667         (0 != setreuid (pws->pw_uid, pws->pw_uid)))
1668     {
1669       LOG (GNUNET_ERROR_TYPE_ERROR, _("Cannot change user/group to `%s': %s\n"),
1670            user, STRERROR (errno));
1671       GNUNET_free (user);
1672       return GNUNET_SYSERR;
1673     }
1674   }
1675 #endif
1676   GNUNET_free (user);
1677   return GNUNET_OK;
1678 }
1679
1680
1681 /**
1682  * Delete the PID file that was created by our parent.
1683  *
1684  * @param sctx service context
1685  */
1686 static void
1687 pid_file_delete (struct GNUNET_SERVICE_Context *sctx)
1688 {
1689   char *pif = get_pid_file_name (sctx);
1690
1691   if (NULL == pif)
1692     return;                     /* no PID file */
1693   if (0 != UNLINK (pif))
1694     LOG_STRERROR_FILE (GNUNET_ERROR_TYPE_WARNING, "unlink", pif);
1695   GNUNET_free (pif);
1696 }
1697
1698
1699 /**
1700  * Run a standard GNUnet service startup sequence (initialize loggers
1701  * and configuration, parse options).
1702  *
1703  * @param argc number of command line arguments
1704  * @param argv command line arguments
1705  * @param service_name our service name
1706  * @param options service options
1707  * @param task main task of the service
1708  * @param task_cls closure for task
1709  * @return GNUNET_SYSERR on error, GNUNET_OK
1710  *         if we shutdown nicely
1711  */
1712 int
1713 GNUNET_SERVICE_run (int argc, char *const *argv, const char *service_name,
1714                     enum GNUNET_SERVICE_Options options, GNUNET_SERVICE_Main task,
1715                     void *task_cls)
1716 {
1717 #define HANDLE_ERROR do { GNUNET_break (0); goto shutdown; } while (0)
1718
1719   int err;
1720   char *cfg_fn;
1721   char *loglev;
1722   char *logfile;
1723   int do_daemonize;
1724   unsigned int i;
1725   unsigned long long skew_offset;
1726   unsigned long long skew_variance;
1727   long long clock_offset;
1728   struct GNUNET_SERVICE_Context sctx;
1729   struct GNUNET_CONFIGURATION_Handle *cfg;
1730
1731   struct GNUNET_GETOPT_CommandLineOption service_options[] = {
1732     GNUNET_GETOPT_OPTION_CFG_FILE (&cfg_fn),
1733     {'d', "daemonize", NULL,
1734      gettext_noop ("do daemonize (detach from terminal)"), 0,
1735      GNUNET_GETOPT_set_one, &do_daemonize},
1736     GNUNET_GETOPT_OPTION_HELP (NULL),
1737     GNUNET_GETOPT_OPTION_LOGLEVEL (&loglev),
1738     GNUNET_GETOPT_OPTION_LOGFILE (&logfile),
1739     GNUNET_GETOPT_OPTION_VERSION (PACKAGE_VERSION),
1740     GNUNET_GETOPT_OPTION_END
1741   };
1742   err = 1;
1743   do_daemonize = 0;
1744   logfile = NULL;
1745   loglev = NULL;
1746   cfg_fn = GNUNET_strdup (GNUNET_DEFAULT_USER_CONFIG_FILE);
1747   memset (&sctx, 0, sizeof (sctx));
1748   sctx.options = options;
1749   sctx.ready_confirm_fd = -1;
1750   sctx.ret = GNUNET_OK;
1751   sctx.timeout = GNUNET_TIME_UNIT_FOREVER_REL;
1752   sctx.task = task;
1753   sctx.task_cls = task_cls;
1754   sctx.service_name = service_name;
1755   sctx.cfg = cfg = GNUNET_CONFIGURATION_create ();
1756   /* setup subsystems */
1757   if (GNUNET_SYSERR ==
1758       GNUNET_GETOPT_run (service_name, service_options, argc, argv))
1759     goto shutdown;
1760   if (GNUNET_OK != GNUNET_log_setup (service_name, loglev, logfile))
1761     HANDLE_ERROR;
1762   if (GNUNET_OK != GNUNET_CONFIGURATION_load (cfg, cfg_fn))
1763     goto shutdown;
1764   if (GNUNET_OK != setup_service (&sctx))
1765     goto shutdown;
1766   if ((1 == do_daemonize) && (GNUNET_OK != detach_terminal (&sctx)))
1767     HANDLE_ERROR;
1768   if (GNUNET_OK != set_user_id (&sctx))
1769     goto shutdown;
1770   LOG (GNUNET_ERROR_TYPE_DEBUG,
1771        "Service `%s' runs with configuration from `%s'\n", service_name, cfg_fn);
1772   if ((GNUNET_OK ==
1773        GNUNET_CONFIGURATION_get_value_number (sctx.cfg, "TESTING",
1774                                               "SKEW_OFFSET", &skew_offset)) &&
1775       (GNUNET_OK ==
1776        GNUNET_CONFIGURATION_get_value_number (sctx.cfg, "TESTING",
1777                                               "SKEW_VARIANCE", &skew_variance)))
1778   {
1779     clock_offset = skew_offset - skew_variance;
1780     GNUNET_TIME_set_offset (clock_offset);
1781     LOG (GNUNET_ERROR_TYPE_DEBUG, "Skewing clock by %dll ms\n", clock_offset);
1782   }
1783   /* actually run service */
1784   err = 0;
1785   GNUNET_SCHEDULER_run (&service_task, &sctx);
1786   GNUNET_SPEEDUP_start_ (cfg);
1787   /* shutdown */
1788   if ((1 == do_daemonize) && (NULL != sctx.server))
1789     pid_file_delete (&sctx);
1790   GNUNET_free_non_null (sctx.my_handlers);
1791
1792 shutdown:
1793   if (-1 != sctx.ready_confirm_fd)
1794   {
1795     if (1 != WRITE (sctx.ready_confirm_fd, err ? "I" : "S", 1))
1796       LOG_STRERROR (GNUNET_ERROR_TYPE_WARNING, "write");
1797     GNUNET_break (0 == CLOSE (sctx.ready_confirm_fd));
1798   }
1799
1800   GNUNET_SPEEDUP_stop_ ();
1801   GNUNET_CONFIGURATION_destroy (cfg);
1802   i = 0;
1803   if (NULL != sctx.addrs)
1804     while (NULL != sctx.addrs[i])
1805       GNUNET_free (sctx.addrs[i++]);
1806   GNUNET_free_non_null (sctx.addrs);
1807   GNUNET_free_non_null (sctx.addrlens);
1808   GNUNET_free_non_null (logfile);
1809   GNUNET_free_non_null (loglev);
1810   GNUNET_free (cfg_fn);
1811   GNUNET_free_non_null (sctx.v4_denied);
1812   GNUNET_free_non_null (sctx.v6_denied);
1813   GNUNET_free_non_null (sctx.v4_allowed);
1814   GNUNET_free_non_null (sctx.v6_allowed);
1815
1816   return err ? GNUNET_SYSERR : sctx.ret;
1817 }
1818
1819
1820 /**
1821  * Run a service startup sequence within an existing
1822  * initialized system.
1823  *
1824  * @param service_name our service name
1825  * @param cfg configuration to use
1826  * @param options service options
1827  * @return NULL on error, service handle
1828  */
1829 struct GNUNET_SERVICE_Context *
1830 GNUNET_SERVICE_start (const char *service_name,
1831                       const struct GNUNET_CONFIGURATION_Handle *cfg,
1832                       enum GNUNET_SERVICE_Options options)
1833 {
1834   int i;
1835   struct GNUNET_SERVICE_Context *sctx;
1836
1837   sctx = GNUNET_malloc (sizeof (struct GNUNET_SERVICE_Context));
1838   sctx->ready_confirm_fd = -1;  /* no daemonizing */
1839   sctx->ret = GNUNET_OK;
1840   sctx->timeout = GNUNET_TIME_UNIT_FOREVER_REL;
1841   sctx->service_name = service_name;
1842   sctx->cfg = cfg;
1843   sctx->options = options;
1844
1845   /* setup subsystems */
1846   if (GNUNET_OK != setup_service (sctx))
1847   {
1848     GNUNET_SERVICE_stop (sctx);
1849     return NULL;
1850   }
1851   if (NULL != sctx->lsocks)
1852     sctx->server =
1853         GNUNET_SERVER_create_with_sockets (&check_access, sctx, sctx->lsocks,
1854                                            sctx->timeout, sctx->require_found);
1855   else
1856     sctx->server =
1857         GNUNET_SERVER_create (&check_access, sctx, sctx->addrs, sctx->addrlens,
1858                               sctx->timeout, sctx->require_found);
1859
1860   if (NULL == sctx->server)
1861   {
1862     GNUNET_SERVICE_stop (sctx);
1863     return NULL;
1864   }
1865   sctx->my_handlers = GNUNET_malloc (sizeof (defhandlers));
1866   memcpy (sctx->my_handlers, defhandlers, sizeof (defhandlers));
1867   i = 0;
1868   while ((sctx->my_handlers[i].callback != NULL))
1869     sctx->my_handlers[i++].callback_cls = sctx;
1870   GNUNET_SERVER_add_handlers (sctx->server, sctx->my_handlers);
1871   return sctx;
1872 }
1873
1874
1875 /**
1876  * Obtain the server used by a service.  Note that the server must NOT
1877  * be destroyed by the caller.
1878  *
1879  * @param ctx the service context returned from the start function
1880  * @return handle to the server for this service, NULL if there is none
1881  */
1882 struct GNUNET_SERVER_Handle *
1883 GNUNET_SERVICE_get_server (struct GNUNET_SERVICE_Context *ctx)
1884 {
1885   return ctx->server;
1886 }
1887
1888
1889 /**
1890  * Stop a service that was started with "GNUNET_SERVICE_start".
1891  *
1892  * @param sctx the service context returned from the start function
1893  */
1894 void
1895 GNUNET_SERVICE_stop (struct GNUNET_SERVICE_Context *sctx)
1896 {
1897   unsigned int i;
1898
1899   if (GNUNET_SCHEDULER_NO_TASK != sctx->shutdown_task)
1900   {
1901     GNUNET_SCHEDULER_cancel (sctx->shutdown_task);
1902     sctx->shutdown_task = GNUNET_SCHEDULER_NO_TASK;
1903   }
1904   if (NULL != sctx->server)
1905     GNUNET_SERVER_destroy (sctx->server);
1906   GNUNET_free_non_null (sctx->my_handlers);
1907   if (NULL != sctx->addrs)
1908   {
1909     i = 0;
1910     while (NULL != sctx->addrs[i])
1911       GNUNET_free (sctx->addrs[i++]);
1912     GNUNET_free (sctx->addrs);
1913   }
1914   GNUNET_free_non_null (sctx->addrlens);
1915   GNUNET_free_non_null (sctx->v4_denied);
1916   GNUNET_free_non_null (sctx->v6_denied);
1917   GNUNET_free_non_null (sctx->v4_allowed);
1918   GNUNET_free_non_null (sctx->v6_allowed);
1919   GNUNET_free (sctx);
1920 }
1921
1922
1923 /* end of service.c */