1f8a7af7fe00eb1cad48b7d8a542ef55344a50dd
[oweals/gnunet.git] / src / hostlist / hostlist-server.c
1 /*
2      This file is part of GNUnet.
3      (C) 2008, 2009, 2010 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 2, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file hostlist/hostlist-server.c
23  * @author Christian Grothoff, Matthias Wachs
24  * @brief application to provide an integrated hostlist HTTP server
25  */
26
27 #include "platform.h"
28 #include <microhttpd.h>
29 #include "hostlist-server.h"
30 #include "gnunet_hello_lib.h"
31 #include "gnunet_peerinfo_service.h"
32 #include "gnunet-daemon-hostlist.h"
33 #include "gnunet_resolver_service.h"
34
35 #define DEBUG_HOSTLIST_SERVER GNUNET_NO
36
37 /**
38  * Handle to the HTTP server as provided by libmicrohttpd for IPv6.
39  */
40 static struct MHD_Daemon *daemon_handle_v6;
41
42 /**
43  * Handle to the HTTP server as provided by libmicrohttpd for IPv4.
44  */
45 static struct MHD_Daemon *daemon_handle_v4;
46
47 /**
48  * Our configuration.
49  */
50 static const struct GNUNET_CONFIGURATION_Handle *cfg;
51
52 /**
53  * Our scheduler.
54  */
55 static struct GNUNET_SCHEDULER_Handle *sched;
56
57 /**
58  * For keeping statistics.
59  */ 
60 static struct GNUNET_STATISTICS_Handle *stats;
61
62 /**
63  * Handle to the core service (NULL until we've connected to it).
64  */
65 struct GNUNET_CORE_Handle *core;
66
67 /**
68  * Handle to the peerinfo notify service (NULL until we've connected to it).
69  */
70 struct GNUNET_PEERINFO_NotifyContext *notify;
71
72 /**
73  * Our primary task for IPv4.
74  */
75 static GNUNET_SCHEDULER_TaskIdentifier hostlist_task_v4;
76
77 /**
78  * Our primary task for IPv6.
79  */
80 static GNUNET_SCHEDULER_TaskIdentifier hostlist_task_v6;
81
82 /**
83  * Our canonical response.
84  */
85 static struct MHD_Response *response;
86
87 /**
88  * NULL if we are not currenlty iterating over peer information.
89  */
90 static struct GNUNET_PEERINFO_IteratorContext *pitr;
91
92 /**
93  * Handle for accessing peerinfo service.
94  */
95 static struct GNUNET_PEERINFO_Handle *peerinfo;
96
97 /**
98  * Context for host processor.
99  */
100 struct HostSet
101 {
102   unsigned int size;
103
104   char *data;
105 };
106
107 /**
108  * Set if we are allowed to advertise our hostlist to others.
109  */
110 static int advertising;
111
112 /**
113  * How many times was the hostlist advertised?
114  */
115 static uint64_t hostlist_adv_count;
116
117 /**
118  * Buffer for the hostlist address
119  */
120 static char * hostlist_uri;
121
122
123 /**
124  * Function that assembles our response.
125  */
126 static void
127 finish_response (struct HostSet *results)
128 {
129   if (response != NULL)
130     MHD_destroy_response (response);
131 #if DEBUG_HOSTLIST_SERVER
132   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
133               "Creating hostlist response with %u bytes\n",
134               (unsigned int) results->size);
135 #endif
136   response = MHD_create_response_from_data (results->size,
137                                             results->data, MHD_YES, MHD_NO);
138   if ( (daemon_handle_v4 == NULL) &&
139        (daemon_handle_v6 == NULL) )
140   {
141     MHD_destroy_response (response);
142     response = NULL;
143   }
144   GNUNET_STATISTICS_set (stats,
145                          gettext_noop("bytes in hostlist"),
146                          results->size,
147                          GNUNET_YES);
148   GNUNET_free (results);
149 }
150
151
152 /**
153  * Set 'cls' to GNUNET_YES (we have an address!).
154  *
155  * @param cls closure, an 'int*'
156  * @param tname name of the transport (ignored)
157  * @param expiration expiration time (call is ignored if this is in the past)
158  * @param addr the address (ignored)
159  * @param addrlen length of the address (ignored)
160  * @return  GNUNET_SYSERR to stop iterating (unless expiration has occured)
161  */
162 static int
163 check_has_addr (void *cls,
164                 const char *tname,
165                 struct GNUNET_TIME_Absolute expiration,
166                 const void *addr, size_t addrlen)
167 {
168   int *arg = cls;
169
170   if (GNUNET_TIME_absolute_get_remaining (expiration).value == 0)
171     {
172       GNUNET_STATISTICS_update (stats,
173                                 gettext_noop("expired addresses encountered"),
174                                 1,
175                                 GNUNET_YES);
176       return GNUNET_YES; /* ignore this address */
177     }
178   *arg = GNUNET_YES;
179   return GNUNET_SYSERR;
180 }
181
182
183 /**
184  * Callback that processes each of the known HELLOs for the
185  * hostlist response construction.
186  */
187 static void
188 host_processor (void *cls,
189                 const struct GNUNET_PeerIdentity * peer,
190                 const struct GNUNET_HELLO_Message *hello,
191                 uint32_t trust)
192 {
193   struct HostSet *results = cls;
194   size_t old;
195   size_t s;
196   int has_addr;
197   
198   if (peer == NULL)
199     {
200       pitr = NULL;
201       finish_response (results);
202       return;
203     }
204   if (hello == NULL)
205     return;
206   has_addr = GNUNET_NO;
207   GNUNET_HELLO_iterate_addresses (hello,
208                                   GNUNET_NO,
209                                   &check_has_addr,
210                                   &has_addr);
211   if (GNUNET_NO == has_addr)
212     {
213       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
214                   "HELLO for peer `%4s' has no address, not suitable for hostlist!\n",
215                   GNUNET_i2s (peer));
216       GNUNET_STATISTICS_update (stats,
217                                 gettext_noop("HELLOs without addresses encountered (ignored)"),
218                                 1,
219                                 GNUNET_NO);
220       return; 
221     }
222   old = results->size;
223   s = GNUNET_HELLO_size(hello);
224 #if DEBUG_HOSTLIST_SERVER
225   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
226               "Received %u bytes of `%s' from peer `%s' for hostlist.\n",
227               (unsigned int) s,
228               "HELLO",
229               GNUNET_i2s (peer));
230 #endif
231   if (old + s >= GNUNET_MAX_MALLOC_CHECKED)
232     {
233       GNUNET_STATISTICS_update (stats,
234                                 gettext_noop("bytes not included in hostlist (size limit)"),
235                                 s,
236                                 GNUNET_NO);
237       return; /* too large, skip! */
238     }
239   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
240               "Adding peer `%s' to hostlist (%u bytes)\n",
241               GNUNET_i2s (peer),
242               (unsigned int) s);
243   GNUNET_array_grow (results->data,
244                      results->size,
245                      old + s);
246   memcpy (&results->data[old], hello, s);
247 }
248
249
250
251 /**
252  * Hostlist access policy (very permissive, allows everything).
253  */
254 static int
255 accept_policy_callback (void *cls,
256                         const struct sockaddr *addr, socklen_t addrlen)
257 {
258   if (NULL == response)
259     {
260 #if DEBUG_HOSTLIST_SERVER
261       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
262                   "Received request for hostlist, but I am not yet ready; rejecting!\n");
263 #endif
264       return MHD_NO;
265     }
266   return MHD_YES;               /* accept all */
267 }
268
269
270 /**
271  * Main request handler.
272  */
273 static int
274 access_handler_callback (void *cls,
275                          struct MHD_Connection *connection,
276                          const char *url,
277                          const char *method,
278                          const char *version,
279                          const char *upload_data,
280                          size_t*upload_data_size, void **con_cls)
281 {
282   static int dummy;
283   
284   if (0 != strcmp (method, MHD_HTTP_METHOD_GET))
285     {
286       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
287                   _("Refusing `%s' request to hostlist server\n"),
288                   method);
289       GNUNET_STATISTICS_update (stats,
290                                 gettext_noop("hostlist requests refused (not HTTP GET)"),
291                                 1,
292                                 GNUNET_YES);
293       return MHD_NO;
294     }
295   if (NULL == *con_cls)
296     {
297       (*con_cls) = &dummy;
298 #if DEBUG_HOSTLIST_SERVER
299       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
300                   _("Sending 100 CONTINUE reply\n"));
301 #endif
302       return MHD_YES;           /* send 100 continue */
303     }
304   if (*upload_data_size != 0)
305     {
306       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
307                   _("Refusing `%s' request with %llu bytes of upload data\n"),
308                   method,
309                   (unsigned long long) *upload_data_size);
310       GNUNET_STATISTICS_update (stats,
311                                 gettext_noop("hostlist requests refused (upload data)"),
312                                 1,
313                                 GNUNET_YES);
314       return MHD_NO;              /* do not support upload data */
315     }
316   if (response == NULL)
317     {
318       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
319                   _("Could not handle hostlist request since I do not have a response yet\n"));
320       GNUNET_STATISTICS_update (stats,
321                                 gettext_noop("hostlist requests refused (not ready)"),
322                                 1,
323                                 GNUNET_YES);
324       return MHD_NO;              /* internal error, no response yet */
325     }
326   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
327               _("Received request for our hostlist\n"));
328   GNUNET_STATISTICS_update (stats,
329                             gettext_noop("hostlist requests processed"),
330                             1,
331                             GNUNET_YES);
332   return MHD_queue_response (connection, MHD_HTTP_OK, response);
333 }
334
335
336 /**
337  * Handler called by core when core is ready to transmit message
338  * @param cls   closure
339  * @param size  size of buffer to copy message to
340  * @param buf   buffer to copy message to
341  */
342 static size_t
343 adv_transmit_ready ( void *cls, size_t size, void *buf)
344 {
345   size_t transmission_size;
346   size_t uri_size; /* Including \0 termination! */
347   struct GNUNET_MessageHeader header;
348   char *cbuf;
349
350   if (buf == NULL)
351     {
352       GNUNET_log ( GNUNET_ERROR_TYPE_DEBUG, 
353                    "Transmission failed, buffer invalid!\n" );
354       return 0;
355     }
356   uri_size = strlen ( hostlist_uri ) + 1;
357   transmission_size = sizeof (struct GNUNET_MessageHeader) + uri_size;
358   header.type = htons (GNUNET_MESSAGE_TYPE_HOSTLIST_ADVERTISEMENT);
359   header.size = htons (transmission_size);
360   GNUNET_assert (size >= transmission_size);
361   memcpy (buf, &header, sizeof (struct GNUNET_MessageHeader));
362   cbuf = buf;  
363   memcpy (&cbuf[sizeof (struct GNUNET_MessageHeader)],
364           hostlist_uri, uri_size);
365   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
366               "Sent advertisement message: Copied %u bytes into buffer!\n", 
367               (unsigned int) transmission_size);
368   hostlist_adv_count++;
369   GNUNET_STATISTICS_set (stats,
370                          gettext_noop("# hostlist advertisements send"),
371                          hostlist_adv_count,
372                          GNUNET_NO);
373   return transmission_size;
374 }
375
376
377 /**
378  * Method called whenever a given peer connects.
379  *
380  * @param cls closure
381  * @param peer peer identity this notification is about
382  * @param latency reported latency of the connection with 'other'
383  * @param distance reported distance (DV) to 'other'
384  */
385 static void
386 connect_handler (void *cls,
387                  const struct
388                  GNUNET_PeerIdentity * peer,
389                  struct GNUNET_TIME_Relative latency,
390                  uint32_t distance)
391 {
392   size_t size;
393
394   if ( !advertising )
395     return;
396   if (hostlist_uri == NULL)
397     return;
398   size = strlen (hostlist_uri) + 1;
399   if (size + sizeof (struct GNUNET_MessageHeader) > GNUNET_SERVER_MAX_MESSAGE_SIZE)
400     {
401       GNUNET_break (0);
402       return;
403     }
404   size += sizeof (struct GNUNET_MessageHeader);
405   if (NULL == core)
406     {
407       GNUNET_break (0);
408       return;
409     }
410   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
411               "Asked core to transmit advertisement message with a size of %u bytes to peer `%s'\n",
412               size,GNUNET_i2s(peer));
413   if (NULL == GNUNET_CORE_notify_transmit_ready (core,
414                                                  0,
415                                                  GNUNET_ADV_TIMEOUT,
416                                                  peer,
417                                                  size,
418                                                  &adv_transmit_ready, NULL))
419     {
420       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
421                   _("Advertisement message could not be queued by core\n"));
422     }
423 }
424
425
426 /**
427  * Method called whenever a given peer disconnects.
428  *
429  * @param cls closure
430  * @param peer peer identity this notification is about
431  */
432 static void
433 disconnect_handler (void *cls,
434                     const struct
435                     GNUNET_PeerIdentity * peer)
436 {
437   /* nothing to do */
438 }
439
440 /**
441  * PEERINFO calls this function to let us know about a possible peer
442  * that we might want to connect to.
443  *
444  * @param cls closure (not used)
445  * @param peer potential peer to connect to
446  * @param hello HELLO for this peer (or NULL)
447  * @param trust how much we trust the peer (not used)
448  */
449 static void
450 process_notify (void *cls,
451                 const struct GNUNET_PeerIdentity *peer,
452                 const struct GNUNET_HELLO_Message *hello,
453                 uint32_t trust)
454 {
455   struct HostSet *results;
456
457   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
458             "Peerinfo is notifying us to rebuild our hostlist\n");
459   results = GNUNET_malloc(sizeof(struct HostSet));
460   GNUNET_assert (peerinfo != NULL);
461   pitr = GNUNET_PEERINFO_iterate (peerinfo,
462                                   NULL,
463                                   0,
464                                   GNUNET_TIME_UNIT_MINUTES,
465                                   &host_processor,
466                                   results);
467 }
468
469 /**
470  * Function that queries MHD's select sets and
471  * starts the task waiting for them.
472  */
473 static GNUNET_SCHEDULER_TaskIdentifier
474 prepare_daemon (struct MHD_Daemon *daemon_handle);
475
476
477 /**
478  * Call MHD to process pending requests and then go back
479  * and schedule the next run.
480  */
481 static void
482 run_daemon (void *cls,
483             const struct GNUNET_SCHEDULER_TaskContext *tc)
484 {
485   struct MHD_Daemon *daemon_handle = cls;
486
487   if (daemon_handle == daemon_handle_v4)
488     hostlist_task_v4 = GNUNET_SCHEDULER_NO_TASK;
489   else
490     hostlist_task_v6 = GNUNET_SCHEDULER_NO_TASK;
491
492   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
493     return;    
494   GNUNET_assert (MHD_YES == MHD_run (daemon_handle));
495   if (daemon_handle == daemon_handle_v4)
496     hostlist_task_v4 = prepare_daemon (daemon_handle);
497   else
498     hostlist_task_v6 = prepare_daemon (daemon_handle);
499 }
500
501
502 /**
503  * Function that queries MHD's select sets and
504  * starts the task waiting for them.
505  */
506 static GNUNET_SCHEDULER_TaskIdentifier
507 prepare_daemon (struct MHD_Daemon *daemon_handle)
508 {
509   GNUNET_SCHEDULER_TaskIdentifier ret;
510   fd_set rs;
511   fd_set ws;
512   fd_set es;
513   struct GNUNET_NETWORK_FDSet *wrs;
514   struct GNUNET_NETWORK_FDSet *wws;
515   struct GNUNET_NETWORK_FDSet *wes;
516   int max;
517   unsigned long long timeout;
518   int haveto;
519   struct GNUNET_TIME_Relative tv;
520   
521   FD_ZERO(&rs);
522   FD_ZERO(&ws);
523   FD_ZERO(&es);
524   wrs = GNUNET_NETWORK_fdset_create ();
525   wes = GNUNET_NETWORK_fdset_create ();
526   wws = GNUNET_NETWORK_fdset_create ();
527   max = -1;
528   GNUNET_assert (MHD_YES ==
529                  MHD_get_fdset (daemon_handle,
530                                 &rs,
531                                 &ws,
532                                 &es,
533                                 &max));
534   haveto = MHD_get_timeout (daemon_handle, &timeout);
535   if (haveto == MHD_YES)
536     tv.value = (uint64_t) timeout;
537   else
538     tv = GNUNET_TIME_UNIT_FOREVER_REL;
539   GNUNET_NETWORK_fdset_copy_native (wrs, &rs, max);
540   GNUNET_NETWORK_fdset_copy_native (wws, &ws, max);
541   GNUNET_NETWORK_fdset_copy_native (wes, &es, max);
542   ret = GNUNET_SCHEDULER_add_select (sched,
543                                      GNUNET_SCHEDULER_PRIORITY_HIGH,
544                                      GNUNET_SCHEDULER_NO_TASK,
545                                      tv,
546                                      wrs,
547                                      wws,
548                                      &run_daemon,
549                                      daemon_handle);
550   GNUNET_NETWORK_fdset_destroy (wrs);
551   GNUNET_NETWORK_fdset_destroy (wws);
552   GNUNET_NETWORK_fdset_destroy (wes);
553   return ret;
554 }
555
556
557
558 /**
559  * Start server offering our hostlist.
560  *
561  * @return GNUNET_OK on success
562  */
563 int
564 GNUNET_HOSTLIST_server_start (const struct GNUNET_CONFIGURATION_Handle *c,
565                               struct GNUNET_SCHEDULER_Handle *s,
566                               struct GNUNET_STATISTICS_Handle *st,
567                               struct GNUNET_CORE_Handle *co,
568                               GNUNET_CORE_ConnectEventHandler *server_ch,
569                               GNUNET_CORE_DisconnectEventHandler *server_dh,
570                               int advertise)
571 {
572   unsigned long long port;
573   char *hostname;
574   size_t size;
575
576   advertising = advertise;
577   if  ( !advertising )
578     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
579               "Advertising not enabled on this hostlist server\n");
580   else
581     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
582               "Advertising enabled on this hostlist server\n");
583   sched = s;
584   cfg = c;
585   stats = st;
586   peerinfo = GNUNET_PEERINFO_connect (sched, cfg);
587   if (peerinfo == NULL)
588     {
589       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
590                   _("Could not access PEERINFO service.  Exiting.\n"));     
591       return GNUNET_SYSERR;
592     }
593   if (-1 == GNUNET_CONFIGURATION_get_value_number (cfg,
594                                                    "HOSTLIST",
595                                                    "HTTPPORT", 
596                                                    &port))
597     return GNUNET_SYSERR;
598   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
599               _("Hostlist service starts on port %llu\n"),
600               port);
601   hostname = GNUNET_RESOLVER_local_fqdn_get ();
602   if (NULL != hostname)
603     {
604       size = strlen (hostname);
605       if (size + 15 > MAX_URL_LEN)
606         {
607           GNUNET_break (0);
608         }
609       else
610         {
611           GNUNET_asprintf (&hostlist_uri,
612                            "http://%s:%u/",
613                            hostname,
614                            (unsigned int) port);
615           GNUNET_log (GNUNET_ERROR_TYPE_INFO,
616                       _("Address to obtain hostlist: `%s'\n"), 
617                       hostlist_uri);
618         }
619       GNUNET_free ( hostname );
620     }
621   daemon_handle_v6 = MHD_start_daemon (MHD_USE_IPv6 
622 #if DEBUG_HOSTLIST_SERVER
623                                        | MHD_USE_DEBUG
624 #endif
625                                        ,
626                                        (unsigned short) port,
627                                        &accept_policy_callback,
628                                        NULL,
629                                        &access_handler_callback,
630                                        NULL,
631                                        MHD_OPTION_CONNECTION_LIMIT, (unsigned int) 16,
632                                        MHD_OPTION_PER_IP_CONNECTION_LIMIT, (unsigned int) 1,
633                                        MHD_OPTION_CONNECTION_TIMEOUT, (unsigned int) 16,
634                                        MHD_OPTION_CONNECTION_MEMORY_LIMIT, (size_t) (16 * 1024),
635                                        MHD_OPTION_END);
636   daemon_handle_v4 = MHD_start_daemon (MHD_NO_FLAG
637 #if DEBUG_HOSTLIST_SERVER
638                                        | MHD_USE_DEBUG
639 #endif
640                                        ,
641                                        (unsigned short) port,
642                                        &accept_policy_callback,
643                                        NULL,
644                                        &access_handler_callback,
645                                        NULL,
646                                        MHD_OPTION_CONNECTION_LIMIT, (unsigned int) 16,
647                                        MHD_OPTION_PER_IP_CONNECTION_LIMIT, (unsigned int) 1,
648                                        MHD_OPTION_CONNECTION_TIMEOUT, (unsigned int) 16,
649                                        MHD_OPTION_CONNECTION_MEMORY_LIMIT, (size_t) (16 * 1024),
650                                        MHD_OPTION_END);
651
652   if ( (daemon_handle_v6 == NULL) &&
653        (daemon_handle_v4 == NULL) )
654     {
655       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
656                   _("Could not start hostlist HTTP server on port %u\n"),
657                   (unsigned short) port);
658       return GNUNET_SYSERR;    
659     }
660
661   core = co;
662
663   *server_ch = &connect_handler;
664   *server_dh = &disconnect_handler;
665
666   if (daemon_handle_v4 != NULL)
667     hostlist_task_v4 = prepare_daemon (daemon_handle_v4);
668   if (daemon_handle_v6 != NULL)
669     hostlist_task_v6 = prepare_daemon (daemon_handle_v6);
670
671   notify = GNUNET_PEERINFO_notify ( cfg, sched, process_notify, NULL);
672
673   return GNUNET_OK;
674 }
675
676 /**
677  * Stop server offering our hostlist.
678  */
679 void
680 GNUNET_HOSTLIST_server_stop ()
681 {
682 #if DEBUG_HOSTLIST_SERVER
683   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
684               "Hostlist server shutdown\n");
685 #endif
686   if (NULL != notify)
687     {
688       GNUNET_PEERINFO_notify_cancel (notify);
689       notify = NULL;
690     }
691   if (GNUNET_SCHEDULER_NO_TASK != hostlist_task_v6)
692     {
693       GNUNET_SCHEDULER_cancel (sched, hostlist_task_v6);
694       hostlist_task_v6 = GNUNET_SCHEDULER_NO_TASK;
695     }
696   if (GNUNET_SCHEDULER_NO_TASK != hostlist_task_v4)
697     {
698       GNUNET_SCHEDULER_cancel (sched, hostlist_task_v4);
699       hostlist_task_v4 = GNUNET_SCHEDULER_NO_TASK;
700     }
701   if (pitr != NULL)
702     {
703       GNUNET_PEERINFO_iterate_cancel (pitr);
704       pitr = NULL;
705     }
706   if (NULL != daemon_handle_v4)
707     {
708       MHD_stop_daemon (daemon_handle_v4);
709       daemon_handle_v4 = NULL;
710     }
711   if (NULL != daemon_handle_v6)
712     {
713       MHD_stop_daemon (daemon_handle_v6);
714       daemon_handle_v6 = NULL;
715     }
716   if (response != NULL)
717     {
718       MHD_destroy_response (response);
719       response = NULL;
720     }
721   if (peerinfo != NULL)
722     {
723       GNUNET_PEERINFO_disconnect (peerinfo);
724       peerinfo = NULL;
725     }
726 }
727
728 /* end of hostlist-server.c */