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