Make process_log more generic
[oweals/gnunet.git] / src / hostlist / gnunet-daemon-hostlist_server.c
1 /*
2      This file is part of GNUnet.
3      (C) 2008, 2009, 2010, 2014 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 hostlist/gnunet-daemon-hostlist_server.c
23  * @author Christian Grothoff
24  * @author Matthias Wachs
25  * @author David Barksdale
26  * @brief application to provide an integrated hostlist HTTP server
27  */
28 #include "platform.h"
29 #include <microhttpd.h>
30 #include "gnunet-daemon-hostlist_server.h"
31 #include "gnunet_hello_lib.h"
32 #include "gnunet_peerinfo_service.h"
33 #include "gnunet-daemon-hostlist.h"
34 #include "gnunet_resolver_service.h"
35
36
37 /**
38  * How long until our hostlist advertisment transmission via CORE should
39  * time out?
40  */
41 #define GNUNET_ADV_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 5)
42
43
44 /**
45  * Handle to the HTTP server as provided by libmicrohttpd for IPv6.
46  */
47 static struct MHD_Daemon *daemon_handle_v6;
48
49 /**
50  * Handle to the HTTP server as provided by libmicrohttpd for IPv4.
51  */
52 static struct MHD_Daemon *daemon_handle_v4;
53
54 /**
55  * Our configuration.
56  */
57 static const struct GNUNET_CONFIGURATION_Handle *cfg;
58
59 /**
60  * For keeping statistics.
61  */
62 static struct GNUNET_STATISTICS_Handle *stats;
63
64 /**
65  * Handle to the core service (NULL until we've connected to it).
66  */
67 static struct GNUNET_CORE_Handle *core;
68
69 /**
70  * Handle to the peerinfo notify service (NULL until we've connected to it).
71  */
72 static struct GNUNET_PEERINFO_NotifyContext *notify;
73
74 /**
75  * Our primary task for IPv4.
76  */
77 static GNUNET_SCHEDULER_TaskIdentifier hostlist_task_v4;
78
79 /**
80  * Our primary task for IPv6.
81  */
82 static GNUNET_SCHEDULER_TaskIdentifier hostlist_task_v6;
83
84 /**
85  * Our canonical response.
86  */
87 static struct MHD_Response *response;
88
89 /**
90  * Handle for accessing peerinfo service.
91  */
92 static struct GNUNET_PEERINFO_Handle *peerinfo;
93
94 /**
95  * Set if we are allowed to advertise our hostlist to others.
96  */
97 static int advertising;
98
99 /**
100  * Buffer for the hostlist address
101  */
102 static char *hostlist_uri;
103
104 /**
105  * Map of peer identities to `struct GNUNET_CORE_TransmitHandle *` for
106  * pending hostlist server advertisements.
107  */
108 static struct GNUNET_CONTAINER_MultiPeerMap *advertisements;
109
110
111 /**
112  * Context for #host_processor().
113  */
114 struct HostSet
115 {
116   /**
117    * Iterator used to build @e data (NULL when done).
118    */
119   struct GNUNET_PEERINFO_IteratorContext *pitr;
120
121   /**
122    * Place where we accumulate all of the HELLO messages.
123    */
124   char *data;
125
126   /**
127    * Number of bytes in @e data.
128    */
129   unsigned int size;
130
131 };
132
133
134 /**
135  * NULL if we are not currenlty iterating over peer information.
136  */
137 static struct HostSet *builder;
138
139
140 /**
141  * Add headers to a request indicating that we allow Cross-Origin Resource
142  * Sharing.
143  *
144  * @param response response to add headers to
145  */
146 static void
147 add_cors_headers (struct MHD_Response *response)
148 {
149   MHD_add_response_header (response,
150                            "Access-Control-Allow-Origin",
151                            "*");
152   MHD_add_response_header (response,
153                            "Access-Control-Allow-Methods",
154                            "GET, OPTIONS");
155   MHD_add_response_header (response,
156                            "Access-Control-Max-Age",
157                            "86400");
158 }
159
160
161 /**
162  * Function that assembles our response.
163  */
164 static void
165 finish_response ()
166 {
167   if (NULL != response)
168     MHD_destroy_response (response);
169   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
170               "Creating hostlist response with %u bytes\n",
171               (unsigned int) builder->size);
172   response =
173       MHD_create_response_from_data (builder->size, builder->data, MHD_YES,
174                                      MHD_NO);
175   add_cors_headers (response);
176   if ((NULL == daemon_handle_v4) && (NULL == daemon_handle_v6))
177   {
178     MHD_destroy_response (response);
179     response = NULL;
180   }
181   GNUNET_STATISTICS_set (stats, gettext_noop ("bytes in hostlist"),
182                          builder->size, GNUNET_YES);
183   GNUNET_free (builder);
184   builder = NULL;
185 }
186
187
188 /**
189  * Set @a cls to #GNUNET_YES (we have an address!).
190  *
191  * @param cls closure, an `int *`
192  * @param address the address (ignored)
193  * @param expiration expiration time (call is ignored if this is in the past)
194  * @return  #GNUNET_SYSERR to stop iterating (unless expiration has occured)
195  */
196 static int
197 check_has_addr (void *cls,
198                 const struct GNUNET_HELLO_Address *address,
199                 struct GNUNET_TIME_Absolute expiration)
200 {
201   int *arg = cls;
202
203   if (0 == GNUNET_TIME_absolute_get_remaining (expiration).rel_value_us)
204   {
205     GNUNET_STATISTICS_update (stats,
206                               gettext_noop ("expired addresses encountered"), 1,
207                               GNUNET_YES);
208     return GNUNET_YES;          /* ignore this address */
209   }
210   *arg = GNUNET_YES;
211   return GNUNET_SYSERR;
212 }
213
214
215 /**
216  * Callback that processes each of the known HELLOs for the
217  * hostlist response construction.
218  *
219  * @param cls closure, NULL
220  * @param peer id of the peer, NULL for last call
221  * @param hello hello message for the peer (can be NULL)
222  * @param err_msg message
223  */
224 static void
225 host_processor (void *cls,
226                 const struct GNUNET_PeerIdentity *peer,
227                 const struct GNUNET_HELLO_Message *hello,
228                 const char *err_msg)
229 {
230   size_t old;
231   size_t s;
232   int has_addr;
233
234   if (NULL != err_msg)
235   {
236     GNUNET_assert (NULL == peer);
237     builder->pitr = NULL;
238     GNUNET_free_non_null (builder->data);
239     GNUNET_free (builder);
240     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
241                 _("Error in communication with PEERINFO service: %s\n"),
242                 err_msg);
243     return;
244   }
245   if (NULL == peer)
246   {
247     builder->pitr = NULL;
248     finish_response ();
249     return;
250   }
251   if (NULL == hello)
252     return;
253   has_addr = GNUNET_NO;
254   GNUNET_HELLO_iterate_addresses (hello,
255                                   GNUNET_NO,
256                                   &check_has_addr,
257                                   &has_addr);
258   if (GNUNET_NO == has_addr)
259   {
260     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
261                 "HELLO for peer `%4s' has no address, not suitable for hostlist!\n",
262                 GNUNET_i2s (peer));
263     GNUNET_STATISTICS_update (stats,
264                               gettext_noop
265                               ("HELLOs without addresses encountered (ignored)"),
266                               1, GNUNET_NO);
267     return;
268   }
269   old = builder->size;
270   s = GNUNET_HELLO_size (hello);
271   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
272               "Received %u bytes of `%s' from peer `%s' for hostlist.\n",
273               (unsigned int) s,
274               "HELLO",
275               GNUNET_i2s (peer));
276   if ( (old + s >= GNUNET_MAX_MALLOC_CHECKED) ||
277        (old + s >= MAX_BYTES_PER_HOSTLISTS) )
278   {
279     /* too large, skip! */
280     GNUNET_STATISTICS_update (stats,
281                               gettext_noop
282                               ("bytes not included in hostlist (size limit)"),
283                               s, GNUNET_NO);
284     return;
285   }
286   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
287               "Adding peer `%s' to hostlist (%u bytes)\n",
288               GNUNET_i2s (peer),
289               (unsigned int) s);
290   GNUNET_array_grow (builder->data,
291                      builder->size,
292                      old + s);
293   memcpy (&builder->data[old],
294           hello,
295           s);
296 }
297
298
299 /**
300  * Hostlist access policy (very permissive, allows everything).
301  * Returns #MHD_NO only if we are not yet ready to serve.
302  *
303  * @param cls closure
304  * @param addr address information from the client
305  * @param addrlen length of @a addr
306  * @return #MHD_YES if connection is allowed, #MHD_NO if not (we are not ready)
307  */
308 static int
309 accept_policy_callback (void *cls,
310                         const struct sockaddr *addr,
311                         socklen_t addrlen)
312 {
313   if (NULL == response)
314   {
315     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
316                 "Received request for hostlist, but I am not yet ready; rejecting!\n");
317     return MHD_NO;
318   }
319   return MHD_YES;               /* accept all */
320 }
321
322
323 /**
324  * Main request handler.
325  *
326  * @param cls argument given together with the function
327  *        pointer when the handler was registered with MHD
328  * @param connection
329  * @param url the requested url
330  * @param method the HTTP method used (#MHD_HTTP_METHOD_GET,
331  *        #MHD_HTTP_METHOD_PUT, etc.)
332  * @param version the HTTP version string (i.e.
333  *        #MHD_HTTP_VERSION_1_1)
334  * @param upload_data the data being uploaded (excluding HEADERS,
335  *        for a POST that fits into memory and that is encoded
336  *        with a supported encoding, the POST data will NOT be
337  *        given in upload_data and is instead available as
338  *        part of #MHD_get_connection_values; very large POST
339  *        data *will* be made available incrementally in
340  *        @a upload_data)
341  * @param upload_data_size set initially to the size of the
342  *        @a upload_data provided; the method must update this
343  *        value to the number of bytes NOT processed;
344  * @param con_cls pointer that the callback can set to some
345  *        address and that will be preserved by MHD for future
346  *        calls for this request; since the access handler may
347  *        be called many times (i.e., for a PUT/POST operation
348  *        with plenty of upload data) this allows the application
349  *        to easily associate some request-specific state.
350  *        If necessary, this state can be cleaned up in the
351  *        global #MHD_RequestCompletedCallback (which
352  *        can be set with the #MHD_OPTION_NOTIFY_COMPLETED).
353  *        Initially, `*con_cls` will be NULL.
354  * @return #MHD_YES if the connection was handled successfully,
355  *         #MHD_NO if the socket must be closed due to a serios
356  *         error while handling the request
357  */
358 static int
359 access_handler_callback (void *cls,
360                          struct MHD_Connection *connection,
361                          const char *url,
362                          const char *method,
363                          const char *version,
364                          const char *upload_data,
365                          size_t *upload_data_size,
366                          void **con_cls)
367 {
368   static int dummy;
369
370   /* CORS pre-flight request */
371   if (0 == strcmp (MHD_HTTP_METHOD_OPTIONS, method))
372   {
373     struct MHD_Response *options_response;
374     int rc;
375
376     options_response = MHD_create_response_from_buffer (0, NULL,
377                                                         MHD_RESPMEM_PERSISTENT);
378     add_cors_headers(options_response);
379     rc = MHD_queue_response (connection, MHD_HTTP_OK, options_response);
380     MHD_destroy_response (options_response);
381     return rc;
382   }
383   if (0 != strcmp (method, MHD_HTTP_METHOD_GET))
384   {
385     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
386                 _("Refusing `%s' request to hostlist server\n"), method);
387     GNUNET_STATISTICS_update (stats,
388                               gettext_noop
389                               ("hostlist requests refused (not HTTP GET)"), 1,
390                               GNUNET_YES);
391     return MHD_NO;
392   }
393   if (NULL == *con_cls)
394   {
395     (*con_cls) = &dummy;
396     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
397                 "Sending 100 CONTINUE reply\n");
398     return MHD_YES;             /* send 100 continue */
399   }
400   if (0 != *upload_data_size)
401   {
402     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
403                 _("Refusing `%s' request with %llu bytes of upload data\n"),
404                 method, (unsigned long long) *upload_data_size);
405     GNUNET_STATISTICS_update (stats,
406                               gettext_noop
407                               ("hostlist requests refused (upload data)"), 1,
408                               GNUNET_YES);
409     return MHD_NO;              /* do not support upload data */
410   }
411   if (NULL == response)
412   {
413     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
414                 _("Could not handle hostlist request since I do not have a response yet\n"));
415     GNUNET_STATISTICS_update (stats,
416                               gettext_noop
417                               ("hostlist requests refused (not ready)"), 1,
418                               GNUNET_YES);
419     return MHD_NO;              /* internal error, no response yet */
420   }
421   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
422               _("Received request for our hostlist\n"));
423   GNUNET_STATISTICS_update (stats,
424                             gettext_noop ("hostlist requests processed"),
425                             1, GNUNET_YES);
426   return MHD_queue_response (connection, MHD_HTTP_OK, response);
427 }
428
429
430 /**
431  * Handler called by CORE when CORE is ready to transmit message
432  *
433  * @param cls closure
434  * @param size size of buffer to copy message to
435  * @param buf buffer to copy message to
436  * @return number of bytes copied to @a buf
437  */
438 static size_t
439 adv_transmit_ready (void *cls,
440                     size_t size,
441                     void *buf)
442 {
443   static uint64_t hostlist_adv_count;
444   size_t transmission_size;
445   size_t uri_size;              /* Including \0 termination! */
446   struct GNUNET_MessageHeader header;
447   char *cbuf;
448
449   if (NULL == buf)
450   {
451     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
452                 "Transmission failed, buffer invalid!\n");
453     return 0;
454   }
455   uri_size = strlen (hostlist_uri) + 1;
456   transmission_size = sizeof (struct GNUNET_MessageHeader) + uri_size;
457   header.type = htons (GNUNET_MESSAGE_TYPE_HOSTLIST_ADVERTISEMENT);
458   header.size = htons (transmission_size);
459   GNUNET_assert (size >= transmission_size);
460   memcpy (buf,
461           &header,
462           sizeof (struct GNUNET_MessageHeader));
463   cbuf = buf;
464   memcpy (&cbuf[sizeof (struct GNUNET_MessageHeader)],
465           hostlist_uri,
466           uri_size);
467   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
468               "Sent advertisement message: Copied %u bytes into buffer!\n",
469               (unsigned int) transmission_size);
470   hostlist_adv_count++;
471   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
472               " # Sent advertisement message: %u\n",
473               hostlist_adv_count);
474   GNUNET_STATISTICS_update (stats,
475                             gettext_noop ("# hostlist advertisements send"), 1,
476                             GNUNET_NO);
477   return transmission_size;
478 }
479
480
481 /**
482  * Method called whenever a given peer connects.
483  *
484  * @param cls closure
485  * @param peer peer identity this notification is about
486  */
487 static void
488 connect_handler (void *cls,
489                  const struct GNUNET_PeerIdentity *peer)
490 {
491   size_t size;
492   struct GNUNET_CORE_TransmitHandle *th;
493
494   if (! advertising)
495     return;
496   if (NULL == hostlist_uri)
497     return;
498   size = strlen (hostlist_uri) + 1;
499   if (size + sizeof (struct GNUNET_MessageHeader) >=
500       GNUNET_SERVER_MAX_MESSAGE_SIZE)
501   {
502     GNUNET_break (0);
503     return;
504   }
505   size += sizeof (struct GNUNET_MessageHeader);
506   if (NULL == core)
507   {
508     GNUNET_break (0);
509     return;
510   }
511   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
512               "Asked CORE to transmit advertisement message with a size of %u bytes to peer `%s'\n",
513               size,
514               GNUNET_i2s (peer));
515   if (NULL ==
516       (th = GNUNET_CORE_notify_transmit_ready (core, GNUNET_YES,
517                                                GNUNET_CORE_PRIO_BEST_EFFORT,
518                                                GNUNET_ADV_TIMEOUT,
519                                                peer,
520                                                size,
521                                                &adv_transmit_ready, NULL)) )
522   {
523     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
524                 _("Advertisement message could not be queued by core\n"));
525   }
526   GNUNET_assert (GNUNET_YES ==
527                  GNUNET_CONTAINER_multipeermap_put (advertisements,
528                                                     peer,
529                                                     th,
530                                                     GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
531 }
532
533
534 /**
535  * Method called whenever a given peer disconnects.
536  *
537  * @param cls closure
538  * @param peer peer identity this notification is about
539  */
540 static void
541 disconnect_handler (void *cls,
542                     const struct GNUNET_PeerIdentity *peer)
543 {
544   struct GNUNET_CORE_TransmitHandle *th;
545
546   if (! advertising)
547     return;
548   th = GNUNET_CONTAINER_multipeermap_get (advertisements,
549                                           peer);
550   if (NULL == th)
551     return;
552   GNUNET_assert (GNUNET_YES ==
553                  GNUNET_CONTAINER_multipeermap_remove (advertisements,
554                                                        peer,
555                                                        th));
556   GNUNET_CORE_notify_transmit_ready_cancel (th);
557 }
558
559
560 /**
561  * PEERINFO calls this function to let us know about a possible peer
562  * that we might want to connect to.
563  *
564  * @param cls closure (not used)
565  * @param peer potential peer to connect to
566  * @param hello HELLO for this peer (or NULL)
567  * @param err_msg NULL if successful, otherwise contains error message
568  */
569 static void
570 process_notify (void *cls,
571                 const struct GNUNET_PeerIdentity *peer,
572                 const struct GNUNET_HELLO_Message *hello,
573                 const char *err_msg)
574 {
575   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
576               "Peerinfo is notifying us to rebuild our hostlist\n");
577   if (NULL != err_msg)
578     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
579                 _("Error in communication with PEERINFO service: %s\n"),
580                 err_msg);
581   if (NULL != builder)
582   {
583     /* restart re-build already in progress ... */
584     if (NULL != builder->pitr)
585     {
586       GNUNET_PEERINFO_iterate_cancel (builder->pitr);
587       builder->pitr = NULL;
588     }
589     GNUNET_free_non_null (builder->data);
590     builder->size = 0;
591     builder->data = NULL;
592   }
593   else
594   {
595     builder = GNUNET_new (struct HostSet);
596   }
597   GNUNET_assert (NULL != peerinfo);
598   builder->pitr
599     = GNUNET_PEERINFO_iterate (peerinfo,
600                                GNUNET_NO, NULL,
601                                GNUNET_TIME_UNIT_MINUTES,
602                                &host_processor, NULL);
603 }
604
605
606 /**
607  * Function that queries MHD's select sets and
608  * starts the task waiting for them.
609  */
610 static GNUNET_SCHEDULER_TaskIdentifier
611 prepare_daemon (struct MHD_Daemon *daemon_handle);
612
613
614 /**
615  * Call MHD to process pending requests and then go back
616  * and schedule the next run.
617  *
618  * @param cls the `struct MHD_Daemon` of the HTTP server to run
619  * @param tc scheduler context
620  */
621 static void
622 run_daemon (void *cls,
623             const struct GNUNET_SCHEDULER_TaskContext *tc)
624 {
625   struct MHD_Daemon *daemon_handle = cls;
626
627   if (daemon_handle == daemon_handle_v4)
628     hostlist_task_v4 = GNUNET_SCHEDULER_NO_TASK;
629   else
630     hostlist_task_v6 = GNUNET_SCHEDULER_NO_TASK;
631
632   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
633     return;
634   GNUNET_assert (MHD_YES == MHD_run (daemon_handle));
635   if (daemon_handle == daemon_handle_v4)
636     hostlist_task_v4 = prepare_daemon (daemon_handle);
637   else
638     hostlist_task_v6 = prepare_daemon (daemon_handle);
639 }
640
641
642 /**
643  * Function that queries MHD's select sets and
644  * starts the task waiting for them.
645  *
646  * @param daemon_handle HTTP server to prepare to run
647  */
648 static GNUNET_SCHEDULER_TaskIdentifier
649 prepare_daemon (struct MHD_Daemon *daemon_handle)
650 {
651   GNUNET_SCHEDULER_TaskIdentifier ret;
652   fd_set rs;
653   fd_set ws;
654   fd_set es;
655   struct GNUNET_NETWORK_FDSet *wrs;
656   struct GNUNET_NETWORK_FDSet *wws;
657   int max;
658   MHD_UNSIGNED_LONG_LONG timeout;
659   int haveto;
660   struct GNUNET_TIME_Relative tv;
661
662   FD_ZERO (&rs);
663   FD_ZERO (&ws);
664   FD_ZERO (&es);
665   wrs = GNUNET_NETWORK_fdset_create ();
666   wws = GNUNET_NETWORK_fdset_create ();
667   max = -1;
668   GNUNET_assert (MHD_YES == MHD_get_fdset (daemon_handle, &rs, &ws, &es, &max));
669   haveto = MHD_get_timeout (daemon_handle, &timeout);
670   if (haveto == MHD_YES)
671     tv.rel_value_us = (uint64_t) timeout * 1000LL;
672   else
673     tv = GNUNET_TIME_UNIT_FOREVER_REL;
674   GNUNET_NETWORK_fdset_copy_native (wrs, &rs, max + 1);
675   GNUNET_NETWORK_fdset_copy_native (wws, &ws, max + 1);
676   ret =
677       GNUNET_SCHEDULER_add_select (GNUNET_SCHEDULER_PRIORITY_HIGH,
678                                    tv, wrs, wws,
679                                    &run_daemon, daemon_handle);
680   GNUNET_NETWORK_fdset_destroy (wrs);
681   GNUNET_NETWORK_fdset_destroy (wws);
682   return ret;
683 }
684
685
686 /**
687  * Start server offering our hostlist.
688  *
689  * @param c configuration to use
690  * @param st statistics handle to use
691  * @param co core handle to use
692  * @param[out] server_ch set to handler for CORE connect events
693  * @param[out] server_dh set to handler for CORE disconnect events
694  * @param advertise #GNUNET_YES if we should advertise our hostlist
695  * @return #GNUNET_OK on success
696  */
697 int
698 GNUNET_HOSTLIST_server_start (const struct GNUNET_CONFIGURATION_Handle *c,
699                               struct GNUNET_STATISTICS_Handle *st,
700                               struct GNUNET_CORE_Handle *co,
701                               GNUNET_CORE_ConnectEventHandler *server_ch,
702                               GNUNET_CORE_DisconnectEventHandler *server_dh,
703                               int advertise)
704 {
705   unsigned long long port;
706   char *hostname;
707   char *ipv4;
708   char *ipv6;
709   size_t size;
710   struct in_addr i4;
711   struct in6_addr i6;
712   struct sockaddr_in v4;
713   struct sockaddr_in6 v6;
714   const struct sockaddr *sa4;
715   const struct sockaddr *sa6;
716
717   advertising = advertise;
718   if (! advertising)
719   {
720     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
721                 "Advertising not enabled on this hostlist server\n");
722   }
723   else
724   {
725     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
726                 "Advertising enabled on this hostlist server\n");
727     advertisements = GNUNET_CONTAINER_multipeermap_create (8,
728                                                            GNUNET_NO);
729   }
730   cfg = c;
731   stats = st;
732   peerinfo = GNUNET_PEERINFO_connect (cfg);
733   if (NULL == peerinfo)
734   {
735     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
736                 _("Could not access PEERINFO service.  Exiting.\n"));
737     return GNUNET_SYSERR;
738   }
739   if (GNUNET_OK !=
740       GNUNET_CONFIGURATION_get_value_number (cfg,
741                                              "HOSTLIST",
742                                              "HTTPPORT",
743                                              &port))
744     return GNUNET_SYSERR;
745   if ((0 == port) || (port > UINT16_MAX))
746   {
747     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
748                 _("Invalid port number %llu.  Exiting.\n"),
749                 port);
750     return GNUNET_SYSERR;
751   }
752
753   if (GNUNET_SYSERR ==
754       GNUNET_CONFIGURATION_get_value_string (cfg,
755                                              "HOSTLIST",
756                                              "EXTERNAL_DNS_NAME",
757                                              &hostname))
758     hostname = GNUNET_RESOLVER_local_fqdn_get ();
759   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
760               _("Hostlist service starts on %s:%llu\n"),
761               hostname, port);
762   if (NULL != hostname)
763   {
764     size = strlen (hostname);
765     if (size + 15 > MAX_URL_LEN)
766     {
767       GNUNET_break (0);
768     }
769     else
770     {
771       GNUNET_asprintf (&hostlist_uri,
772                        "http://%s:%u/", hostname,
773                        (unsigned int) port);
774       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
775                   _("Address to obtain hostlist: `%s'\n"),
776                   hostlist_uri);
777     }
778     GNUNET_free (hostname);
779   }
780
781   if (GNUNET_CONFIGURATION_have_value (cfg, "HOSTLIST", "BINDTOIPV4"))
782   {
783     if (GNUNET_OK !=
784         GNUNET_CONFIGURATION_get_value_string (cfg, "HOSTLIST",
785                                                "BINDTOIP", &ipv4))
786     {
787       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
788                   _("BINDTOIP does not a valid IPv4 address! Ignoring BINDTOIPV4.\n"));
789     }
790
791   }
792   else
793     ipv4 = NULL;
794   if (GNUNET_CONFIGURATION_have_value (cfg, "HOSTLIST", "BINDTOIPV6"))
795   {
796     if (GNUNET_OK !=
797         GNUNET_CONFIGURATION_get_value_string (cfg, "HOSTLIST",
798                                                "BINDTOIP", &ipv6))
799       {
800       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
801           _("BINDTOIP does not a valid IPv4 address! Ignoring BINDTOIPV6.\n"));
802     }
803   }
804   else
805     ipv6 = NULL;
806   sa4 = NULL;
807   if (NULL != ipv4)
808   {
809     if (1 == inet_pton (AF_INET, ipv4, &i4))
810     {
811       memset (&v4, 0, sizeof (v4));
812       v4.sin_family = AF_INET;
813       v4.sin_addr = i4;
814       v4.sin_port = htons (port);
815 #if HAVE_SOCKADDR_IN_SIN_LEN
816       v4.sin_len = sizeof (v4);
817 #endif
818       sa4 = (const struct sockaddr *) &v4;
819     }
820     else
821       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
822                   _("`%s' is not a valid IPv4 address! Ignoring BINDTOIPV4.\n"),
823                   ipv4);
824     GNUNET_free (ipv4);
825   }
826   sa6 = NULL;
827   if (NULL != ipv6)
828   {
829     if (1 == inet_pton (AF_INET6, ipv6, &i6))
830     {
831       memset (&v6, 0, sizeof (v6));
832       v6.sin6_family = AF_INET6;
833       v6.sin6_addr = i6;
834       v6.sin6_port = htons (port);
835 #if HAVE_SOCKADDR_IN_SIN_LEN
836       v6.sin6_len = sizeof (v6);
837 #endif
838       sa6 = (const struct sockaddr *) &v6;
839     }
840     else
841       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
842                   _("`%s' is not a valid IPv6 address! Ignoring BINDTOIPV6.\n"),
843                   ipv6);
844     GNUNET_free (ipv6);
845   }
846
847   daemon_handle_v6 = MHD_start_daemon (MHD_USE_IPv6 | MHD_USE_DEBUG,
848                                        (uint16_t) port,
849                                        &accept_policy_callback, NULL,
850                                        &access_handler_callback, NULL,
851                                        MHD_OPTION_CONNECTION_LIMIT,
852                                        (unsigned int) 16,
853                                        MHD_OPTION_PER_IP_CONNECTION_LIMIT,
854                                        (unsigned int) 1,
855                                        MHD_OPTION_CONNECTION_TIMEOUT,
856                                        (unsigned int) 16,
857                                        MHD_OPTION_CONNECTION_MEMORY_LIMIT,
858                                        (size_t) (16 * 1024),
859                                        MHD_OPTION_SOCK_ADDR,
860                                        sa6,
861                                        MHD_OPTION_END);
862   daemon_handle_v4 = MHD_start_daemon (MHD_NO_FLAG | MHD_USE_DEBUG,
863                                        (uint16_t) port,
864                                        &accept_policy_callback, NULL,
865                                        &access_handler_callback, NULL,
866                                        MHD_OPTION_CONNECTION_LIMIT,
867                                        (unsigned int) 16,
868                                        MHD_OPTION_PER_IP_CONNECTION_LIMIT,
869                                        (unsigned int) 1,
870                                        MHD_OPTION_CONNECTION_TIMEOUT,
871                                        (unsigned int) 16,
872                                        MHD_OPTION_CONNECTION_MEMORY_LIMIT,
873                                        (size_t) (16 * 1024),
874                                        MHD_OPTION_SOCK_ADDR,
875                                        sa4,
876                                        MHD_OPTION_END);
877
878   if ( (NULL == daemon_handle_v6) &&
879        (NULL == daemon_handle_v4) )
880   {
881     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
882                 _("Could not start hostlist HTTP server on port %u\n"),
883                 (unsigned short) port);
884     return GNUNET_SYSERR;
885   }
886
887   core = co;
888   *server_ch = &connect_handler;
889   *server_dh = &disconnect_handler;
890   if (NULL != daemon_handle_v4)
891     hostlist_task_v4 = prepare_daemon (daemon_handle_v4);
892   if (NULL != daemon_handle_v6)
893     hostlist_task_v6 = prepare_daemon (daemon_handle_v6);
894   notify = GNUNET_PEERINFO_notify (cfg,
895                                    GNUNET_NO,
896                                    &process_notify, NULL);
897   return GNUNET_OK;
898 }
899
900
901 /**
902  * Stop server offering our hostlist.
903  */
904 void
905 GNUNET_HOSTLIST_server_stop ()
906 {
907   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
908               "Hostlist server shutdown\n");
909   if (GNUNET_SCHEDULER_NO_TASK != hostlist_task_v6)
910   {
911     GNUNET_SCHEDULER_cancel (hostlist_task_v6);
912     hostlist_task_v6 = GNUNET_SCHEDULER_NO_TASK;
913   }
914   if (GNUNET_SCHEDULER_NO_TASK != hostlist_task_v4)
915   {
916     GNUNET_SCHEDULER_cancel (hostlist_task_v4);
917     hostlist_task_v4 = GNUNET_SCHEDULER_NO_TASK;
918   }
919   if (NULL != daemon_handle_v4)
920   {
921     MHD_stop_daemon (daemon_handle_v4);
922     daemon_handle_v4 = NULL;
923   }
924   if (NULL != daemon_handle_v6)
925   {
926     MHD_stop_daemon (daemon_handle_v6);
927     daemon_handle_v6 = NULL;
928   }
929   if (NULL != response)
930   {
931     MHD_destroy_response (response);
932     response = NULL;
933   }
934   if (NULL != notify)
935   {
936     GNUNET_PEERINFO_notify_cancel (notify);
937     notify = NULL;
938   }
939   if (NULL != builder)
940   {
941     if (NULL != builder->pitr)
942     {
943       GNUNET_PEERINFO_iterate_cancel (builder->pitr);
944       builder->pitr = NULL;
945     }
946     GNUNET_free_non_null (builder->data);
947     GNUNET_free (builder);
948   }
949   if (NULL != peerinfo)
950   {
951     GNUNET_PEERINFO_disconnect (peerinfo);
952     peerinfo = NULL;
953   }
954   if (NULL != advertisements)
955   {
956     GNUNET_break (0 ==
957                   GNUNET_CONTAINER_multipeermap_size (advertisements));
958     GNUNET_CONTAINER_multipeermap_destroy (advertisements);
959     advertisements = NULL;
960   }
961   cfg = NULL;
962   stats = NULL;
963   core = NULL;
964 }
965
966 /* end of gnunet-daemon-hostlist_server.c */