-do not crash with NPE if bind fails
[oweals/gnunet.git] / src / util / service_new.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2016 GNUnet e.V.
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., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20
21 /**
22  * @file util/service_new.c
23  * @brief functions related to starting services (redesign)
24  * @author Christian Grothoff
25  * @author Florian Dold
26  */
27 #include "platform.h"
28 #include "gnunet_util_lib.h"
29 #include "gnunet_protocols.h"
30 #include "gnunet_constants.h"
31 #include "gnunet_resolver_service.h"
32 #include "speedup.h"
33
34 #if HAVE_MALLINFO
35 #include <malloc.h>
36 #include "gauger.h"
37 #endif
38
39
40 #define LOG(kind,...) GNUNET_log_from (kind, "util", __VA_ARGS__)
41
42 #define LOG_STRERROR(kind,syscall) GNUNET_log_from_strerror (kind, "util", syscall)
43
44 #define LOG_STRERROR_FILE(kind,syscall,filename) GNUNET_log_from_strerror_file (kind, "util", syscall, filename)
45
46
47 /**
48  * Information the service tracks per listen operation.
49  */
50 struct ServiceListenContext
51 {
52
53   /**
54    * Kept in a DLL.
55    */
56   struct ServiceListenContext *next;
57
58   /**
59    * Kept in a DLL.
60    */
61   struct ServiceListenContext *prev;
62
63   /**
64    * Service this listen context belongs to.
65    */
66   struct GNUNET_SERVICE_Handle *sh;
67
68   /**
69    * Socket we are listening on.
70    */
71   struct GNUNET_NETWORK_Handle *listen_socket;
72
73   /**
74    * Task scheduled to do the listening.
75    */
76   struct GNUNET_SCHEDULER_Task *listen_task;
77
78 };
79
80
81 /**
82  * Handle to a service.
83  */
84 struct GNUNET_SERVICE_Handle
85 {
86   /**
87    * Our configuration.
88    */
89   const struct GNUNET_CONFIGURATION_Handle *cfg;
90
91   /**
92    * Name of our service.
93    */
94   const char *service_name;
95
96   /**
97    * Main service-specific task to run.
98    */
99   GNUNET_SERVICE_InitCallback service_init_cb;
100
101   /**
102    * Function to call when clients connect.
103    */
104   GNUNET_SERVICE_ConnectHandler connect_cb;
105
106   /**
107    * Function to call when clients disconnect / are disconnected.
108    */
109   GNUNET_SERVICE_DisconnectHandler disconnect_cb;
110
111   /**
112    * Closure for @e service_init_cb, @e connect_cb, @e disconnect_cb.
113    */
114   void *cb_cls;
115
116   /**
117    * DLL of listen sockets used to accept new connections.
118    */
119   struct ServiceListenContext *slc_head;
120
121   /**
122    * DLL of listen sockets used to accept new connections.
123    */
124   struct ServiceListenContext *slc_tail;
125
126   /**
127    * Our clients, kept in a DLL.
128    */
129   struct GNUNET_SERVICE_Client *clients_head;
130
131   /**
132    * Our clients, kept in a DLL.
133    */
134   struct GNUNET_SERVICE_Client *clients_tail;
135
136   /**
137    * Message handlers to use for all clients.
138    */
139   const struct GNUNET_MQ_MessageHandler *handlers;
140
141   /**
142    * Closure for @e task.
143    */
144   void *task_cls;
145
146   /**
147    * IPv4 addresses that are not allowed to connect.
148    */
149   struct GNUNET_STRINGS_IPv4NetworkPolicy *v4_denied;
150
151   /**
152    * IPv6 addresses that are not allowed to connect.
153    */
154   struct GNUNET_STRINGS_IPv6NetworkPolicy *v6_denied;
155
156   /**
157    * IPv4 addresses that are allowed to connect (if not
158    * set, all are allowed).
159    */
160   struct GNUNET_STRINGS_IPv4NetworkPolicy *v4_allowed;
161
162   /**
163    * IPv6 addresses that are allowed to connect (if not
164    * set, all are allowed).
165    */
166   struct GNUNET_STRINGS_IPv6NetworkPolicy *v6_allowed;
167
168   /**
169    * Do we require a matching UID for UNIX domain socket connections?
170    * #GNUNET_NO means that the UID does not have to match (however,
171    * @e match_gid may still impose other access control checks).
172    */
173   int match_uid;
174
175   /**
176    * Do we require a matching GID for UNIX domain socket connections?
177    * Ignored if @e match_uid is #GNUNET_YES.  Note that this is about
178    * checking that the client's UID is in our group OR that the
179    * client's GID is our GID.  If both "match_gid" and @e match_uid are
180    * #GNUNET_NO, all users on the local system have access.
181    */
182   int match_gid;
183
184   /**
185    * Set to #GNUNET_YES if we got a shutdown signal and terminate
186    * the service if #have_non_monitor_clients() returns #GNUNET_YES.
187    */
188   int got_shutdown;
189
190   /**
191    * Our options.
192    */
193   enum GNUNET_SERVICE_Options options;
194
195   /**
196    * If we are daemonizing, this FD is set to the
197    * pipe to the parent.  Send '.' if we started
198    * ok, '!' if not.  -1 if we are not daemonizing.
199    */
200   int ready_confirm_fd;
201
202   /**
203    * Overall success/failure of the service start.
204    */
205   int ret;
206
207   /**
208    * If #GNUNET_YES, consider unknown message types an error where the
209    * client is disconnected.
210    */
211   int require_found;
212 };
213
214
215 /**
216  * Handle to a client that is connected to a service.
217  */
218 struct GNUNET_SERVICE_Client
219 {
220
221   /**
222    * Kept in a DLL.
223    */
224   struct GNUNET_SERVICE_Client *next;
225
226   /**
227    * Kept in a DLL.
228    */
229   struct GNUNET_SERVICE_Client *prev;
230
231   /**
232    * Service that this client belongs to.
233    */
234   struct GNUNET_SERVICE_Handle *sh;
235
236   /**
237    * Socket of this client.
238    */
239   struct GNUNET_NETWORK_Handle *sock;
240
241   /**
242    * Message queue for the client.
243    */
244   struct GNUNET_MQ_Handle *mq;
245
246   /**
247    * Tokenizer we use for processing incoming data.
248    */
249   struct GNUNET_MessageStreamTokenizer *mst;
250
251   /**
252    * Task that warns about missing calls to
253    * #GNUNET_SERVICE_client_continue().
254    */
255   struct GNUNET_SCHEDULER_Task *warn_task;
256
257   /**
258    * Task run to finish dropping the client after the stack has
259    * properly unwound.
260    */
261   struct GNUNET_SCHEDULER_Task *drop_task;
262
263   /**
264    * Task that receives data from the client to
265    * pass it to the handlers.
266    */
267   struct GNUNET_SCHEDULER_Task *recv_task;
268
269   /**
270    * Task that transmit data to the client.
271    */
272   struct GNUNET_SCHEDULER_Task *send_task;
273
274   /**
275    * Pointer to the message to be transmitted by @e send_task.
276    */
277   const struct GNUNET_MessageHeader *msg;
278
279   /**
280    * User context value, value returned from
281    * the connect callback.
282    */
283   void *user_context;
284
285   /**
286    * Time when we last gave a message from this client
287    * to the application.
288    */
289   struct GNUNET_TIME_Absolute warn_start;
290
291   /**
292    * Current position in @e msg at which we are transmitting.
293    */
294   size_t msg_pos;
295
296   /**
297    * Persist the file handle for this client no matter what happens,
298    * force the OS to close once the process actually dies.  Should only
299    * be used in special cases!
300    */
301   int persist;
302
303   /**
304    * Is this client a 'monitor' client that should not be counted
305    * when deciding on destroying the server during soft shutdown?
306    * (see also #GNUNET_SERVICE_start)
307    */
308   int is_monitor;
309
310   /**
311    * Are we waiting for the application to call #GNUNET_SERVICE_client_continue()?
312    */
313   int needs_continue;
314
315   /**
316    * Type of last message processed (for warn_no_receive_done).
317    */
318   uint16_t warn_type;
319 };
320
321
322 /**
323  * Check if any of the clients we have left are unrelated to
324  * monitoring.
325  *
326  * @param sh service to check clients for
327  * @return #GNUNET_YES if we have non-monitoring clients left
328  */
329 static int
330 have_non_monitor_clients (struct GNUNET_SERVICE_Handle *sh)
331 {
332   struct GNUNET_SERVICE_Client *client;
333
334   for (client = sh->clients_head;NULL != client; client = client->next)
335   {
336     if (client->is_monitor)
337       continue;
338     return GNUNET_YES;
339   }
340   return GNUNET_NO;
341 }
342
343
344 /**
345  * Shutdown task triggered when a service should be terminated.
346  * This considers active clients and the service options to see
347  * how this specific service is to be terminated, and depending
348  * on this proceeds with the shutdown logic.
349  *
350  * @param cls our `struct GNUNET_SERVICE_Handle`
351  */
352 static void
353 service_shutdown (void *cls)
354 {
355   struct GNUNET_SERVICE_Handle *sh = cls;
356
357   switch (sh->options)
358   {
359   case GNUNET_SERVICE_OPTION_NONE:
360     GNUNET_SERVICE_shutdown (sh);
361     break;
362   case GNUNET_SERVICE_OPTION_MANUAL_SHUTDOWN:
363     /* This task should never be run if we are using
364        the manual shutdown. */
365     GNUNET_assert (0);
366     break;
367   case GNUNET_SERVICE_OPTION_SOFT_SHUTDOWN:
368     sh->got_shutdown = GNUNET_YES;
369     GNUNET_SERVICE_suspend (sh);
370     if (GNUNET_NO == have_non_monitor_clients (sh))
371       GNUNET_SERVICE_shutdown (sh);
372     break;
373   }
374 }
375
376
377 /**
378  * First task run by any service.  Initializes our shutdown task,
379  * starts the listening operation on our listen sockets and launches
380  * the custom logic of the application service.
381  *
382  * @param cls our `struct GNUNET_SERVICE_Handle`
383  */
384 static void
385 service_main (void *cls)
386 {
387   struct GNUNET_SERVICE_Handle *sh = cls;
388
389   if (GNUNET_SERVICE_OPTION_MANUAL_SHUTDOWN != sh->options)
390     GNUNET_SCHEDULER_add_shutdown (&service_shutdown,
391                                    sh);
392   GNUNET_SERVICE_resume (sh);
393   if (NULL != sh->service_init_cb)
394     sh->service_init_cb (sh->cb_cls,
395                          sh->cfg,
396                          sh);
397 }
398
399
400 /**
401  * Parse an IPv4 access control list.
402  *
403  * @param ret location where to write the ACL (set)
404  * @param sh service context to use to get the configuration
405  * @param option name of the ACL option to parse
406  * @return #GNUNET_SYSERR on parse error, #GNUNET_OK on success (including
407  *         no ACL configured)
408  */
409 static int
410 process_acl4 (struct GNUNET_STRINGS_IPv4NetworkPolicy **ret,
411               struct GNUNET_SERVICE_Handle *sh,
412               const char *option)
413 {
414   char *opt;
415
416   if (! GNUNET_CONFIGURATION_have_value (sh->cfg,
417                                          sh->service_name,
418                                          option))
419   {
420     *ret = NULL;
421     return GNUNET_OK;
422   }
423   GNUNET_break (GNUNET_OK ==
424                 GNUNET_CONFIGURATION_get_value_string (sh->cfg,
425                                                        sh->service_name,
426                                                        option,
427                                                        &opt));
428   if (NULL == (*ret = GNUNET_STRINGS_parse_ipv4_policy (opt)))
429   {
430     LOG (GNUNET_ERROR_TYPE_WARNING,
431          _("Could not parse IPv4 network specification `%s' for `%s:%s'\n"),
432          opt,
433          sh->service_name,
434          option);
435     GNUNET_free (opt);
436     return GNUNET_SYSERR;
437   }
438   GNUNET_free (opt);
439   return GNUNET_OK;
440 }
441
442
443 /**
444  * Parse an IPv6 access control list.
445  *
446  * @param ret location where to write the ACL (set)
447  * @param sh service context to use to get the configuration
448  * @param option name of the ACL option to parse
449  * @return #GNUNET_SYSERR on parse error, #GNUNET_OK on success (including
450  *         no ACL configured)
451  */
452 static int
453 process_acl6 (struct GNUNET_STRINGS_IPv6NetworkPolicy **ret,
454               struct GNUNET_SERVICE_Handle *sh,
455               const char *option)
456 {
457   char *opt;
458
459   if (! GNUNET_CONFIGURATION_have_value (sh->cfg,
460                                          sh->service_name,
461                                          option))
462   {
463     *ret = NULL;
464     return GNUNET_OK;
465   }
466   GNUNET_break (GNUNET_OK ==
467                 GNUNET_CONFIGURATION_get_value_string (sh->cfg,
468                                                        sh->service_name,
469                                                        option,
470                                                        &opt));
471   if (NULL == (*ret = GNUNET_STRINGS_parse_ipv6_policy (opt)))
472   {
473     LOG (GNUNET_ERROR_TYPE_WARNING,
474          _("Could not parse IPv6 network specification `%s' for `%s:%s'\n"),
475          opt,
476          sh->service_name,
477          option);
478     GNUNET_free (opt);
479     return GNUNET_SYSERR;
480   }
481   GNUNET_free (opt);
482   return GNUNET_OK;
483 }
484
485
486 /**
487  * Add the given UNIX domain path as an address to the
488  * list (as the first entry).
489  *
490  * @param saddrs array to update
491  * @param saddrlens where to store the address length
492  * @param unixpath path to add
493  * @param abstract #GNUNET_YES to add an abstract UNIX domain socket.  This
494  *          parameter is ignore on systems other than LINUX
495  */
496 static void
497 add_unixpath (struct sockaddr **saddrs,
498               socklen_t *saddrlens,
499               const char *unixpath,
500               int abstract)
501 {
502 #ifdef AF_UNIX
503   struct sockaddr_un *un;
504
505   un = GNUNET_new (struct sockaddr_un);
506   un->sun_family = AF_UNIX;
507   strncpy (un->sun_path,
508            unixpath,
509            sizeof (un->sun_path) - 1);
510 #ifdef LINUX
511   if (GNUNET_YES == abstract)
512     un->sun_path[0] = '\0';
513 #endif
514 #if HAVE_SOCKADDR_IN_SIN_LEN
515   un->sun_len = (u_char) sizeof (struct sockaddr_un);
516 #endif
517   *saddrs = (struct sockaddr *) un;
518   *saddrlens = sizeof (struct sockaddr_un);
519 #else
520   /* this function should never be called
521    * unless AF_UNIX is defined! */
522   GNUNET_assert (0);
523 #endif
524 }
525
526
527 /**
528  * Get the list of addresses that a server for the given service
529  * should bind to.
530  *
531  * @param service_name name of the service
532  * @param cfg configuration (which specifies the addresses)
533  * @param addrs set (call by reference) to an array of pointers to the
534  *              addresses the server should bind to and listen on; the
535  *              array will be NULL-terminated (on success)
536  * @param addr_lens set (call by reference) to an array of the lengths
537  *              of the respective `struct sockaddr` struct in the @a addrs
538  *              array (on success)
539  * @return number of addresses found on success,
540  *              #GNUNET_SYSERR if the configuration
541  *              did not specify reasonable finding information or
542  *              if it specified a hostname that could not be resolved;
543  *              #GNUNET_NO if the number of addresses configured is
544  *              zero (in this case, `*addrs` and `*addr_lens` will be
545  *              set to NULL).
546  */
547 static int
548 get_server_addresses (const char *service_name,
549                       const struct GNUNET_CONFIGURATION_Handle *cfg,
550                       struct sockaddr ***addrs,
551                       socklen_t **addr_lens)
552 {
553   int disablev6;
554   struct GNUNET_NETWORK_Handle *desc;
555   unsigned long long port;
556   char *unixpath;
557   struct addrinfo hints;
558   struct addrinfo *res;
559   struct addrinfo *pos;
560   struct addrinfo *next;
561   unsigned int i;
562   int resi;
563   int ret;
564   int abstract;
565   struct sockaddr **saddrs;
566   socklen_t *saddrlens;
567   char *hostname;
568
569   *addrs = NULL;
570   *addr_lens = NULL;
571   desc = NULL;
572   if (GNUNET_CONFIGURATION_have_value (cfg,
573                                        service_name,
574                                        "DISABLEV6"))
575   {
576     if (GNUNET_SYSERR ==
577         (disablev6 =
578          GNUNET_CONFIGURATION_get_value_yesno (cfg,
579                                                service_name,
580                                                "DISABLEV6")))
581       return GNUNET_SYSERR;
582   }
583   else
584     disablev6 = GNUNET_NO;
585
586   if (! disablev6)
587   {
588     /* probe IPv6 support */
589     desc = GNUNET_NETWORK_socket_create (PF_INET6,
590                                          SOCK_STREAM,
591                                          0);
592     if (NULL == desc)
593     {
594       if ( (ENOBUFS == errno) ||
595            (ENOMEM == errno) ||
596            (ENFILE == errno) ||
597            (EACCES == errno) )
598       {
599         LOG_STRERROR (GNUNET_ERROR_TYPE_ERROR,
600                       "socket");
601         return GNUNET_SYSERR;
602       }
603       LOG (GNUNET_ERROR_TYPE_INFO,
604            _("Disabling IPv6 support for service `%s', failed to create IPv6 socket: %s\n"),
605            service_name,
606            STRERROR (errno));
607       disablev6 = GNUNET_YES;
608     }
609     else
610     {
611       GNUNET_break (GNUNET_OK ==
612                     GNUNET_NETWORK_socket_close (desc));
613       desc = NULL;
614     }
615   }
616
617   port = 0;
618   if (GNUNET_CONFIGURATION_have_value (cfg,
619                                        service_name,
620                                        "PORT"))
621   {
622     if (GNUNET_OK !=
623         GNUNET_CONFIGURATION_get_value_number (cfg,
624                                                service_name,
625                                                "PORT",
626                                                &port))
627     {
628       LOG (GNUNET_ERROR_TYPE_ERROR,
629            _("Require valid port number for service `%s' in configuration!\n"),
630            service_name);
631     }
632     if (port > 65535)
633     {
634       LOG (GNUNET_ERROR_TYPE_ERROR,
635            _("Require valid port number for service `%s' in configuration!\n"),
636            service_name);
637       return GNUNET_SYSERR;
638     }
639   }
640
641   if (GNUNET_CONFIGURATION_have_value (cfg,
642                                        service_name,
643                                        "BINDTO"))
644   {
645     GNUNET_break (GNUNET_OK ==
646                   GNUNET_CONFIGURATION_get_value_string (cfg,
647                                                          service_name,
648                                                          "BINDTO",
649                                                          &hostname));
650   }
651   else
652     hostname = NULL;
653
654   unixpath = NULL;
655   abstract = GNUNET_NO;
656 #ifdef AF_UNIX
657   if ((GNUNET_YES ==
658        GNUNET_CONFIGURATION_have_value (cfg,
659                                         service_name,
660                                         "UNIXPATH")) &&
661       (GNUNET_OK ==
662        GNUNET_CONFIGURATION_get_value_filename (cfg,
663                                                 service_name,
664                                                 "UNIXPATH",
665                                                 &unixpath)) &&
666       (0 < strlen (unixpath)))
667   {
668     /* probe UNIX support */
669     struct sockaddr_un s_un;
670
671     if (strlen (unixpath) >= sizeof (s_un.sun_path))
672     {
673       LOG (GNUNET_ERROR_TYPE_WARNING,
674            _("UNIXPATH `%s' too long, maximum length is %llu\n"),
675            unixpath,
676            (unsigned long long) sizeof (s_un.sun_path));
677       unixpath = GNUNET_NETWORK_shorten_unixpath (unixpath);
678       LOG (GNUNET_ERROR_TYPE_INFO,
679            _("Using `%s' instead\n"),
680            unixpath);
681     }
682 #ifdef LINUX
683     abstract = GNUNET_CONFIGURATION_get_value_yesno (cfg,
684                                                      "TESTING",
685                                                      "USE_ABSTRACT_SOCKETS");
686     if (GNUNET_SYSERR == abstract)
687       abstract = GNUNET_NO;
688 #endif
689     if ( (GNUNET_YES != abstract) &&
690          (GNUNET_OK !=
691           GNUNET_DISK_directory_create_for_file (unixpath)) )
692       GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR,
693                                 "mkdir",
694                                 unixpath);
695   }
696   if (NULL != unixpath)
697   {
698     desc = GNUNET_NETWORK_socket_create (AF_UNIX,
699                                          SOCK_STREAM,
700                                          0);
701     if (NULL == desc)
702     {
703       if ((ENOBUFS == errno) ||
704           (ENOMEM == errno) ||
705           (ENFILE == errno) ||
706           (EACCES == errno))
707       {
708         LOG_STRERROR (GNUNET_ERROR_TYPE_ERROR,
709                       "socket");
710         GNUNET_free_non_null (hostname);
711         GNUNET_free (unixpath);
712         return GNUNET_SYSERR;
713       }
714       LOG (GNUNET_ERROR_TYPE_INFO,
715            _("Disabling UNIX domain socket support for service `%s', failed to create UNIX domain socket: %s\n"),
716            service_name,
717            STRERROR (errno));
718       GNUNET_free (unixpath);
719       unixpath = NULL;
720     }
721     else
722     {
723       GNUNET_break (GNUNET_OK ==
724                     GNUNET_NETWORK_socket_close (desc));
725       desc = NULL;
726     }
727   }
728 #endif
729
730   if ((0 == port) && (NULL == unixpath))
731   {
732     LOG (GNUNET_ERROR_TYPE_ERROR,
733          _("Have neither PORT nor UNIXPATH for service `%s', but one is required\n"),
734          service_name);
735     GNUNET_free_non_null (hostname);
736     return GNUNET_SYSERR;
737   }
738   if (0 == port)
739   {
740     saddrs = GNUNET_new_array (2,
741                                struct sockaddr *);
742     saddrlens = GNUNET_new_array (2,
743                                   socklen_t);
744     add_unixpath (saddrs,
745                   saddrlens,
746                   unixpath,
747                   abstract);
748     GNUNET_free_non_null (unixpath);
749     GNUNET_free_non_null (hostname);
750     *addrs = saddrs;
751     *addr_lens = saddrlens;
752     return 1;
753   }
754
755   if (NULL != hostname)
756   {
757     LOG (GNUNET_ERROR_TYPE_DEBUG,
758          "Resolving `%s' since that is where `%s' will bind to.\n",
759          hostname,
760          service_name);
761     memset (&hints,
762             0,
763             sizeof (struct addrinfo));
764     if (disablev6)
765       hints.ai_family = AF_INET;
766     hints.ai_protocol = IPPROTO_TCP;
767     if ((0 != (ret = getaddrinfo (hostname,
768                                   NULL,
769                                   &hints,
770                                   &res))) ||
771         (NULL == res))
772     {
773       LOG (GNUNET_ERROR_TYPE_ERROR,
774            _("Failed to resolve `%s': %s\n"),
775            hostname,
776            gai_strerror (ret));
777       GNUNET_free (hostname);
778       GNUNET_free_non_null (unixpath);
779       return GNUNET_SYSERR;
780     }
781     next = res;
782     i = 0;
783     while (NULL != (pos = next))
784     {
785       next = pos->ai_next;
786       if ( (disablev6) &&
787            (pos->ai_family == AF_INET6) )
788         continue;
789       i++;
790     }
791     if (0 == i)
792     {
793       LOG (GNUNET_ERROR_TYPE_ERROR,
794            _("Failed to find %saddress for `%s'.\n"),
795            disablev6 ? "IPv4 " : "",
796            hostname);
797       freeaddrinfo (res);
798       GNUNET_free (hostname);
799       GNUNET_free_non_null (unixpath);
800       return GNUNET_SYSERR;
801     }
802     resi = i;
803     if (NULL != unixpath)
804       resi++;
805     saddrs = GNUNET_new_array (resi + 1,
806                                struct sockaddr *);
807     saddrlens = GNUNET_new_array (resi + 1,
808                                   socklen_t);
809     i = 0;
810     if (NULL != unixpath)
811     {
812       add_unixpath (saddrs,
813                     saddrlens,
814                     unixpath,
815                     abstract);
816       i++;
817     }
818     next = res;
819     while (NULL != (pos = next))
820     {
821       next = pos->ai_next;
822       if ( (disablev6) &&
823            (AF_INET6 == pos->ai_family) )
824         continue;
825       if ( (IPPROTO_TCP != pos->ai_protocol) &&
826            (0 != pos->ai_protocol) )
827         continue;               /* not TCP */
828       if ( (SOCK_STREAM != pos->ai_socktype) &&
829            (0 != pos->ai_socktype) )
830         continue;               /* huh? */
831       LOG (GNUNET_ERROR_TYPE_DEBUG,
832            "Service `%s' will bind to `%s'\n",
833            service_name,
834            GNUNET_a2s (pos->ai_addr,
835                        pos->ai_addrlen));
836       if (AF_INET == pos->ai_family)
837       {
838         GNUNET_assert (sizeof (struct sockaddr_in) == pos->ai_addrlen);
839         saddrlens[i] = pos->ai_addrlen;
840         saddrs[i] = GNUNET_malloc (saddrlens[i]);
841         GNUNET_memcpy (saddrs[i],
842                        pos->ai_addr,
843                        saddrlens[i]);
844         ((struct sockaddr_in *) saddrs[i])->sin_port = htons (port);
845       }
846       else
847       {
848         GNUNET_assert (AF_INET6 == pos->ai_family);
849         GNUNET_assert (sizeof (struct sockaddr_in6) == pos->ai_addrlen);
850         saddrlens[i] = pos->ai_addrlen;
851         saddrs[i] = GNUNET_malloc (saddrlens[i]);
852         GNUNET_memcpy (saddrs[i],
853                        pos->ai_addr,
854                        saddrlens[i]);
855         ((struct sockaddr_in6 *) saddrs[i])->sin6_port = htons (port);
856       }
857       i++;
858     }
859     GNUNET_free (hostname);
860     freeaddrinfo (res);
861     resi = i;
862   }
863   else
864   {
865     /* will bind against everything, just set port */
866     if (disablev6)
867     {
868       /* V4-only */
869       resi = 1;
870       if (NULL != unixpath)
871         resi++;
872       i = 0;
873       saddrs = GNUNET_new_array (resi + 1,
874                                  struct sockaddr *);
875       saddrlens = GNUNET_new_array (resi + 1,
876                                     socklen_t);
877       if (NULL != unixpath)
878       {
879         add_unixpath (saddrs,
880                       saddrlens,
881                       unixpath,
882                       abstract);
883         i++;
884       }
885       saddrlens[i] = sizeof (struct sockaddr_in);
886       saddrs[i] = GNUNET_malloc (saddrlens[i]);
887 #if HAVE_SOCKADDR_IN_SIN_LEN
888       ((struct sockaddr_in *) saddrs[i])->sin_len = saddrlens[i];
889 #endif
890       ((struct sockaddr_in *) saddrs[i])->sin_family = AF_INET;
891       ((struct sockaddr_in *) saddrs[i])->sin_port = htons (port);
892     }
893     else
894     {
895       /* dual stack */
896       resi = 2;
897       if (NULL != unixpath)
898         resi++;
899       saddrs = GNUNET_new_array (resi + 1,
900                                  struct sockaddr *);
901       saddrlens = GNUNET_new_array (resi + 1,
902                                     socklen_t);
903       i = 0;
904       if (NULL != unixpath)
905       {
906         add_unixpath (saddrs,
907                       saddrlens,
908                       unixpath,
909                       abstract);
910         i++;
911       }
912       saddrlens[i] = sizeof (struct sockaddr_in6);
913       saddrs[i] = GNUNET_malloc (saddrlens[i]);
914 #if HAVE_SOCKADDR_IN_SIN_LEN
915       ((struct sockaddr_in6 *) saddrs[i])->sin6_len = saddrlens[0];
916 #endif
917       ((struct sockaddr_in6 *) saddrs[i])->sin6_family = AF_INET6;
918       ((struct sockaddr_in6 *) saddrs[i])->sin6_port = htons (port);
919       i++;
920       saddrlens[i] = sizeof (struct sockaddr_in);
921       saddrs[i] = GNUNET_malloc (saddrlens[i]);
922 #if HAVE_SOCKADDR_IN_SIN_LEN
923       ((struct sockaddr_in *) saddrs[i])->sin_len = saddrlens[1];
924 #endif
925       ((struct sockaddr_in *) saddrs[i])->sin_family = AF_INET;
926       ((struct sockaddr_in *) saddrs[i])->sin_port = htons (port);
927     }
928   }
929   GNUNET_free_non_null (unixpath);
930   *addrs = saddrs;
931   *addr_lens = saddrlens;
932   return resi;
933 }
934
935
936 #ifdef MINGW
937 /**
938  * Read listen sockets from the parent process (ARM).
939  *
940  * @param sh service context to initialize
941  * @return NULL-terminated array of sockets on success,
942  *         NULL if not ok (must bind yourself)
943  */
944 static struct GNUNET_NETWORK_Handle **
945 receive_sockets_from_parent (struct GNUNET_SERVICE_Handle *sh)
946 {
947   static struct GNUNET_NETWORK_Handle **lsocks;
948   const char *env_buf;
949   int fail;
950   uint64_t count;
951   uint64_t i;
952   HANDLE lsocks_pipe;
953
954   env_buf = getenv ("GNUNET_OS_READ_LSOCKS");
955   if ( (NULL == env_buf) ||
956        (strlen (env_buf) <= 0) )
957     return NULL;
958   /* Using W32 API directly here, because this pipe will
959    * never be used outside of this function, and it's just too much of a bother
960    * to create a GNUnet API that boxes a HANDLE (the way it is done with socks)
961    */
962   lsocks_pipe = (HANDLE) strtoul (env_buf,
963                                   NULL,
964                                   10);
965   if ( (0 == lsocks_pipe) ||
966        (INVALID_HANDLE_VALUE == lsocks_pipe))
967     return NULL;
968   fail = 1;
969   do
970   {
971     int ret;
972     int fail2;
973     DWORD rd;
974
975     ret = ReadFile (lsocks_pipe,
976                     &count,
977                     sizeof (count),
978                     &rd,
979                     NULL);
980     if ( (0 == ret) ||
981          (sizeof (count) != rd) ||
982          (0 == count) )
983       break;
984     lsocks = GNUNET_new_array (count + 1,
985                                struct GNUNET_NETWORK_Handle *);
986
987     fail2 = 1;
988     for (i = 0; i < count; i++)
989     {
990       WSAPROTOCOL_INFOA pi;
991       uint64_t size;
992       SOCKET s;
993
994       ret = ReadFile (lsocks_pipe,
995                       &size,
996                       sizeof (size),
997                       &rd,
998                       NULL);
999       if ( (0 == ret) ||
1000            (sizeof (size) != rd) ||
1001            (sizeof (pi) != size) )
1002         break;
1003       ret = ReadFile (lsocks_pipe,
1004                       &pi,
1005                       sizeof (pi),
1006                       &rd,
1007                       NULL);
1008       if ( (0 == ret) ||
1009            (sizeof (pi) != rd))
1010         break;
1011       s = WSASocketA (pi.iAddressFamily,
1012                       pi.iSocketType,
1013                       pi.iProtocol,
1014                       &pi,
1015                       0,
1016                       WSA_FLAG_OVERLAPPED);
1017       lsocks[i] = GNUNET_NETWORK_socket_box_native (s);
1018       if (NULL == lsocks[i])
1019         break;
1020       else if (i == count - 1)
1021         fail2 = 0;
1022     }
1023     if (fail2)
1024       break;
1025     lsocks[count] = NULL;
1026     fail = 0;
1027   }
1028   while (fail);
1029   CloseHandle (lsocks_pipe);
1030
1031   if (fail)
1032   {
1033     LOG (GNUNET_ERROR_TYPE_ERROR,
1034          _("Could not access a pre-bound socket, will try to bind myself\n"));
1035     for (i = 0; (i < count) && (NULL != lsocks[i]); i++)
1036       GNUNET_break (GNUNET_OK ==
1037                     GNUNET_NETWORK_socket_close (lsocks[i]));
1038     GNUNET_free (lsocks);
1039     return NULL;
1040   }
1041   return lsocks;
1042 }
1043 #endif
1044
1045
1046 /**
1047  * Create and initialize a listen socket for the server.
1048  *
1049  * @param server_addr address to listen on
1050  * @param socklen length of @a server_addr
1051  * @return NULL on error, otherwise the listen socket
1052  */
1053 static struct GNUNET_NETWORK_Handle *
1054 open_listen_socket (const struct sockaddr *server_addr,
1055                     socklen_t socklen)
1056 {
1057   struct GNUNET_NETWORK_Handle *sock;
1058   uint16_t port;
1059   int eno;
1060
1061   switch (server_addr->sa_family)
1062   {
1063   case AF_INET:
1064     port = ntohs (((const struct sockaddr_in *) server_addr)->sin_port);
1065     break;
1066   case AF_INET6:
1067     port = ntohs (((const struct sockaddr_in6 *) server_addr)->sin6_port);
1068     break;
1069   case AF_UNIX:
1070     port = 0;
1071     break;
1072   default:
1073     GNUNET_break (0);
1074     port = 0;
1075     break;
1076   }
1077   sock = GNUNET_NETWORK_socket_create (server_addr->sa_family,
1078                                        SOCK_STREAM,
1079                                        0);
1080   if (NULL == sock)
1081   {
1082     LOG_STRERROR (GNUNET_ERROR_TYPE_ERROR,
1083                   "socket");
1084     errno = 0;
1085     return NULL;
1086   }
1087   /* bind the socket */
1088   if (GNUNET_OK != GNUNET_NETWORK_socket_bind (sock,
1089                                                server_addr,
1090                                                socklen))
1091   {
1092     eno = errno;
1093     if (EADDRINUSE != errno)
1094     {
1095       /* we don't log 'EADDRINUSE' here since an IPv4 bind may
1096        * fail if we already took the port on IPv6; if both IPv4 and
1097        * IPv6 binds fail, then our caller will log using the
1098        * errno preserved in 'eno' */
1099       LOG_STRERROR (GNUNET_ERROR_TYPE_ERROR,
1100                     "bind");
1101       if (0 != port)
1102         LOG (GNUNET_ERROR_TYPE_ERROR,
1103              _("`%s' failed for port %d (%s).\n"),
1104              "bind",
1105              port,
1106              (AF_INET == server_addr->sa_family) ? "IPv4" : "IPv6");
1107       eno = 0;
1108     }
1109     else
1110     {
1111       if (0 != port)
1112         LOG (GNUNET_ERROR_TYPE_WARNING,
1113              _("`%s' failed for port %d (%s): address already in use\n"),
1114              "bind", port,
1115              (AF_INET == server_addr->sa_family) ? "IPv4" : "IPv6");
1116       else if (AF_UNIX == server_addr->sa_family)
1117       {
1118         LOG (GNUNET_ERROR_TYPE_WARNING,
1119              _("`%s' failed for `%s': address already in use\n"),
1120              "bind",
1121              GNUNET_a2s (server_addr, socklen));
1122       }
1123     }
1124     GNUNET_break (GNUNET_OK ==
1125                   GNUNET_NETWORK_socket_close (sock));
1126     errno = eno;
1127     return NULL;
1128   }
1129   if (GNUNET_OK != GNUNET_NETWORK_socket_listen (sock,
1130                                                  5))
1131   {
1132     LOG_STRERROR (GNUNET_ERROR_TYPE_ERROR,
1133                   "listen");
1134     GNUNET_break (GNUNET_OK ==
1135                   GNUNET_NETWORK_socket_close (sock));
1136     errno = 0;
1137     return NULL;
1138   }
1139   if (0 != port)
1140     LOG (GNUNET_ERROR_TYPE_DEBUG,
1141          "Server starts to listen on port %u.\n",
1142          port);
1143   return sock;
1144 }
1145
1146
1147 /**
1148  * Setup service handle
1149  *
1150  * Configuration may specify:
1151  * - PORT (where to bind to for TCP)
1152  * - UNIXPATH (where to bind to for UNIX domain sockets)
1153  * - DISABLEV6 (disable support for IPv6, otherwise we use dual-stack)
1154  * - BINDTO (hostname or IP address to bind to, otherwise we take everything)
1155  * - ACCEPT_FROM  (only allow connections from specified IPv4 subnets)
1156  * - ACCEPT_FROM6 (only allow connections from specified IPv6 subnets)
1157  * - REJECT_FROM  (disallow allow connections from specified IPv4 subnets)
1158  * - REJECT_FROM6 (disallow allow connections from specified IPv6 subnets)
1159  *
1160  * @param sh service context to initialize
1161  * @return #GNUNET_OK if configuration succeeded
1162  */
1163 static int
1164 setup_service (struct GNUNET_SERVICE_Handle *sh)
1165 {
1166   int tolerant;
1167   struct GNUNET_NETWORK_Handle **lsocks;
1168 #ifndef MINGW
1169   const char *nfds;
1170   unsigned int cnt;
1171   int flags;
1172 #endif
1173
1174   if (GNUNET_CONFIGURATION_have_value
1175       (sh->cfg,
1176        sh->service_name,
1177        "TOLERANT"))
1178   {
1179     if (GNUNET_SYSERR ==
1180         (tolerant =
1181          GNUNET_CONFIGURATION_get_value_yesno (sh->cfg,
1182                                                sh->service_name,
1183                                                "TOLERANT")))
1184     {
1185       LOG (GNUNET_ERROR_TYPE_ERROR,
1186            _("Specified value for `%s' of service `%s' is invalid\n"),
1187            "TOLERANT",
1188            sh->service_name);
1189       return GNUNET_SYSERR;
1190     }
1191   }
1192   else
1193     tolerant = GNUNET_NO;
1194
1195   lsocks = NULL;
1196 #ifndef MINGW
1197   errno = 0;
1198   if ( (NULL != (nfds = getenv ("LISTEN_FDS"))) &&
1199        (1 == SSCANF (nfds,
1200                      "%u",
1201                      &cnt)) &&
1202        (cnt > 0) &&
1203        (cnt < FD_SETSIZE) &&
1204        (cnt + 4 < FD_SETSIZE) )
1205   {
1206     lsocks = GNUNET_new_array (cnt + 1,
1207                                struct GNUNET_NETWORK_Handle *);
1208     while (0 < cnt--)
1209     {
1210       flags = fcntl (3 + cnt,
1211                      F_GETFD);
1212       if ( (flags < 0) ||
1213            (0 != (flags & FD_CLOEXEC)) ||
1214            (NULL ==
1215             (lsocks[cnt] = GNUNET_NETWORK_socket_box_native (3 + cnt))))
1216       {
1217         LOG (GNUNET_ERROR_TYPE_ERROR,
1218              _("Could not access pre-bound socket %u, will try to bind myself\n"),
1219              (unsigned int) 3 + cnt);
1220         cnt++;
1221         while (NULL != lsocks[cnt])
1222           GNUNET_break (GNUNET_OK ==
1223                         GNUNET_NETWORK_socket_close (lsocks[cnt++]));
1224         GNUNET_free (lsocks);
1225         lsocks = NULL;
1226         break;
1227       }
1228     }
1229     unsetenv ("LISTEN_FDS");
1230   }
1231 #else
1232   if (NULL != getenv ("GNUNET_OS_READ_LSOCKS"))
1233   {
1234     lsocks = receive_sockets_from_parent (sh);
1235     putenv ("GNUNET_OS_READ_LSOCKS=");
1236   }
1237 #endif
1238
1239   if (NULL != lsocks)
1240   {
1241     /* listen only on inherited sockets if we have any */
1242     struct GNUNET_NETWORK_Handle **ls;
1243
1244     for (ls = lsocks; NULL != *ls; ls++)
1245     {
1246       struct ServiceListenContext *slc;
1247
1248       slc = GNUNET_new (struct ServiceListenContext);
1249       slc->sh = sh;
1250       slc->listen_socket = *ls;
1251       GNUNET_CONTAINER_DLL_insert (sh->slc_head,
1252                                    sh->slc_tail,
1253                                    slc);
1254     }
1255     GNUNET_free (lsocks);
1256   }
1257   else
1258   {
1259     struct sockaddr **addrs;
1260     socklen_t *addrlens;
1261     int num;
1262
1263     num = get_server_addresses (sh->service_name,
1264                                 sh->cfg,
1265                                 &addrs,
1266                                 &addrlens);
1267     if (GNUNET_SYSERR == num)
1268       return GNUNET_SYSERR;
1269
1270     for (int i = 0; i < num; i++)
1271     {
1272       struct ServiceListenContext *slc;
1273
1274       slc = GNUNET_new (struct ServiceListenContext);
1275       slc->sh = sh;
1276       slc->listen_socket = open_listen_socket (addrs[i],
1277                                                addrlens[i]);
1278       if (NULL == slc->listen_socket)
1279       {
1280         GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR,
1281                              "bind");
1282         GNUNET_free (slc);
1283         continue;
1284       }
1285       GNUNET_CONTAINER_DLL_insert (sh->slc_head,
1286                                    sh->slc_tail,
1287                                    slc);
1288     }
1289   }
1290
1291   sh->require_found = tolerant ? GNUNET_NO : GNUNET_YES;
1292   sh->match_uid
1293     = GNUNET_CONFIGURATION_get_value_yesno (sh->cfg,
1294                                             sh->service_name,
1295                                             "UNIX_MATCH_UID");
1296   sh->match_gid
1297     = GNUNET_CONFIGURATION_get_value_yesno (sh->cfg,
1298                                             sh->service_name,
1299                                             "UNIX_MATCH_GID");
1300   process_acl4 (&sh->v4_denied,
1301                 sh,
1302                 "REJECT_FROM");
1303   process_acl4 (&sh->v4_allowed,
1304                 sh,
1305                 "ACCEPT_FROM");
1306   process_acl6 (&sh->v6_denied,
1307                 sh,
1308                 "REJECT_FROM6");
1309   process_acl6 (&sh->v6_allowed,
1310                 sh,
1311                 "ACCEPT_FROM6");
1312   return GNUNET_OK;
1313 }
1314
1315
1316 /**
1317  * Get the name of the user that'll be used
1318  * to provide the service.
1319  *
1320  * @param sh service context
1321  * @return value of the 'USERNAME' option
1322  */
1323 static char *
1324 get_user_name (struct GNUNET_SERVICE_Handle *sh)
1325 {
1326   char *un;
1327
1328   if (GNUNET_OK !=
1329       GNUNET_CONFIGURATION_get_value_filename (sh->cfg,
1330                                                sh->service_name,
1331                                                "USERNAME",
1332                                                &un))
1333     return NULL;
1334   return un;
1335 }
1336
1337
1338 /**
1339  * Set user ID.
1340  *
1341  * @param sh service context
1342  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
1343  */
1344 static int
1345 set_user_id (struct GNUNET_SERVICE_Handle *sh)
1346 {
1347   char *user;
1348
1349   if (NULL == (user = get_user_name (sh)))
1350     return GNUNET_OK;           /* keep */
1351 #ifndef MINGW
1352   struct passwd *pws;
1353
1354   errno = 0;
1355   pws = getpwnam (user);
1356   if (NULL == pws)
1357   {
1358     LOG (GNUNET_ERROR_TYPE_ERROR,
1359          _("Cannot obtain information about user `%s': %s\n"),
1360          user,
1361          errno == 0 ? _("No such user") : STRERROR (errno));
1362     GNUNET_free (user);
1363     return GNUNET_SYSERR;
1364   }
1365   if ( (0 != setgid (pws->pw_gid)) ||
1366        (0 != setegid (pws->pw_gid)) ||
1367 #if HAVE_INITGROUPS
1368        (0 != initgroups (user,
1369                          pws->pw_gid)) ||
1370 #endif
1371        (0 != setuid (pws->pw_uid)) ||
1372        (0 != seteuid (pws->pw_uid)))
1373   {
1374     if ((0 != setregid (pws->pw_gid,
1375                         pws->pw_gid)) ||
1376         (0 != setreuid (pws->pw_uid,
1377                         pws->pw_uid)))
1378     {
1379       LOG (GNUNET_ERROR_TYPE_ERROR,
1380            _("Cannot change user/group to `%s': %s\n"),
1381            user,
1382            STRERROR (errno));
1383       GNUNET_free (user);
1384       return GNUNET_SYSERR;
1385     }
1386   }
1387 #endif
1388   GNUNET_free (user);
1389   return GNUNET_OK;
1390 }
1391
1392
1393 /**
1394  * Get the name of the file where we will
1395  * write the PID of the service.
1396  *
1397  * @param sh service context
1398  * @return name of the file for the process ID
1399  */
1400 static char *
1401 get_pid_file_name (struct GNUNET_SERVICE_Handle *sh)
1402 {
1403   char *pif;
1404
1405   if (GNUNET_OK !=
1406       GNUNET_CONFIGURATION_get_value_filename (sh->cfg,
1407                                                sh->service_name,
1408                                                "PIDFILE",
1409                                                &pif))
1410     return NULL;
1411   return pif;
1412 }
1413
1414
1415 /**
1416  * Delete the PID file that was created by our parent.
1417  *
1418  * @param sh service context
1419  */
1420 static void
1421 pid_file_delete (struct GNUNET_SERVICE_Handle *sh)
1422 {
1423   char *pif = get_pid_file_name (sh);
1424
1425   if (NULL == pif)
1426     return;                     /* no PID file */
1427   if (0 != UNLINK (pif))
1428     LOG_STRERROR_FILE (GNUNET_ERROR_TYPE_WARNING,
1429                        "unlink",
1430                        pif);
1431   GNUNET_free (pif);
1432 }
1433
1434
1435 /**
1436  * Detach from terminal.
1437  *
1438  * @param sh service context
1439  * @return #GNUNET_OK on success, #GNUNET_SYSERR on error
1440  */
1441 static int
1442 detach_terminal (struct GNUNET_SERVICE_Handle *sh)
1443 {
1444 #ifndef MINGW
1445   pid_t pid;
1446   int nullfd;
1447   int filedes[2];
1448
1449   if (0 != PIPE (filedes))
1450   {
1451     LOG_STRERROR (GNUNET_ERROR_TYPE_ERROR,
1452                   "pipe");
1453     return GNUNET_SYSERR;
1454   }
1455   pid = fork ();
1456   if (pid < 0)
1457   {
1458     LOG_STRERROR (GNUNET_ERROR_TYPE_ERROR,
1459                   "fork");
1460     return GNUNET_SYSERR;
1461   }
1462   if (0 != pid)
1463   {
1464     /* Parent */
1465     char c;
1466
1467     GNUNET_break (0 == CLOSE (filedes[1]));
1468     c = 'X';
1469     if (1 != READ (filedes[0],
1470                    &c,
1471                    sizeof (char)))
1472       LOG_STRERROR (GNUNET_ERROR_TYPE_WARNING,
1473                     "read");
1474     fflush (stdout);
1475     switch (c)
1476     {
1477     case '.':
1478       exit (0);
1479     case 'I':
1480       LOG (GNUNET_ERROR_TYPE_INFO,
1481            _("Service process failed to initialize\n"));
1482       break;
1483     case 'S':
1484       LOG (GNUNET_ERROR_TYPE_INFO,
1485            _("Service process could not initialize server function\n"));
1486       break;
1487     case 'X':
1488       LOG (GNUNET_ERROR_TYPE_INFO,
1489            _("Service process failed to report status\n"));
1490       break;
1491     }
1492     exit (1);                   /* child reported error */
1493   }
1494   GNUNET_break (0 == CLOSE (0));
1495   GNUNET_break (0 == CLOSE (1));
1496   GNUNET_break (0 == CLOSE (filedes[0]));
1497   nullfd = OPEN ("/dev/null",
1498                  O_RDWR | O_APPEND);
1499   if (nullfd < 0)
1500     return GNUNET_SYSERR;
1501   /* set stdin/stdout to /dev/null */
1502   if ( (dup2 (nullfd, 0) < 0) ||
1503        (dup2 (nullfd, 1) < 0) )
1504   {
1505     LOG_STRERROR (GNUNET_ERROR_TYPE_ERROR,
1506                   "dup2");
1507     (void) CLOSE (nullfd);
1508     return GNUNET_SYSERR;
1509   }
1510   (void) CLOSE (nullfd);
1511   /* Detach from controlling terminal */
1512   pid = setsid ();
1513   if (-1 == pid)
1514     LOG_STRERROR (GNUNET_ERROR_TYPE_ERROR,
1515                   "setsid");
1516   sh->ready_confirm_fd = filedes[1];
1517 #else
1518   /* FIXME: we probably need to do something else
1519    * elsewhere in order to fork the process itself... */
1520   FreeConsole ();
1521 #endif
1522   return GNUNET_OK;
1523 }
1524
1525
1526 /**
1527  * Creates the "main" function for a GNUnet service.  You
1528  * should almost always use the #GNUNET_SERVICE_MAIN macro
1529  * instead of calling this function directly (except
1530  * for ARM, which should call this function directly).
1531  *
1532  * The function will launch the service with the name @a service_name
1533  * using the @a service_options to configure its shutdown
1534  * behavior. Once the service is ready, the @a init_cb will be called
1535  * for service-specific initialization.  @a init_cb will be given the
1536  * service handler which can be used to control the service's
1537  * availability.  When clients connect or disconnect, the respective
1538  * @a connect_cb or @a disconnect_cb functions will be called. For
1539  * messages received from the clients, the respective @a handlers will
1540  * be invoked; for the closure of the handlers we use the return value
1541  * from the @a connect_cb invocation of the respective client.
1542  *
1543  * Each handler MUST call #GNUNET_SERVICE_client_continue() after each
1544  * message to receive further messages from this client.  If
1545  * #GNUNET_SERVICE_client_continue() is not called within a short
1546  * time, a warning will be logged. If delays are expected, services
1547  * should call #GNUNET_SERVICE_client_disable_continue_warning() to
1548  * disable the warning.
1549  *
1550  * Clients sending invalid messages (based on @a handlers) will be
1551  * dropped. Additionally, clients can be dropped at any time using
1552  * #GNUNET_SERVICE_client_drop().
1553  *
1554  * @param argc number of command-line arguments in @a argv
1555  * @param argv array of command-line arguments
1556  * @param service_name name of the service to run
1557  * @param options options controlling shutdown of the service
1558  * @param service_init_cb function to call once the service is ready
1559  * @param connect_cb function to call whenever a client connects
1560  * @param disconnect_cb function to call whenever a client disconnects
1561  * @param cls closure argument for @a service_init_cb, @a connect_cb and @a disconnect_cb
1562  * @param handlers NULL-terminated array of message handlers for the service,
1563  *                 the closure will be set to the value returned by
1564  *                 the @a connect_cb for the respective connection
1565  * @return 0 on success, non-zero on error
1566  */
1567 int
1568 GNUNET_SERVICE_ruN_ (int argc,
1569                      char *const *argv,
1570                      const char *service_name,
1571                      enum GNUNET_SERVICE_Options options,
1572                      GNUNET_SERVICE_InitCallback service_init_cb,
1573                      GNUNET_SERVICE_ConnectHandler connect_cb,
1574                      GNUNET_SERVICE_DisconnectHandler disconnect_cb,
1575                      void *cls,
1576                      const struct GNUNET_MQ_MessageHandler *handlers)
1577 {
1578   struct GNUNET_SERVICE_Handle sh;
1579   char *cfg_filename;
1580   char *opt_cfg_filename;
1581   char *loglev;
1582   const char *xdg;
1583   char *logfile;
1584   int do_daemonize;
1585   unsigned long long skew_offset;
1586   unsigned long long skew_variance;
1587   long long clock_offset;
1588   struct GNUNET_CONFIGURATION_Handle *cfg;
1589   int ret;
1590   int err;
1591
1592   struct GNUNET_GETOPT_CommandLineOption service_options[] = {
1593     GNUNET_GETOPT_OPTION_CFG_FILE (&opt_cfg_filename),
1594     {'d', "daemonize", NULL,
1595      gettext_noop ("do daemonize (detach from terminal)"), 0,
1596      GNUNET_GETOPT_set_one, &do_daemonize},
1597     GNUNET_GETOPT_OPTION_HELP (NULL),
1598     GNUNET_GETOPT_OPTION_LOGLEVEL (&loglev),
1599     GNUNET_GETOPT_OPTION_LOGFILE (&logfile),
1600     GNUNET_GETOPT_OPTION_VERSION (PACKAGE_VERSION " " VCS_VERSION),
1601     GNUNET_GETOPT_OPTION_END
1602   };
1603
1604   memset (&sh,
1605           0,
1606           sizeof (sh));
1607   xdg = getenv ("XDG_CONFIG_HOME");
1608   if (NULL != xdg)
1609     GNUNET_asprintf (&cfg_filename,
1610                      "%s%s%s",
1611                      xdg,
1612                      DIR_SEPARATOR_STR,
1613                      GNUNET_OS_project_data_get ()->config_file);
1614   else
1615     cfg_filename = GNUNET_strdup (GNUNET_OS_project_data_get ()->user_config_file);
1616   sh.ready_confirm_fd = -1;
1617   sh.options = options;
1618   sh.cfg = cfg = GNUNET_CONFIGURATION_create ();
1619   sh.service_init_cb = service_init_cb;
1620   sh.connect_cb = connect_cb;
1621   sh.disconnect_cb = disconnect_cb;
1622   sh.cb_cls = cls;
1623   sh.handlers = handlers;
1624   sh.service_name = service_name;
1625
1626   /* setup subsystems */
1627   loglev = NULL;
1628   logfile = NULL;
1629   opt_cfg_filename = NULL;
1630   do_daemonize = 0;
1631   ret = GNUNET_GETOPT_run (service_name,
1632                            service_options,
1633                            argc,
1634                            argv);
1635   if (GNUNET_SYSERR == ret)
1636     goto shutdown;
1637   if (GNUNET_NO == ret)
1638   {
1639     err = 0;
1640     goto shutdown;
1641   }
1642   if (GNUNET_OK != GNUNET_log_setup (service_name,
1643                                      loglev,
1644                                      logfile))
1645   {
1646     GNUNET_break (0);
1647     goto shutdown;
1648   }
1649   if (NULL == opt_cfg_filename)
1650     opt_cfg_filename = GNUNET_strdup (cfg_filename);
1651   if (GNUNET_YES == GNUNET_DISK_file_test (opt_cfg_filename))
1652   {
1653     if (GNUNET_SYSERR == GNUNET_CONFIGURATION_load (cfg,
1654                                                     opt_cfg_filename))
1655     {
1656       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1657                   _("Malformed configuration file `%s', exit ...\n"),
1658                   opt_cfg_filename);
1659       goto shutdown;
1660     }
1661   }
1662   else
1663   {
1664     if (GNUNET_SYSERR == GNUNET_CONFIGURATION_load (cfg,
1665                                                     NULL))
1666     {
1667       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1668                   _("Malformed configuration, exit ...\n"));
1669       goto shutdown;
1670     }
1671     if (0 != strcmp (opt_cfg_filename,
1672                      cfg_filename))
1673       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1674                   _("Could not access configuration file `%s'\n"),
1675                   opt_cfg_filename);
1676   }
1677   if (GNUNET_OK != setup_service (&sh))
1678     goto shutdown;
1679   if ( (1 == do_daemonize) &&
1680        (GNUNET_OK != detach_terminal (&sh)) )
1681   {
1682     GNUNET_break (0);
1683     goto shutdown;
1684   }
1685   if (GNUNET_OK != set_user_id (&sh))
1686     goto shutdown;
1687   LOG (GNUNET_ERROR_TYPE_DEBUG,
1688        "Service `%s' runs with configuration from `%s'\n",
1689        service_name,
1690        opt_cfg_filename);
1691   if ((GNUNET_OK ==
1692        GNUNET_CONFIGURATION_get_value_number (sh.cfg,
1693                                               "TESTING",
1694                                               "SKEW_OFFSET",
1695                                               &skew_offset)) &&
1696       (GNUNET_OK ==
1697        GNUNET_CONFIGURATION_get_value_number (sh.cfg,
1698                                               "TESTING",
1699                                               "SKEW_VARIANCE",
1700                                               &skew_variance)))
1701   {
1702     clock_offset = skew_offset - skew_variance;
1703     GNUNET_TIME_set_offset (clock_offset);
1704     LOG (GNUNET_ERROR_TYPE_DEBUG,
1705          "Skewing clock by %dll ms\n",
1706          clock_offset);
1707   }
1708   GNUNET_RESOLVER_connect (sh.cfg);
1709
1710   /* actually run service */
1711   err = 0;
1712   GNUNET_SCHEDULER_run (&service_main,
1713                         &sh);
1714   /* shutdown */
1715   if (1 == do_daemonize)
1716     pid_file_delete (&sh);
1717
1718 shutdown:
1719   if (-1 != sh.ready_confirm_fd)
1720   {
1721     if (1 != WRITE (sh.ready_confirm_fd,
1722                     err ? "I" : "S",
1723                     1))
1724       LOG_STRERROR (GNUNET_ERROR_TYPE_WARNING,
1725                     "write");
1726     GNUNET_break (0 == CLOSE (sh.ready_confirm_fd));
1727   }
1728 #if HAVE_MALLINFO
1729   {
1730     char *counter;
1731
1732     if ( (GNUNET_YES ==
1733           GNUNET_CONFIGURATION_have_value (sh.cfg,
1734                                            service_name,
1735                                            "GAUGER_HEAP")) &&
1736          (GNUNET_OK ==
1737           GNUNET_CONFIGURATION_get_value_string (sh.cfg,
1738                                                  service_name,
1739                                                  "GAUGER_HEAP",
1740                                                  &counter)) )
1741     {
1742       struct mallinfo mi;
1743
1744       mi = mallinfo ();
1745       GAUGER (service_name,
1746               counter,
1747               mi.usmblks,
1748               "blocks");
1749       GNUNET_free (counter);
1750     }
1751   }
1752 #endif
1753   GNUNET_SPEEDUP_stop_ ();
1754   GNUNET_CONFIGURATION_destroy (cfg);
1755
1756   while (NULL != sh.slc_head)
1757   {
1758     struct ServiceListenContext *slc = sh.slc_head;
1759
1760     sh.slc_head = slc->next;
1761     if (NULL != slc->listen_task)
1762       GNUNET_SCHEDULER_cancel (slc->listen_task);
1763     GNUNET_break (GNUNET_OK ==
1764                   GNUNET_NETWORK_socket_close (slc->listen_socket));
1765     GNUNET_free (slc);
1766   }
1767
1768   GNUNET_free_non_null (logfile);
1769   GNUNET_free_non_null (loglev);
1770   GNUNET_free (cfg_filename);
1771   GNUNET_free_non_null (opt_cfg_filename);
1772   GNUNET_free_non_null (sh.v4_denied);
1773   GNUNET_free_non_null (sh.v6_denied);
1774   GNUNET_free_non_null (sh.v4_allowed);
1775   GNUNET_free_non_null (sh.v6_allowed);
1776
1777   return err ? GNUNET_SYSERR : sh.ret;
1778 }
1779
1780
1781 /**
1782  * Suspend accepting connections from the listen socket temporarily.
1783  * Resume activity using #GNUNET_SERVICE_resume.
1784  *
1785  * @param sh service to stop accepting connections.
1786  */
1787 void
1788 GNUNET_SERVICE_suspend (struct GNUNET_SERVICE_Handle *sh)
1789 {
1790   struct ServiceListenContext *slc;
1791
1792   for (slc = sh->slc_head; NULL != slc; slc = slc->next)
1793   {
1794     if (NULL != slc->listen_task)
1795     {
1796       GNUNET_SCHEDULER_cancel (slc->listen_task);
1797       slc->listen_task = NULL;
1798     }
1799   }
1800 }
1801
1802
1803 /**
1804  * Task run when we are ready to transmit data to the
1805  * client.
1806  *
1807  * @param cls the `struct GNUNET_SERVICE_Client *` to send to
1808  */
1809 static void
1810 do_send (void *cls)
1811 {
1812   struct GNUNET_SERVICE_Client *client = cls;
1813   ssize_t ret;
1814   size_t left;
1815   const char *buf;
1816
1817   client->send_task = NULL;
1818   buf = (const char *) client->msg;
1819   left = ntohs (client->msg->size) - client->msg_pos;
1820   ret = GNUNET_NETWORK_socket_send (client->sock,
1821                                     &buf[client->msg_pos],
1822                                     left);
1823   GNUNET_assert (ret <= (ssize_t) left);
1824   if (0 == ret)
1825   {
1826     GNUNET_MQ_inject_error (client->mq,
1827                             GNUNET_MQ_ERROR_WRITE);
1828     return;
1829   }
1830   if (-1 == ret)
1831   {
1832     if ( (EAGAIN == errno) ||
1833          (EINTR == errno) )
1834     {
1835       /* ignore */
1836       ret = 0;
1837     }
1838     else
1839     {
1840       GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING,
1841                            "send");
1842       GNUNET_MQ_inject_error (client->mq,
1843                               GNUNET_MQ_ERROR_WRITE);
1844       return;
1845     }
1846   }
1847   client->msg_pos += ret;
1848   if (left > ret)
1849   {
1850     client->send_task
1851       = GNUNET_SCHEDULER_add_write_net (GNUNET_TIME_UNIT_FOREVER_REL,
1852                                         client->sock,
1853                                         &do_send,
1854                                         client);
1855     return;
1856   }
1857   GNUNET_MQ_impl_send_continue (client->mq);
1858 }
1859
1860
1861 /**
1862  * Signature of functions implementing the sending functionality of a
1863  * message queue.
1864  *
1865  * @param mq the message queue
1866  * @param msg the message to send
1867  * @param impl_state our `struct GNUNET_SERVICE_Client *`
1868  */
1869 static void
1870 service_mq_send (struct GNUNET_MQ_Handle *mq,
1871                  const struct GNUNET_MessageHeader *msg,
1872                  void *impl_state)
1873 {
1874   struct GNUNET_SERVICE_Client *client = impl_state;
1875
1876   GNUNET_assert (NULL == client->send_task);
1877   client->msg = msg;
1878   client->msg_pos = 0;
1879   client->send_task
1880     = GNUNET_SCHEDULER_add_write_net (GNUNET_TIME_UNIT_FOREVER_REL,
1881                                       client->sock,
1882                                       &do_send,
1883                                       client);
1884 }
1885
1886
1887 /**
1888  * Implementation function that cancels the currently sent message.
1889  *
1890  * @param mq message queue
1891  * @param impl_state state specific to the implementation
1892  */
1893 static void
1894 service_mq_cancel (struct GNUNET_MQ_Handle *mq,
1895                    void *impl_state)
1896 {
1897   struct GNUNET_SERVICE_Client *client = impl_state;
1898
1899   GNUNET_assert (0); // not implemented
1900   // FIXME: stop transmission! (must be possible, otherwise
1901   // we must have told MQ that the message was sent!)
1902 }
1903
1904
1905 /**
1906  * Generic error handler, called with the appropriate
1907  * error code and the same closure specified at the creation of
1908  * the message queue.
1909  * Not every message queue implementation supports an error handler.
1910  *
1911  * @param cls closure with our `struct GNUNET_SERVICE_Client`
1912  * @param error error code
1913  */
1914 static void
1915 service_mq_error_handler (void *cls,
1916                           enum GNUNET_MQ_Error error)
1917 {
1918   struct GNUNET_SERVICE_Client *client = cls;
1919   struct GNUNET_SERVICE_Handle *sh = client->sh;
1920
1921   if ( (GNUNET_MQ_ERROR_NO_MATCH == error) &&
1922        (GNUNET_NO == sh->require_found) )
1923   {
1924     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1925                 "No handler for message of type %u found\n",
1926                 (unsigned int) client->warn_type);
1927     GNUNET_SERVICE_client_continue (client);
1928     return; /* ignore error */
1929   }
1930   GNUNET_SERVICE_client_drop (client);
1931 }
1932
1933
1934 /**
1935  * Task run to warn about missing calls to #GNUNET_SERVICE_client_continue().
1936  *
1937  * @param cls our `struct GNUNET_SERVICE_Client *` to process more requests from
1938  */
1939 static void
1940 warn_no_client_continue (void *cls)
1941 {
1942   struct GNUNET_SERVICE_Client *client = cls;
1943
1944   GNUNET_break (0 != client->warn_type); /* type should never be 0 here, as we don't use 0 */
1945   client->warn_task
1946     = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_MINUTES,
1947                                     &warn_no_client_continue,
1948                                     client);
1949   LOG (GNUNET_ERROR_TYPE_WARNING,
1950        _("Processing code for message of type %u did not call `GNUNET_SERVICE_client_continue' after %s\n"),
1951        (unsigned int) client->warn_type,
1952        GNUNET_STRINGS_relative_time_to_string (GNUNET_TIME_absolute_get_duration (client->warn_start),
1953                                                GNUNET_YES));
1954 }
1955
1956
1957 /**
1958  * Functions with this signature are called whenever a
1959  * complete message is received by the tokenizer for a client.
1960  *
1961  * Do not call #GNUNET_MST_destroy() from within
1962  * the scope of this callback.
1963  *
1964  * @param cls closure with the `struct GNUNET_SERVICE_Client *`
1965  * @param message the actual message
1966  * @return #GNUNET_OK on success, #GNUNET_SYSERR if the client was dropped
1967  */
1968 static int
1969 service_client_mst_cb (void *cls,
1970                        const struct GNUNET_MessageHeader *message)
1971 {
1972   struct GNUNET_SERVICE_Client *client = cls;
1973
1974   GNUNET_assert (GNUNET_NO == client->needs_continue);
1975   client->needs_continue = GNUNET_YES;
1976   client->warn_type = ntohs (message->type);
1977   client->warn_start = GNUNET_TIME_absolute_get ();
1978   GNUNET_assert (NULL == client->warn_task);
1979   client->warn_task
1980     = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_MINUTES,
1981                                     &warn_no_client_continue,
1982                                     client);
1983   GNUNET_MQ_inject_message (client->mq,
1984                             message);
1985   if (NULL != client->drop_task)
1986     return GNUNET_SYSERR;
1987   return GNUNET_OK;
1988 }
1989
1990
1991 /**
1992  * A client sent us data. Receive and process it.  If we are done,
1993  * reschedule this task.
1994  *
1995  * @param cls the `struct GNUNET_SERVICE_Client` that sent us data.
1996  */
1997 static void
1998 service_client_recv (void *cls)
1999 {
2000   struct GNUNET_SERVICE_Client *client = cls;
2001   int ret;
2002
2003   client->recv_task = NULL;
2004   ret = GNUNET_MST_read (client->mst,
2005                          client->sock,
2006                          GNUNET_NO,
2007                          GNUNET_YES);
2008   if (GNUNET_SYSERR == ret)
2009   {
2010     /* client closed connection (or IO error) */
2011     if (NULL == client->drop_task)
2012     {
2013       GNUNET_assert (GNUNET_NO == client->needs_continue);
2014       GNUNET_SERVICE_client_drop (client);
2015     }
2016     return;
2017   }
2018   if (GNUNET_NO == ret)
2019     return; /* more messages in buffer, wait for application
2020                to be done processing */
2021   GNUNET_assert (GNUNET_OK == ret);
2022   if (GNUNET_YES == client->needs_continue)
2023     return;
2024   if (NULL != client->recv_task)
2025     return;
2026   /* MST needs more data, re-schedule read job */
2027   client->recv_task
2028     = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
2029                                      client->sock,
2030                                      &service_client_recv,
2031                                      client);
2032 }
2033
2034
2035 /**
2036  * We have successfully accepted a connection from a client.  Now
2037  * setup the client (with the scheduler) and tell the application.
2038  *
2039  * @param sh service that accepted the client
2040  * @param sock socket associated with the client
2041  */
2042 static void
2043 start_client (struct GNUNET_SERVICE_Handle *sh,
2044               struct GNUNET_NETWORK_Handle *csock)
2045 {
2046   struct GNUNET_SERVICE_Client *client;
2047
2048   client = GNUNET_new (struct GNUNET_SERVICE_Client);
2049   GNUNET_CONTAINER_DLL_insert (sh->clients_head,
2050                                sh->clients_tail,
2051                                client);
2052   client->sh = sh;
2053   client->sock = csock;
2054   client->mq = GNUNET_MQ_queue_for_callbacks (&service_mq_send,
2055                                               NULL,
2056                                               &service_mq_cancel,
2057                                               client,
2058                                               sh->handlers,
2059                                               &service_mq_error_handler,
2060                                               client);
2061   client->mst = GNUNET_MST_create (&service_client_mst_cb,
2062                                    client);
2063   client->user_context = sh->connect_cb (sh->cb_cls,
2064                                          client,
2065                                          client->mq);
2066   GNUNET_MQ_set_handlers_closure (client->mq,
2067                                   client->user_context);
2068   client->recv_task
2069     = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
2070                                      client->sock,
2071                                      &service_client_recv,
2072                                      client);
2073 }
2074
2075
2076 /**
2077  * Check if the given IP address is in the list of IP addresses.
2078  *
2079  * @param list a list of networks
2080  * @param add the IP to check (in network byte order)
2081  * @return #GNUNET_NO if the IP is not in the list, #GNUNET_YES if it it is
2082  */
2083 static int
2084 check_ipv4_listed (const struct GNUNET_STRINGS_IPv4NetworkPolicy *list,
2085                    const struct in_addr *add)
2086 {
2087   unsigned int i;
2088
2089   if (NULL == list)
2090     return GNUNET_NO;
2091   i = 0;
2092   while ( (0 != list[i].network.s_addr) ||
2093           (0 != list[i].netmask.s_addr) )
2094   {
2095     if ((add->s_addr & list[i].netmask.s_addr) ==
2096         (list[i].network.s_addr & list[i].netmask.s_addr))
2097       return GNUNET_YES;
2098     i++;
2099   }
2100   return GNUNET_NO;
2101 }
2102
2103
2104 /**
2105  * Check if the given IP address is in the list of IP addresses.
2106  *
2107  * @param list a list of networks
2108  * @param ip the IP to check (in network byte order)
2109  * @return #GNUNET_NO if the IP is not in the list, #GNUNET_YES if it it is
2110  */
2111 static int
2112 check_ipv6_listed (const struct GNUNET_STRINGS_IPv6NetworkPolicy *list,
2113                    const struct in6_addr *ip)
2114 {
2115   unsigned int i;
2116   unsigned int j;
2117   struct in6_addr zero;
2118
2119   if (NULL == list)
2120     return GNUNET_NO;
2121   memset (&zero,
2122           0,
2123           sizeof (struct in6_addr));
2124   i = 0;
2125 NEXT:
2126   while (0 != memcmp (&zero,
2127                       &list[i].network,
2128                       sizeof (struct in6_addr)))
2129   {
2130     for (j = 0; j < sizeof (struct in6_addr) / sizeof (int); j++)
2131       if (((((int *) ip)[j] & ((int *) &list[i].netmask)[j])) !=
2132           (((int *) &list[i].network)[j] & ((int *) &list[i].netmask)[j]))
2133       {
2134         i++;
2135         goto NEXT;
2136       }
2137     return GNUNET_YES;
2138   }
2139   return GNUNET_NO;
2140 }
2141
2142
2143 /**
2144  * We have a client. Accept the incoming socket(s) (and reschedule
2145  * the listen task).
2146  *
2147  * @param cls the `struct ServiceListenContext` of the ready listen socket
2148  */
2149 static void
2150 accept_client (void *cls)
2151 {
2152   struct ServiceListenContext *slc = cls;
2153   struct GNUNET_SERVICE_Handle *sh = slc->sh;
2154
2155   slc->listen_task = NULL;
2156   while (1)
2157   {
2158     struct GNUNET_NETWORK_Handle *sock;
2159     const struct sockaddr_in *v4;
2160     const struct sockaddr_in6 *v6;
2161     struct sockaddr_storage sa;
2162     socklen_t addrlen;
2163     int ok;
2164
2165     addrlen = sizeof (sa);
2166     sock = GNUNET_NETWORK_socket_accept (slc->listen_socket,
2167                                          (struct sockaddr *) &sa,
2168                                          &addrlen);
2169     if (NULL == sock)
2170       break;
2171     switch (sa.ss_family)
2172     {
2173     case AF_INET:
2174       GNUNET_assert (addrlen == sizeof (struct sockaddr_in));
2175       v4 = (const struct sockaddr_in *) &sa;
2176       ok = ( ( (NULL == sh->v4_allowed) ||
2177                (check_ipv4_listed (sh->v4_allowed,
2178                                    &v4->sin_addr))) &&
2179              ( (NULL == sh->v4_denied) ||
2180                (! check_ipv4_listed (sh->v4_denied,
2181                                      &v4->sin_addr)) ) );
2182       break;
2183     case AF_INET6:
2184       GNUNET_assert (addrlen == sizeof (struct sockaddr_in6));
2185       v6 = (const struct sockaddr_in6 *) &sa;
2186       ok = ( ( (NULL == sh->v6_allowed) ||
2187                (check_ipv6_listed (sh->v6_allowed,
2188                                    &v6->sin6_addr))) &&
2189              ( (NULL == sh->v6_denied) ||
2190                (! check_ipv6_listed (sh->v6_denied,
2191                                      &v6->sin6_addr)) ) );
2192       break;
2193 #ifndef WINDOWS
2194     case AF_UNIX:
2195       ok = GNUNET_OK;            /* controlled using file-system ACL now */
2196       break;
2197 #endif
2198     default:
2199       LOG (GNUNET_ERROR_TYPE_WARNING,
2200            _("Unknown address family %d\n"),
2201            sa.ss_family);
2202       return;
2203     }
2204     if (! ok)
2205     {
2206       LOG (GNUNET_ERROR_TYPE_DEBUG,
2207            "Service rejected incoming connection from %s due to policy.\n",
2208            GNUNET_a2s ((const struct sockaddr *) &sa,
2209                        addrlen));
2210       GNUNET_break (GNUNET_OK ==
2211                     GNUNET_NETWORK_socket_close (sock));
2212       continue;
2213     }
2214     LOG (GNUNET_ERROR_TYPE_DEBUG,
2215          "Service accepted incoming connection from %s.\n",
2216          GNUNET_a2s ((const struct sockaddr *) &sa,
2217                      addrlen));
2218     start_client (slc->sh,
2219                   sock);
2220   }
2221   slc->listen_task
2222     = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
2223                                      slc->listen_socket,
2224                                      &accept_client,
2225                                      slc);
2226 }
2227
2228
2229 /**
2230  * Resume accepting connections from the listen socket.
2231  *
2232  * @param sh service to resume accepting connections.
2233  */
2234 void
2235 GNUNET_SERVICE_resume (struct GNUNET_SERVICE_Handle *sh)
2236 {
2237   struct ServiceListenContext *slc;
2238
2239   for (slc = sh->slc_head; NULL != slc; slc = slc->next)
2240   {
2241     GNUNET_assert (NULL == slc->listen_task);
2242     slc->listen_task
2243       = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
2244                                        slc->listen_socket,
2245                                        &accept_client,
2246                                        slc);
2247   }
2248 }
2249
2250
2251 /**
2252  * Task run to resume receiving data from the client after
2253  * the client called #GNUNET_SERVICE_client_continue().
2254  *
2255  * @param cls our `struct GNUNET_SERVICE_Client`
2256  */
2257 static void
2258 resume_client_receive (void *cls)
2259 {
2260   struct GNUNET_SERVICE_Client *c = cls;
2261   int ret;
2262
2263   c->recv_task = NULL;
2264   /* first, check if there is still something in the buffer */
2265   ret = GNUNET_MST_next (c->mst,
2266                          GNUNET_YES);
2267   if (GNUNET_SYSERR == ret)
2268   {
2269     GNUNET_break (0);
2270     GNUNET_SERVICE_client_drop (c);
2271     return;
2272   }
2273   if (GNUNET_NO == ret)
2274     return; /* done processing, wait for more later */
2275   GNUNET_assert (GNUNET_OK == ret);
2276   if (GNUNET_YES == c->needs_continue)
2277     return; /* #GNUNET_MST_next() did give a message to the client */
2278   /* need to receive more data from the network first */
2279   if (NULL != c->recv_task)
2280     return;
2281   c->recv_task
2282     = GNUNET_SCHEDULER_add_read_net (GNUNET_TIME_UNIT_FOREVER_REL,
2283                                      c->sock,
2284                                      &service_client_recv,
2285                                      c);
2286 }
2287
2288
2289 /**
2290  * Continue receiving further messages from the given client.
2291  * Must be called after each message received.
2292  *
2293  * @param c the client to continue receiving from
2294  */
2295 void
2296 GNUNET_SERVICE_client_continue (struct GNUNET_SERVICE_Client *c)
2297 {
2298   GNUNET_assert (GNUNET_YES == c->needs_continue);
2299   GNUNET_assert (NULL == c->recv_task);
2300   c->needs_continue = GNUNET_NO;
2301   if (NULL != c->warn_task)
2302   {
2303     GNUNET_SCHEDULER_cancel (c->warn_task);
2304     c->warn_task = NULL;
2305   }
2306   c->recv_task
2307     = GNUNET_SCHEDULER_add_now (&resume_client_receive,
2308                                 c);
2309 }
2310
2311
2312 /**
2313  * Disable the warning the server issues if a message is not
2314  * acknowledged in a timely fashion.  Use this call if a client is
2315  * intentionally delayed for a while.  Only applies to the current
2316  * message.
2317  *
2318  * @param c client for which to disable the warning
2319  */
2320 void
2321 GNUNET_SERVICE_client_disable_continue_warning (struct GNUNET_SERVICE_Client *c)
2322 {
2323   GNUNET_break (NULL != c->warn_task);
2324   if (NULL != c->warn_task)
2325   {
2326     GNUNET_SCHEDULER_cancel (c->warn_task);
2327     c->warn_task = NULL;
2328   }
2329 }
2330
2331
2332 /**
2333  * Asynchronously finish dropping the client.
2334  *
2335  * @param cls the `struct GNUNET_SERVICE_Client`.
2336  */
2337 static void
2338 finish_client_drop (void *cls)
2339 {
2340   struct GNUNET_SERVICE_Client *c = cls;
2341   struct GNUNET_SERVICE_Handle *sh = c->sh;
2342
2343   GNUNET_MST_destroy (c->mst);
2344   GNUNET_MQ_destroy (c->mq);
2345   if (GNUNET_NO == c->persist)
2346   {
2347     GNUNET_break (GNUNET_OK ==
2348                   GNUNET_NETWORK_socket_close (c->sock));
2349   }
2350   else
2351   {
2352     GNUNET_NETWORK_socket_free_memory_only_ (c->sock);
2353   }
2354   GNUNET_free (c);
2355   if ( (GNUNET_YES == sh->got_shutdown) &&
2356        (GNUNET_NO == have_non_monitor_clients (sh)) )
2357     GNUNET_SERVICE_shutdown (sh);
2358 }
2359
2360
2361 /**
2362  * Ask the server to disconnect from the given client.  This is the
2363  * same as returning #GNUNET_SYSERR within the check procedure when
2364  * handling a message, wexcept that it allows dropping of a client even
2365  * when not handling a message from that client.  The `disconnect_cb`
2366  * will be called on @a c even if the application closes the connection
2367  * using this function.
2368  *
2369  * @param c client to disconnect now
2370  */
2371 void
2372 GNUNET_SERVICE_client_drop (struct GNUNET_SERVICE_Client *c)
2373 {
2374   struct GNUNET_SERVICE_Handle *sh = c->sh;
2375
2376   if (NULL != c->drop_task)
2377   {
2378     /* asked to drop twice! */
2379     GNUNET_break (0);
2380     return;
2381   }
2382   GNUNET_CONTAINER_DLL_remove (sh->clients_head,
2383                                sh->clients_tail,
2384                                c);
2385   sh->disconnect_cb (sh->cb_cls,
2386                      c,
2387                      c->user_context);
2388   if (NULL != c->warn_task)
2389   {
2390     GNUNET_SCHEDULER_cancel (c->warn_task);
2391     c->warn_task = NULL;
2392   }
2393   if (NULL != c->recv_task)
2394   {
2395     GNUNET_SCHEDULER_cancel (c->recv_task);
2396     c->recv_task = NULL;
2397   }
2398   if (NULL != c->send_task)
2399   {
2400     GNUNET_SCHEDULER_cancel (c->send_task);
2401     c->send_task = NULL;
2402   }
2403   c->drop_task = GNUNET_SCHEDULER_add_now (&finish_client_drop,
2404                                            c);
2405 }
2406
2407
2408 /**
2409  * Explicitly stops the service.
2410  *
2411  * @param sh server to shutdown
2412  */
2413 void
2414 GNUNET_SERVICE_shutdown (struct GNUNET_SERVICE_Handle *sh)
2415 {
2416   struct GNUNET_SERVICE_Client *client;
2417
2418   GNUNET_SERVICE_suspend (sh);
2419   sh->got_shutdown = GNUNET_NO;
2420   while (NULL != (client = sh->clients_head))
2421     GNUNET_SERVICE_client_drop (client);
2422 }
2423
2424
2425 /**
2426  * Set the 'monitor' flag on this client.  Clients which have been
2427  * marked as 'monitors' won't prevent the server from shutting down
2428  * once #GNUNET_SERVICE_stop_listening() has been invoked.  The idea is
2429  * that for "normal" clients we likely want to allow them to process
2430  * their requests; however, monitor-clients are likely to 'never'
2431  * disconnect during shutdown and thus will not be considered when
2432  * determining if the server should continue to exist after
2433  * shutdown has been triggered.
2434  *
2435  * @param c client to mark as a monitor
2436  */
2437 void
2438 GNUNET_SERVICE_client_mark_monitor (struct GNUNET_SERVICE_Client *c)
2439 {
2440   c->is_monitor = GNUNET_YES;
2441   if ( (GNUNET_YES == c->sh->got_shutdown) &&
2442        (GNUNET_NO == have_non_monitor_clients (c->sh)) )
2443     GNUNET_SERVICE_shutdown (c->sh);
2444 }
2445
2446
2447 /**
2448  * Set the persist option on this client.  Indicates that the
2449  * underlying socket or fd should never really be closed.  Used for
2450  * indicating process death.
2451  *
2452  * @param c client to persist the socket (never to be closed)
2453  */
2454 void
2455 GNUNET_SERVICE_client_persist (struct GNUNET_SERVICE_Client *c)
2456 {
2457   c->persist = GNUNET_YES;
2458 }
2459
2460
2461 /**
2462  * Obtain the message queue of @a c.  Convenience function.
2463  *
2464  * @param c the client to continue receiving from
2465  * @return the message queue of @a c
2466  */
2467 struct GNUNET_MQ_Handle *
2468 GNUNET_SERVICE_client_get_mq (struct GNUNET_SERVICE_Client *c)
2469 {
2470   return c->mq;
2471 }
2472
2473
2474 /* end of service_new.c */