6b4e63914ded40a5a7587639466d6c0fdd1009d0
[oweals/gnunet.git] / src / gns / gnunet-service-gns.c
1 /*
2      This file is part of GNUnet.
3      (C) 2011-2013 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  * @file gns/gnunet-service-gns.c
22  * @brief GNUnet GNS service
23  * @author Martin Schanzenbach
24  * @author Christian Grothoff
25  *
26  * TODO:
27  * - conversion of private to public records does NOT check if the
28  *   records are actually public 
29  */
30 #include "platform.h"
31 #include "gnunet_util_lib.h"
32 #include "gnunet_transport_service.h"
33 #include "gnunet_dns_service.h"
34 #include "gnunet_dnsparser_lib.h"
35 #include "gnunet_dht_service.h"
36 #include "gnunet_namestore_service.h"
37 #include "gnunet_gns_service.h"
38 #include "gnunet_statistics_service.h"
39 #include "gns.h"
40 #include "gns_common.h"
41 #include "gnunet-service-gns_resolver.h"
42 #include "gnunet-service-gns_interceptor.h"
43 #include "gnunet_protocols.h"
44
45 /**
46  * The initial interval in milliseconds btween puts in
47  * a zone iteration
48  */
49 #define INITIAL_PUT_INTERVAL GNUNET_TIME_UNIT_MILLISECONDS
50
51 /**
52  * The upper bound for the zone iteration interval in milliseconds
53  */
54 #define MINIMUM_ZONE_ITERATION_INTERVAL GNUNET_TIME_UNIT_SECONDS
55
56 /**
57  * The default put interval for the zone iteration. In case
58  * no option is found
59  */
60 #define DEFAULT_ZONE_PUBLISH_TIME_WINDOW GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 4)
61
62 /**
63  * The factor the current zone iteration interval is divided by for each
64  * additional new record
65  */
66 #define LATE_ITERATION_SPEEDUP_FACTOR 2
67
68 /**
69  * How long until a DHT PUT attempt should time out?
70  */
71 #define DHT_OPERATION_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60)
72
73 /**
74  * What replication level do we use for DHT PUT operations?
75  */
76 #define DHT_GNS_REPLICATION_LEVEL 5
77
78
79 /**
80  * Handle to a lookup operation from api
81  */
82 struct ClientLookupHandle
83 {
84
85   /**
86    * We keep these in a DLL.
87    */
88   struct ClientLookupHandle *next;
89
90   /**
91    * We keep these in a DLL.
92    */
93   struct ClientLookupHandle *prev;
94
95   /**
96    * Handle to the requesting client
97    */
98   struct GNUNET_SERVER_Client *client;
99
100   /**
101    * Active handle for the lookup.
102    */
103   struct GNS_ResolverHandle *lookup;
104
105   /**
106    * request id 
107    */
108   uint32_t request_id;
109
110 };
111
112
113 /**
114  * Our handle to the DHT
115  */
116 static struct GNUNET_DHT_Handle *dht_handle;
117
118 /**
119  * Active DHT put operation (or NULL)
120  */
121 static struct GNUNET_DHT_PutHandle *active_put;
122
123 /**
124  * Our handle to the namestore service
125  */
126 static struct GNUNET_NAMESTORE_Handle *namestore_handle;
127
128 /**
129  * Handle to iterate over our authoritative zone in namestore
130  */
131 static struct GNUNET_NAMESTORE_ZoneIterator *namestore_iter;
132
133 /**
134  * Our notification context.
135  */
136 static struct GNUNET_SERVER_NotificationContext *nc;
137
138 /**
139  * Head of the DLL.
140  */
141 static struct ClientLookupHandle *clh_head;
142
143 /**
144  * Tail of the DLL.
145  */
146 static struct ClientLookupHandle *clh_tail;
147
148 /**
149  * Useful for zone update for DHT put
150  */
151 static unsigned long long num_public_records;
152
153 /**
154  * Last seen record count
155  */
156 static unsigned long long last_num_public_records;
157
158 /**
159  * Zone iteration PUT interval.
160  */
161 static struct GNUNET_TIME_Relative put_interval;
162
163 /**
164  * Time window for zone iteration
165  */
166 static struct GNUNET_TIME_Relative zone_publish_time_window;
167
168 /**
169  * zone publish task
170  */
171 static GNUNET_SCHEDULER_TaskIdentifier zone_publish_task;
172
173 /**
174  * #GNUNET_YES if zone has never been published before
175  */
176 static int first_zone_iteration;
177
178 /**
179  * The lookup timeout
180  */
181 static struct GNUNET_TIME_Relative default_lookup_timeout;
182
183 /**
184  * #GNUNET_YES if ipv6 is supported
185  */
186 static int v6_enabled;
187
188 /**
189  * #GNUNET_YES if ipv4 is supported
190  */
191 static int v4_enabled;
192
193 /**
194  * Handle to the statistics service
195  */
196 static struct GNUNET_STATISTICS_Handle *statistics;
197
198
199 /**
200  * Task run during shutdown.
201  *
202  * @param cls unused
203  * @param tc unused
204  */
205 static void
206 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
207 {
208   struct ClientLookupHandle *clh;
209
210   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
211               "Shutting down!\n");
212   GNUNET_SERVER_notification_context_destroy (nc);  
213   while (NULL != (clh = clh_head))
214   {
215     GNS_resolver_lookup_cancel (clh->lookup);
216     GNUNET_CONTAINER_DLL_remove (clh_head, clh_tail, clh);
217     GNUNET_free (clh);
218   }
219
220   GNS_interceptor_done ();
221   GNS_resolver_done ();
222   if (NULL != statistics)
223   {
224     GNUNET_STATISTICS_destroy (statistics, GNUNET_NO);
225     statistics = NULL;
226   }
227   if (GNUNET_SCHEDULER_NO_TASK != zone_publish_task)
228   {
229     GNUNET_SCHEDULER_cancel (zone_publish_task);
230     zone_publish_task = GNUNET_SCHEDULER_NO_TASK;
231   }
232   if (NULL != namestore_iter)
233   {
234     GNUNET_NAMESTORE_zone_iteration_stop (namestore_iter);
235     namestore_iter = NULL;
236   }
237   if (NULL != namestore_handle)
238   {
239     GNUNET_NAMESTORE_disconnect (namestore_handle);
240     namestore_handle = NULL;
241   }
242   if (NULL != active_put)
243   {
244     GNUNET_DHT_put_cancel (active_put);
245     active_put = NULL;
246   }
247   if (NULL != dht_handle)
248   {
249     GNUNET_DHT_disconnect (dht_handle);
250     dht_handle = NULL;
251   }
252 }
253
254
255 /**
256  * Method called periodically that triggers iteration over authoritative records
257  *
258  * @param cls closure
259  * @param tc task context
260  */
261 static void
262 publish_zone_dht_next (void *cls,
263                        const struct GNUNET_SCHEDULER_TaskContext *tc)
264 {
265   zone_publish_task = GNUNET_SCHEDULER_NO_TASK;
266   GNUNET_NAMESTORE_zone_iterator_next (namestore_iter);
267 }
268
269
270 /**
271  * Periodically iterate over our zone and store everything in dht
272  *
273  * @param cls NULL
274  * @param tc task context
275  */
276 static void
277 publish_zone_dht_start (void *cls, 
278                         const struct GNUNET_SCHEDULER_TaskContext *tc);
279
280
281 /**
282  * Continuation called from DHT once the PUT operation is done.
283  *
284  * @param cls closure, NULL
285  * @param success #GNUNET_OK on success
286  */
287 static void
288 dht_put_continuation (void *cls,
289                       int success)
290 {
291   struct GNUNET_TIME_Relative next_put_interval; 
292
293   num_public_records++;  
294   if ( (num_public_records > last_num_public_records) &&
295        (GNUNET_NO == first_zone_iteration) )
296   {
297     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
298                 "Last record count was lower than current record count.  Reducing interval.\n");
299     put_interval = GNUNET_TIME_relative_divide (zone_publish_time_window,
300                                                 num_public_records);
301     next_put_interval = GNUNET_TIME_relative_divide (put_interval,
302                                                      LATE_ITERATION_SPEEDUP_FACTOR);
303   }
304   else
305     next_put_interval = put_interval;
306
307   GNUNET_STATISTICS_set (statistics,
308                          "Current zone iteration interval (ms)",
309                          next_put_interval.rel_value_us / 1000LL,
310                          GNUNET_NO); 
311   zone_publish_task = GNUNET_SCHEDULER_add_delayed (next_put_interval,
312                                                     &publish_zone_dht_next,
313                                                     NULL);
314 }
315
316
317 /**
318  * Function used to put all records successively into the DHT.
319  *
320  * @param cls the closure (NULL)
321  * @param key the private key of the authority (ours)
322  * @param name the name of the records, NULL once the iteration is done
323  * @param rd_count the number of records in @a rd
324  * @param rd the record data
325  */
326 static void
327 put_gns_record (void *cls,
328                 const struct GNUNET_CRYPTO_EccPrivateKey *key,
329                 const char *name,
330                 unsigned int rd_count,
331                 const struct GNUNET_NAMESTORE_RecordData *rd)
332 {  
333   struct GNUNET_NAMESTORE_Block *block;
334   struct GNUNET_HashCode query;
335   struct GNUNET_TIME_Absolute expire; 
336   size_t block_size;
337
338   if (NULL == name)
339   {
340     /* we're done with one iteration, calculate when to do the next one */
341     namestore_iter = NULL;
342     last_num_public_records = num_public_records;
343     first_zone_iteration = GNUNET_NO;
344     if (0 == num_public_records)
345     {
346       /**
347        * If no records are known (startup) or none present
348        * we can safely set the interval to the value for a single
349        * record
350        */
351       put_interval = zone_publish_time_window;
352       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG | GNUNET_ERROR_TYPE_BULK,
353                   "No records in namestore database.\n");
354     }
355     else
356     {
357       put_interval = GNUNET_TIME_relative_divide (zone_publish_time_window,
358                                                   num_public_records);
359     }
360     put_interval = GNUNET_TIME_relative_max (MINIMUM_ZONE_ITERATION_INTERVAL,
361                                              put_interval);
362
363     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
364                 "Zone iteration finished. Adjusted zone iteration interval to %s\n",
365                 GNUNET_STRINGS_relative_time_to_string (put_interval, GNUNET_YES));
366     GNUNET_STATISTICS_set (statistics,
367                            "Current zone iteration interval (in ms)",
368                            put_interval.rel_value_us / 1000LL,
369                            GNUNET_NO);
370     GNUNET_STATISTICS_update (statistics,
371                               "Number of zone iterations", 
372                               1, 
373                               GNUNET_NO);
374     GNUNET_STATISTICS_set (statistics,
375                            "Number of public records in DHT",
376                            last_num_public_records,
377                            GNUNET_NO);
378     if (0 == num_public_records)
379       zone_publish_task = GNUNET_SCHEDULER_add_delayed (put_interval,
380                                                         &publish_zone_dht_start,
381                                                         NULL);
382     else
383       zone_publish_task = GNUNET_SCHEDULER_add_now (&publish_zone_dht_start, 
384                                                     NULL);
385     return;
386   }
387
388   /* FIXME: filter out records that are not public! */
389
390   /* We got a set of records to publish */
391   if (0 == rd_count)
392   {
393     zone_publish_task = GNUNET_SCHEDULER_add_now (&publish_zone_dht_next,
394                                                    NULL);
395     return;
396   }
397   expire = GNUNET_NAMESTORE_record_get_expiration_time (rd_count,
398                                                         rd);
399   block = GNUNET_NAMESTORE_block_create (key,
400                                          expire,
401                                          name,
402                                          rd,
403                                          rd_count);
404   block_size = ntohl (block->purpose.size) 
405     + sizeof (struct GNUNET_CRYPTO_EccSignature) 
406     + sizeof (struct GNUNET_CRYPTO_EccPublicKey);
407   GNUNET_NAMESTORE_query_from_private_key (key,
408                                            name,
409                                            &query);
410
411   active_put = GNUNET_DHT_put (dht_handle, &query,
412                                DHT_GNS_REPLICATION_LEVEL,
413                                GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
414                                GNUNET_BLOCK_TYPE_GNS_NAMERECORD,
415                                block_size,
416                                block,
417                                expire,
418                                DHT_OPERATION_TIMEOUT,
419                                &dht_put_continuation,
420                                NULL); 
421   if (NULL == active_put)
422   {
423     GNUNET_break (0);
424     dht_put_continuation (NULL, GNUNET_NO);
425   }
426   GNUNET_free (block);
427 }
428
429
430 /**
431  * Periodically iterate over our zone and store everything in dht
432  *
433  * @param cls NULL
434  * @param tc task context
435  */
436 static void
437 publish_zone_dht_start (void *cls, 
438                         const struct GNUNET_SCHEDULER_TaskContext *tc)
439 {
440   zone_publish_task = GNUNET_SCHEDULER_NO_TASK;
441
442   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
443               "Scheduling DHT zone update!\n");  
444   /* start counting again */
445   num_public_records = 0;
446   namestore_iter = GNUNET_NAMESTORE_zone_iteration_start (namestore_handle,
447                                                           NULL, /* All zones */
448                                                           &put_gns_record,
449                                                           NULL);
450 }
451
452
453 /* END DHT ZONE PROPAGATION */
454
455
456 /**
457  * Reply to client with the result from our lookup.
458  *
459  * @param cls the closure (our client lookup handle)
460  * @param rd_count the number of records
461  * @param rd the record data
462  */
463 static void
464 send_lookup_response (void* cls,
465                       uint32_t rd_count,
466                       const struct GNUNET_NAMESTORE_RecordData *rd)
467 {
468   struct ClientLookupHandle *clh = cls;
469   struct GNUNET_GNS_ClientLookupResultMessage *rmsg;
470   size_t len;
471   
472   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
473               "Sending `%s' message with %d results\n",
474               "LOOKUP_RESULT", 
475               rd_count);
476   
477   len = GNUNET_NAMESTORE_records_get_size (rd_count, rd);
478   rmsg = GNUNET_malloc (len + sizeof (struct GNUNET_GNS_ClientLookupResultMessage)); 
479   rmsg->header.type = htons (GNUNET_MESSAGE_TYPE_GNS_LOOKUP_RESULT);
480   rmsg->header.size = htons (len + sizeof(struct GNUNET_GNS_ClientLookupResultMessage));
481   rmsg->id = clh->request_id;
482   rmsg->rd_count = htonl (rd_count); 
483   GNUNET_NAMESTORE_records_serialize (rd_count, rd, len, 
484                                       (char*) &rmsg[1]);
485   GNUNET_SERVER_notification_context_unicast (nc, 
486                                               clh->client,
487                                               &rmsg->header,
488                                               GNUNET_NO);
489   GNUNET_free (rmsg);
490   GNUNET_SERVER_receive_done (clh->client, 
491                               GNUNET_OK); 
492   GNUNET_CONTAINER_DLL_remove (clh_head, clh_tail, clh);
493   GNUNET_free (clh);
494   GNUNET_STATISTICS_update (statistics,
495                             "Completed lookups", 1, 
496                             GNUNET_NO);
497   GNUNET_STATISTICS_update (statistics,
498                             "Records resolved", 
499                             rd_count, 
500                             GNUNET_NO);
501 }
502
503
504 /**
505  * Handle lookup requests from client
506  *
507  * @param cls the closure
508  * @param client the client
509  * @param message the message
510  */
511 static void
512 handle_lookup (void *cls,
513                struct GNUNET_SERVER_Client *client,
514                const struct GNUNET_MessageHeader *message)
515 {
516   char name[GNUNET_DNSPARSER_MAX_NAME_LENGTH + 1];
517   struct ClientLookupHandle *clh;
518   char *nameptr = name;
519   const char *utf_in;
520   const struct GNUNET_CRYPTO_EccPrivateKey *key;
521   uint16_t msg_size;
522   const struct GNUNET_GNS_ClientLookupMessage *sh_msg;
523   
524   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
525               "Received `%s' message\n", 
526               "LOOKUP");
527   msg_size = ntohs (message->size);
528   if (msg_size < sizeof (struct GNUNET_GNS_ClientLookupMessage))
529   {
530     GNUNET_break (0);
531     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
532     return;
533   }
534   sh_msg = (const struct GNUNET_GNS_ClientLookupMessage *) message;
535   GNUNET_SERVER_notification_context_add (nc, client);
536   if (GNUNET_YES == ntohl (sh_msg->have_key))
537     key = &sh_msg->shorten_key;
538   else
539     key = NULL;
540   utf_in = (const char *) &sh_msg[1];
541   if ( ('\0' != utf_in[msg_size - sizeof (struct GNUNET_GNS_ClientLookupMessage) - 1]) ||
542        (strlen (utf_in) > GNUNET_DNSPARSER_MAX_NAME_LENGTH) )
543   {
544     GNUNET_break (0);
545     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
546     return;
547   }
548   GNUNET_STRINGS_utf8_tolower (utf_in, &nameptr);
549   
550   clh = GNUNET_new (struct ClientLookupHandle);
551   GNUNET_SERVER_client_set_user_context (client, clh);
552   GNUNET_CONTAINER_DLL_insert (clh_head, clh_tail, clh);
553   clh->client = client;
554   clh->request_id = sh_msg->id;
555   if ( (GNUNET_DNSPARSER_TYPE_A == ntohl (sh_msg->type)) &&
556        (GNUNET_OK != v4_enabled) )
557   {
558     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
559                 "LOOKUP: Query for A record but AF_INET not supported!");
560     send_lookup_response (clh, 0, NULL);
561     return;
562   }  
563   if ( (GNUNET_DNSPARSER_TYPE_AAAA == ntohl (sh_msg->type)) &&
564        (GNUNET_OK != v6_enabled) )
565   {
566     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
567                 "LOOKUP: Query for AAAA record but AF_INET6 not supported!");
568     send_lookup_response (clh, 0, NULL);
569     return;
570   }
571   clh->lookup = GNS_resolver_lookup (&sh_msg->zone, 
572                                      ntohl (sh_msg->type),
573                                      name,
574                                      key,
575                                      ntohl (sh_msg->only_cached),
576                                      &send_lookup_response, clh);
577   GNUNET_STATISTICS_update (statistics,
578                             "Lookup attempts", 
579                             1, GNUNET_NO);
580 }
581
582
583 /**
584  * One of our clients disconnected, clean up after it.
585  *
586  * @param cls NULL
587  * @param client the client that disconnected
588  */
589 static void
590 notify_client_disconnect (void *cls,
591                           struct GNUNET_SERVER_Client *client)
592 {
593   struct ClientLookupHandle *clh;
594
595   if (NULL == client)
596     return;
597   clh = GNUNET_SERVER_client_get_user_context (client, struct ClientLookupHandle);
598   if (NULL == clh)
599     return;
600   GNS_resolver_lookup_cancel (clh->lookup);
601   GNUNET_CONTAINER_DLL_remove (clh_head, clh_tail, clh);
602   GNUNET_free (clh);
603 }
604
605
606 /**
607  * Process GNS requests.
608  *
609  * @param cls closure
610  * @param server the initialized server
611  * @param c configuration to use
612  */
613 static void
614 run (void *cls, struct GNUNET_SERVER_Handle *server,
615      const struct GNUNET_CONFIGURATION_Handle *c)
616 {
617   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
618     { &handle_lookup, NULL, GNUNET_MESSAGE_TYPE_GNS_LOOKUP, 0},
619     {NULL, NULL, 0, 0}
620   };
621   struct GNUNET_CRYPTO_EccPublicKey dns_root;
622   unsigned long long max_parallel_bg_queries = 0;
623   char *dns_root_name;
624
625   v6_enabled = GNUNET_NETWORK_test_pf (PF_INET6);
626   v4_enabled = GNUNET_NETWORK_test_pf (PF_INET);
627
628   namestore_handle = GNUNET_NAMESTORE_connect (c);
629   if (NULL == namestore_handle)
630   {
631     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
632                 _("Failed to connect to the namestore!\n"));
633     GNUNET_SCHEDULER_shutdown ();
634     return;
635   }
636   
637   put_interval = INITIAL_PUT_INTERVAL;
638   zone_publish_time_window = DEFAULT_ZONE_PUBLISH_TIME_WINDOW;
639
640   if (GNUNET_OK ==
641       GNUNET_CONFIGURATION_get_value_time (c, "gns",
642                                            "ZONE_PUBLISH_TIME_WINDOW",
643                                            &zone_publish_time_window))
644   {
645     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
646                 "Time window for zone iteration: %s\n",
647                 GNUNET_STRINGS_relative_time_to_string (zone_publish_time_window, GNUNET_YES));
648   }
649   if (GNUNET_OK ==
650       GNUNET_CONFIGURATION_get_value_number (c, "gns",
651                                             "MAX_PARALLEL_BACKGROUND_QUERIES",
652                                             &max_parallel_bg_queries))
653   {
654     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
655                 "Number of allowed parallel background queries: %llu\n",
656                 max_parallel_bg_queries);
657   }
658
659   if (GNUNET_OK ==
660       GNUNET_CONFIGURATION_get_value_time (c, "gns",
661                                            "DEFAULT_LOOKUP_TIMEOUT",
662                                            &default_lookup_timeout))
663   {
664     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
665                 "Default lookup timeout: %s\n",
666                 GNUNET_STRINGS_relative_time_to_string (default_lookup_timeout,
667                                                         GNUNET_YES));
668   }
669   
670   dht_handle = GNUNET_DHT_connect (c,
671                                    (unsigned int) max_parallel_bg_queries);
672   if (NULL == dht_handle)
673   {
674     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
675                 _("Could not connect to DHT!\n"));
676     GNUNET_SCHEDULER_add_now (&shutdown_task, NULL);
677     return;
678   }
679   
680   if (GNUNET_OK ==
681       GNUNET_CONFIGURATION_get_value_string (c, "gns", "DNS_ROOT",
682                                              &dns_root_name))
683   {
684     if (GNUNET_OK !=
685         GNUNET_CRYPTO_ecc_public_key_from_string (dns_root_name,
686                                                   strlen (dns_root_name),
687                                                   &dns_root))
688     {
689       GNUNET_log_config_invalid (GNUNET_ERROR_TYPE_ERROR,
690                                  "gns", "DNS_ROOT", 
691                                  _("valid public key required"));
692       GNUNET_SCHEDULER_add_now (&shutdown_task, NULL);
693       GNUNET_free (dns_root_name);
694       return;
695     }
696     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
697                 "DNS hijacking with root `%s' enabled. Connecting to DNS service.\n",
698                 dns_root_name);
699     GNUNET_free (dns_root_name);    
700     if (GNUNET_SYSERR ==
701         GNS_interceptor_init (&dns_root, c))
702     {
703       GNUNET_SCHEDULER_add_now (&shutdown_task, NULL);
704       return;
705     }
706   }
707   /* FIXME: install client disconnect handle to clean up pending
708      lookups on client disconnect! */
709   GNS_resolver_init (namestore_handle, dht_handle, 
710                      c,
711                      max_parallel_bg_queries);
712   GNUNET_SERVER_disconnect_notify (server,
713                                    &notify_client_disconnect,
714                                    NULL);
715   /* Schedule periodic put for our records. */    
716   first_zone_iteration = GNUNET_YES;
717   GNUNET_SERVER_add_handlers (server, handlers);
718   statistics = GNUNET_STATISTICS_create ("gns", c);
719   nc = GNUNET_SERVER_notification_context_create (server, 1);
720   zone_publish_task = GNUNET_SCHEDULER_add_now (&publish_zone_dht_start, 
721                                                 NULL);
722   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, 
723                                 &shutdown_task, NULL);
724 }
725
726
727 /**
728  * The main function for the GNS service.
729  *
730  * @param argc number of arguments from the command line
731  * @param argv command line arguments
732  * @return 0 ok, 1 on error
733  */
734 int
735 main (int argc, char *const *argv)
736 {
737   int ret;
738
739   ret =
740       (GNUNET_OK ==
741        GNUNET_SERVICE_run (argc, argv, "gns", GNUNET_SERVICE_OPTION_NONE, &run,
742                            NULL)) ? 0 : 1;
743   return ret;
744 }
745
746 /* end of gnunet-service-gns.c */