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