69db67d2dd3f1e2c363d89c2144f4c026ea1d38e
[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 /*
360  * Buffer for the hostlist address
361  */
362 char hostlist_uri[255];
363
364 /**
365  * Handler called by core when core is ready to transmit message
366  * @param cls   closure
367  * @param size  size of buffer to copy message to
368  * @param buf   buffer to copy message to
369  */
370 static size_t
371 adv_transmit_ready ( void *cls, size_t size, void *buf)
372 {
373   size_t transmission_size;
374   size_t uri_size; /* Including \0 termination! */
375   uri_size = strlen ( hostlist_uri ) + 1;
376
377   struct GNUNET_HOSTLIST_ADV_Message * adv_message;
378   adv_message = GNUNET_malloc ( sizeof(struct GNUNET_HOSTLIST_ADV_Message) + uri_size);
379   if ( NULL == adv_message)
380    {
381    GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR,
382        "Could not allocate memory for the message");
383    return GNUNET_NO;
384    }
385   transmission_size = sizeof (struct GNUNET_HOSTLIST_ADV_Message) + uri_size;
386
387   adv_message->header.type = htons (GNUNET_MESSAGE_TYPE_HOSTLIST_ADVERTISEMENT);
388   adv_message->header.size = htons (transmission_size);
389   memcpy(&adv_message[1],hostlist_uri,uri_size);
390
391   if (buf == NULL)
392     {
393       GNUNET_log ( GNUNET_ERROR_TYPE_DEBUG, "Transmission failed, buffer invalid!\n" );
394       return 0;
395     }
396
397   if ( size >= transmission_size )
398     {
399       memcpy ( buf, adv_message, transmission_size );
400       GNUNET_log ( GNUNET_ERROR_TYPE_DEBUG, "Sent advertisement message: Copied %d bytes into buffer!\n", transmission_size);
401       GNUNET_free ( adv_message );
402       return transmission_size;
403     }
404
405   GNUNET_free (adv_message  );
406   return size;
407 }
408
409 /**
410  * Method that asks core service to transmit the message to the peer
411  * @param peer peer to transmit message to
412  * @param size size of the message
413  */
414 static size_t
415 adv_transmit_message ( const struct GNUNET_PeerIdentity * peer, size_t size )
416 {
417   /* transmit message to peer */
418   if ( NULL == core)
419     {
420       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
421                   _("Not connected to core, unable to send advertisement message\n"));
422       return GNUNET_NO;
423     }
424
425   struct GNUNET_TIME_Relative timeout = GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, GNUNET_ADV_TIMEOUT);
426   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
427               _("Asked core to transmit advertisement message with a size of %u bytes\n"), size);
428   struct GNUNET_CORE_TransmitHandle * th;
429   th = GNUNET_CORE_notify_transmit_ready (core,
430                                      0,
431                                      timeout,
432                                      peer,
433                                      size,
434                                      &adv_transmit_ready, NULL);
435   if ( NULL == th )
436     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
437                 _("Advertisement message could not be queued by core\n"));
438     return GNUNET_NO;
439
440   return GNUNET_YES;
441 }
442
443 /**
444  * Method that assembles our hostlist advertisement message
445  * @param peer peer to send the hostlist advertisement
446  */
447 static size_t
448 adv_create_message ( const struct GNUNET_PeerIdentity * peer )
449
450 {
451   size_t length  = 0;
452   size_t size    = 0;
453   unsigned long long port;
454
455   char *uri;
456   char hostname[GNUNET_OS_get_hostname_max_length() + 1];
457   char *protocol = "http://";
458   char *port_s = GNUNET_malloc(6 * sizeof(char));
459
460   if (0 != gethostname (hostname, sizeof (hostname) - 1))
461   {
462     GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR,
463         "Could not get system's hostname, unable to create advertisement message");
464     return GNUNET_NO;
465   }
466   if (-1 == GNUNET_CONFIGURATION_get_value_number (cfg,
467                                                    "HOSTLIST",
468                                                    "HTTPPORT",
469                                                    &port))
470     return GNUNET_SYSERR;
471
472   sprintf(port_s, "%llu", port);
473   length = strlen(hostname)+strlen(protocol)+strlen(port_s)+2;
474   size = (length+1) * sizeof (char);
475   uri = GNUNET_malloc(size);
476   uri = strcpy(uri, protocol);
477   uri = strcat(uri, hostname);
478   uri = strcat(uri, ":");
479   uri = strcat(uri, port_s);
480   uri = strcat(uri, "/");
481   strcpy(hostlist_uri,uri);
482   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,"Address to obtain hostlist: %s\n", hostlist_uri);
483
484   if ( ( size + sizeof( struct GNUNET_HOSTLIST_ADV_Message )) > GNUNET_SERVER_MAX_MESSAGE_SIZE)
485     {
486       GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR,
487           "Advertisement message is bigger than GNUNET allows");
488       return GNUNET_NO;
489     }
490
491   /* Request core to transmit message to peer */
492   size = size + sizeof ( struct GNUNET_HOSTLIST_ADV_Message );
493   adv_transmit_message(peer, size);
494
495   GNUNET_free ( port_s );
496   GNUNET_free ( uri );
497
498   return GNUNET_OK;
499 }
500
501 /**
502  * Method called whenever a given peer connects.
503  *
504  * @param cls closure
505  * @param peer peer identity this notification is about
506  * @param latency reported latency of the connection with 'other'
507  * @param distance reported distance (DV) to 'other'
508  */
509 static void
510 connect_handler (void *cls,
511                  const struct
512                  GNUNET_PeerIdentity * peer,
513                  struct GNUNET_TIME_Relative latency,
514                  uint32_t distance)
515 {
516   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
517               "A new peer connected to the server, preparing to send hostlist advertisement\n");
518   /* create a new advertisement message */
519   if ( (GNUNET_OK != adv_create_message(peer)))
520   {
521     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
522                 _(" GNUNET_OK Could not create a hostlist advertisement message, impossible to advertise hostlist\n"));
523     return;
524   }
525 }
526
527
528 /**
529  * Method called whenever a given peer disconnects.
530  *
531  * @param cls closure
532  * @param peer peer identity this notification is about
533  */
534 static void
535 disconnect_handler (void *cls,
536                     const struct
537                     GNUNET_PeerIdentity * peer)
538 {
539
540 }
541
542
543 /**
544  * Function that queries MHD's select sets and
545  * starts the task waiting for them.
546  */
547 static GNUNET_SCHEDULER_TaskIdentifier
548 prepare_daemon (struct MHD_Daemon *daemon_handle);
549
550 /**
551  * Call MHD to process pending requests and then go back
552  * and schedule the next run.
553  */
554 static void
555 run_daemon (void *cls,
556             const struct GNUNET_SCHEDULER_TaskContext *tc)
557 {
558   struct MHD_Daemon *daemon_handle = cls;
559
560   if (daemon_handle == daemon_handle_v4)
561     hostlist_task_v4 = GNUNET_SCHEDULER_NO_TASK;
562   else
563     hostlist_task_v6 = GNUNET_SCHEDULER_NO_TASK;
564
565   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
566     return;    
567   GNUNET_assert (MHD_YES == MHD_run (daemon_handle));
568   if (daemon_handle == daemon_handle_v4)
569     hostlist_task_v4 = prepare_daemon (daemon_handle);
570   else
571     hostlist_task_v6 = prepare_daemon (daemon_handle);
572 }
573
574
575 /**
576  * Function that queries MHD's select sets and
577  * starts the task waiting for them.
578  */
579 static GNUNET_SCHEDULER_TaskIdentifier
580 prepare_daemon (struct MHD_Daemon *daemon_handle)
581 {
582   GNUNET_SCHEDULER_TaskIdentifier ret;
583   fd_set rs;
584   fd_set ws;
585   fd_set es;
586   struct GNUNET_NETWORK_FDSet *wrs;
587   struct GNUNET_NETWORK_FDSet *wws;
588   struct GNUNET_NETWORK_FDSet *wes;
589   int max;
590   unsigned long long timeout;
591   int haveto;
592   struct GNUNET_TIME_Relative tv;
593   
594   FD_ZERO(&rs);
595   FD_ZERO(&ws);
596   FD_ZERO(&es);
597   wrs = GNUNET_NETWORK_fdset_create ();
598   wes = GNUNET_NETWORK_fdset_create ();
599   wws = GNUNET_NETWORK_fdset_create ();
600   max = -1;
601   GNUNET_assert (MHD_YES ==
602                  MHD_get_fdset (daemon_handle,
603                                 &rs,
604                                 &ws,
605                                 &es,
606                                 &max));
607   haveto = MHD_get_timeout (daemon_handle, &timeout);
608   if (haveto == MHD_YES)
609     tv.value = (uint64_t) timeout;
610   else
611     tv = GNUNET_TIME_UNIT_FOREVER_REL;
612   GNUNET_NETWORK_fdset_copy_native (wrs, &rs, max);
613   GNUNET_NETWORK_fdset_copy_native (wws, &ws, max);
614   GNUNET_NETWORK_fdset_copy_native (wes, &es, max);
615   ret = GNUNET_SCHEDULER_add_select (sched,
616                                      GNUNET_SCHEDULER_PRIORITY_HIGH,
617                                      GNUNET_SCHEDULER_NO_TASK,
618                                      tv,
619                                      wrs,
620                                      wws,
621                                      &run_daemon,
622                                      daemon_handle);
623   GNUNET_NETWORK_fdset_destroy (wrs);
624   GNUNET_NETWORK_fdset_destroy (wws);
625   GNUNET_NETWORK_fdset_destroy (wes);
626   return ret;
627 }
628
629
630
631 /**
632  * Start server offering our hostlist.
633  *
634  * @return GNUNET_OK on success
635  */
636 int
637 GNUNET_HOSTLIST_server_start (const struct GNUNET_CONFIGURATION_Handle *c,
638                               struct GNUNET_SCHEDULER_Handle *s,
639                               struct GNUNET_STATISTICS_Handle *st,
640                               struct GNUNET_CORE_Handle *co,
641                               GNUNET_CORE_ConnectEventHandler *server_ch,
642                               GNUNET_CORE_DisconnectEventHandler *server_dh)
643 {
644   unsigned long long port;
645
646   sched = s;
647   cfg = c;
648   stats = st;
649   if (-1 == GNUNET_CONFIGURATION_get_value_number (cfg,
650                                                    "HOSTLIST",
651                                                    "HTTPPORT", 
652                                                    &port))
653     return GNUNET_SYSERR;
654   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
655               _("Hostlist service starts on port %llu\n"),
656               port);
657   daemon_handle_v6 = MHD_start_daemon (MHD_USE_IPv6 
658 #if DEBUG_HOSTLIST_SERVER
659                                        | MHD_USE_DEBUG
660 #endif
661                                        ,
662                                        (unsigned short) port,
663                                        &accept_policy_callback,
664                                        NULL,
665                                        &access_handler_callback,
666                                        NULL,
667                                        MHD_OPTION_CONNECTION_LIMIT, (unsigned int) 16,
668                                        MHD_OPTION_PER_IP_CONNECTION_LIMIT, (unsigned int) 1,
669                                        MHD_OPTION_CONNECTION_TIMEOUT, (unsigned int) 16,
670                                        MHD_OPTION_CONNECTION_MEMORY_LIMIT, (size_t) (16 * 1024),
671                                        MHD_OPTION_END);
672   daemon_handle_v4 = MHD_start_daemon (MHD_NO_FLAG
673 #if DEBUG_HOSTLIST_SERVER
674                                        | MHD_USE_DEBUG
675 #endif
676                                        ,
677                                        (unsigned short) port,
678                                        &accept_policy_callback,
679                                        NULL,
680                                        &access_handler_callback,
681                                        NULL,
682                                        MHD_OPTION_CONNECTION_LIMIT, (unsigned int) 16,
683                                        MHD_OPTION_PER_IP_CONNECTION_LIMIT, (unsigned int) 1,
684                                        MHD_OPTION_CONNECTION_TIMEOUT, (unsigned int) 16,
685                                        MHD_OPTION_CONNECTION_MEMORY_LIMIT, (size_t) (16 * 1024),
686                                        MHD_OPTION_END);
687
688   if ( (daemon_handle_v6 == NULL) &&
689        (daemon_handle_v4 == NULL) )
690     {
691       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
692                   _("Could not start hostlist HTTP server on port %u\n"),
693                   (unsigned short) port);
694       return GNUNET_SYSERR;    
695     }
696
697   core=co;
698
699   *server_ch = &connect_handler;
700   *server_dh = &disconnect_handler;
701
702   if (daemon_handle_v4 != NULL)
703     hostlist_task_v4 = prepare_daemon (daemon_handle_v4);
704   if (daemon_handle_v6 != NULL)
705     hostlist_task_v6 = prepare_daemon (daemon_handle_v6);
706   response_task = GNUNET_SCHEDULER_add_now (sched,
707                                             &update_response,
708                                             NULL);
709   return GNUNET_OK;
710 }
711
712 /**
713  * Stop server offering our hostlist.
714  */
715 void
716 GNUNET_HOSTLIST_server_stop ()
717 {
718 #if DEBUG_HOSTLIST_SERVER
719   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
720               "Hostlist server shutdown\n");
721 #endif
722   if (GNUNET_SCHEDULER_NO_TASK != hostlist_task_v6)
723     {
724       GNUNET_SCHEDULER_cancel (sched, hostlist_task_v6);
725       hostlist_task_v6 = GNUNET_SCHEDULER_NO_TASK;
726     }
727   if (GNUNET_SCHEDULER_NO_TASK != hostlist_task_v4)
728     {
729       GNUNET_SCHEDULER_cancel (sched, hostlist_task_v4);
730       hostlist_task_v4 = GNUNET_SCHEDULER_NO_TASK;
731     }
732   if (pitr != NULL)
733     {
734       GNUNET_PEERINFO_iterate_cancel (pitr);
735       pitr = NULL;
736     }
737   if (GNUNET_SCHEDULER_NO_TASK != response_task)
738     {
739       GNUNET_SCHEDULER_cancel (sched, response_task);
740       response_task = GNUNET_SCHEDULER_NO_TASK;
741     }
742   if (NULL != daemon_handle_v4)
743     {
744       MHD_stop_daemon (daemon_handle_v4);
745       daemon_handle_v4 = NULL;
746     }
747   if (NULL != daemon_handle_v6)
748     {
749       MHD_stop_daemon (daemon_handle_v6);
750       daemon_handle_v6 = NULL;
751     }
752   if (response != NULL)
753     {
754       MHD_destroy_response (response);
755       response = NULL;
756     }
757 }
758
759 /* end of hostlist-server.c */