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