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