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