-fix crash on GNS2DNS resolver completion, and properly translate names ending in...
[oweals/gnunet.git] / src / gns / gnunet-service-gns_resolver.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 /**
22  * @file gns/gnunet-service-gns_resolver.c
23  * @brief GNU Name System resolver logic
24  * @author Martin Schanzenbach
25  * @author Christian Grothoff
26  *
27  * TODO:
28  * - GNS: handle special SRV names --- no delegation, direct lookup;
29  *        can likely be done in 'resolver_lookup_get_next_label'. (#3003)
30  * - revocation checks (use REVOCATION service!), (#3004)
31  * - DNAME support (#3005)
32  */
33 #include "platform.h"
34 #include "gnunet_util_lib.h"
35 #include "gnunet_dnsstub_lib.h"
36 #include "gnunet_dht_service.h"
37 #include "gnunet_gnsrecord_lib.h"
38 #include "gnunet_namecache_service.h"
39 #include "gnunet_namestore_service.h"
40 #include "gnunet_dns_service.h"
41 #include "gnunet_resolver_service.h"
42 #include "gnunet_revocation_service.h"
43 #include "gnunet_dnsparser_lib.h"
44 #include "gnunet_gns_service.h"
45 #include "gns.h"
46 #include "gnunet-service-gns_resolver.h"
47 #include "gnunet-service-gns_shorten.h"
48 #include "gnunet_vpn_service.h"
49
50
51 /**
52  * Default DHT timeout for lookups.
53  */
54 #define DHT_LOOKUP_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60)
55
56 /**
57  * Default timeout for DNS lookups.
58  */
59 #define DNS_LOOKUP_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 5)
60
61 /**
62  * Default timeout for VPN redirections.
63  */
64 #define VPN_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 30)
65
66 /**
67  * DHT replication level
68  */
69 #define DHT_GNS_REPLICATION_LEVEL 5
70
71 /**
72  * How deep do we allow recursions to go before we abort?
73  */
74 #define MAX_RECURSION 256
75
76
77 /**
78  * DLL to hold the authority chain we had to pass in the resolution
79  * process.
80  */
81 struct AuthorityChain
82 {
83   /**
84    * This is a DLL.
85    */
86   struct AuthorityChain *prev;
87
88   /**
89    * This is a DLL.
90    */
91   struct AuthorityChain *next;
92
93   /**
94    * Resolver handle this entry in the chain belongs to.
95    */
96   struct GNS_ResolverHandle *rh;
97
98   /**
99    * label/name corresponding to the authority
100    */
101   char *label;
102
103   /**
104    * #GNUNET_YES if the authority was a GNS authority,
105    * #GNUNET_NO if the authority was a DNS authority.
106    */
107   int gns_authority;
108
109   /**
110    * Information about the resolver authority for this label.
111    */
112   union
113   {
114
115     /**
116      * The zone of the GNS authority
117      */
118     struct GNUNET_CRYPTO_EcdsaPublicKey gns_authority;
119
120     struct
121     {
122       /**
123        * Domain of the DNS resolver that is the authority.
124        * (appended to construct the DNS name to resolve;
125        * this is NOT the DNS name of the DNS server!).
126        */
127       char name[GNUNET_DNSPARSER_MAX_NAME_LENGTH + 1];
128
129       /**
130        * IP address of the DNS resolver that is authoritative.
131        * (this implementation currently only supports one
132        * IP at a time).
133        */
134       struct sockaddr_storage dns_ip;
135
136     } dns_authority;
137
138   } authority_info;
139
140 };
141
142
143 /**
144  * A result we got from DNS.
145  */
146 struct DnsResult
147 {
148
149   /**
150    * Kept in DLL.
151    */
152   struct DnsResult *next;
153
154   /**
155    * Kept in DLL.
156    */
157   struct DnsResult *prev;
158
159   /**
160    * Binary value stored in the DNS record (appended to this struct)
161    */
162   const void *data;
163
164   /**
165    * Expiration time for the DNS record, 0 if we didn't
166    * get anything useful (i.e. 'gethostbyname' was used).
167    */
168   uint64_t expiration_time;
169
170   /**
171    * Number of bytes in @e data.
172    */
173   size_t data_size;
174
175   /**
176    * Type of the GNS/DNS record.
177    */
178   uint32_t record_type;
179
180 };
181
182
183 /**
184  * Closure for #vpn_allocation_cb.
185  */
186 struct VpnContext
187 {
188
189   /**
190    * Which resolution process are we processing.
191    */
192   struct GNS_ResolverHandle *rh;
193
194   /**
195    * Handle to the VPN request that we were performing.
196    */
197   struct GNUNET_VPN_RedirectionRequest *vpn_request;
198
199   /**
200    * Number of records serialized in @e rd_data.
201    */
202   unsigned int rd_count;
203
204   /**
205    * Serialized records.
206    */
207   char *rd_data;
208
209   /**
210    * Number of bytes in @e rd_data.
211    */
212   size_t rd_data_size;
213 };
214
215
216 /**
217  * Information we keep during the resolution of an
218  * IP address for a DNS server while handling a
219  * GNS2DNS record.
220  */
221 struct Gns2DnsContext
222 {
223
224   /**
225    * DNS domain in which the resolution will continue
226    * (first part of the GNS2DNS record).
227    */
228   char *ns;
229
230   /**
231    * Handle for the resolution of the IP part of the
232    * GNS2DNS record.  Will return to us the addresses
233    * of the DNS resolver to use.
234    */
235   struct GNS_ResolverHandle *rh;
236
237 };
238
239
240 /**
241  * Handle to a currenty pending resolution.  On result (positive or
242  * negative) the #GNS_ResultProcessor is called.
243  */
244 struct GNS_ResolverHandle
245 {
246
247   /**
248    * DLL
249    */
250   struct GNS_ResolverHandle *next;
251
252   /**
253    * DLL
254    */
255   struct GNS_ResolverHandle *prev;
256
257   /**
258    * The top-level GNS authoritative zone to query
259    */
260   struct GNUNET_CRYPTO_EcdsaPublicKey authority_zone;
261
262   /**
263    * called when resolution phase finishes
264    */
265   GNS_ResultProcessor proc;
266
267   /**
268    * closure passed to @e proc
269    */
270   void* proc_cls;
271
272   /**
273    * Handle used during GNS2DNS resolution for looking up the
274    * IP address of the DNS server.
275    */
276   struct Gns2DnsContext *g2dc;
277
278   /**
279    * Handle for DHT lookups. should be NULL if no lookups are in progress
280    */
281   struct GNUNET_DHT_GetHandle *get_handle;
282
283   /**
284    * Handle to a VPN request, NULL if none is active.
285    */
286   struct VpnContext *vpn_ctx;
287
288   /**
289    * Socket for a DNS request, NULL if none is active.
290    */
291   struct GNUNET_DNSSTUB_RequestSocket *dns_request;
292
293   /**
294    * Handle for standard DNS resolution, NULL if none is active.
295    */
296   struct GNUNET_RESOLVER_RequestHandle *std_resolve;
297
298   /**
299    * Pending Namecache lookup task
300    */
301   struct GNUNET_NAMECACHE_QueueEntry *namecache_qe;
302
303   /**
304    * Pending revocation check.
305    */
306   struct GNUNET_REVOCATION_Query *rev_check;
307
308   /**
309    * Heap node associated with this lookup.  Used to limit number of
310    * concurrent requests.
311    */
312   struct GNUNET_CONTAINER_HeapNode *dht_heap_node;
313
314   /**
315    * DLL to store the authority chain
316    */
317   struct AuthorityChain *ac_head;
318
319   /**
320    * DLL to store the authority chain
321    */
322   struct AuthorityChain *ac_tail;
323
324   /**
325    * Private key of the shorten zone, NULL to not shorten.
326    */
327   struct GNUNET_CRYPTO_EcdsaPrivateKey *shorten_key;
328
329   /**
330    * ID of a task associated with the resolution process.
331    */
332   GNUNET_SCHEDULER_TaskIdentifier task_id;
333
334   /**
335    * The name to resolve
336    */
337   char *name;
338
339   /**
340    * DLL of results we got from DNS.
341    */
342   struct DnsResult *dns_result_head;
343
344   /**
345    * DLL of results we got from DNS.
346    */
347   struct DnsResult *dns_result_tail;
348
349   /**
350    * Current offset in 'name' where we are resolving.
351    */
352   size_t name_resolution_pos;
353
354   /**
355    * Use only cache
356    */
357   int only_cached;
358
359   /**
360    * Desired type for the resolution.
361    */
362   int record_type;
363
364   /**
365    * We increment the loop limiter for each step in a recursive
366    * resolution.  If it passes our threshold (i.e. due to
367    * self-recursion in the resolution, i.e CNAME fun), we stop.
368    */
369   unsigned int loop_limiter;
370
371 };
372
373
374 /**
375  * Active namestore caching operations.
376  */
377 struct CacheOps
378 {
379
380   /**
381    * Organized in a DLL.
382    */
383   struct CacheOps *next;
384
385   /**
386    * Organized in a DLL.
387    */
388   struct CacheOps *prev;
389
390   /**
391    * Pending Namestore caching task.
392    */
393   struct GNUNET_NAMECACHE_QueueEntry *namecache_qe_cache;
394
395 };
396
397
398 /**
399  * Our handle to the namecache service
400  */
401 static struct GNUNET_NAMECACHE_Handle *namecache_handle;
402
403 /**
404  * Our handle to the vpn service
405  */
406 static struct GNUNET_VPN_Handle *vpn_handle;
407
408 /**
409  * Resolver handle to the dht
410  */
411 static struct GNUNET_DHT_Handle *dht_handle;
412
413 /**
414  * Handle to perform DNS lookups.
415  */
416 static struct GNUNET_DNSSTUB_Context *dns_handle;
417
418 /**
419  * Heap for limiting parallel DHT lookups
420  */
421 static struct GNUNET_CONTAINER_Heap *dht_lookup_heap;
422
423 /**
424  * Maximum amount of parallel queries to the DHT
425  */
426 static unsigned long long max_allowed_background_queries;
427
428 /**
429  * Head of resolver lookup list
430  */
431 static struct GNS_ResolverHandle *rlh_head;
432
433 /**
434  * Tail of resolver lookup list
435  */
436 static struct GNS_ResolverHandle *rlh_tail;
437
438 /**
439  * Organized in a DLL.
440  */
441 static struct CacheOps *co_head;
442
443 /**
444  * Organized in a DLL.
445  */
446 static struct CacheOps *co_tail;
447
448
449 /**
450  * Global configuration.
451  */
452 static const struct GNUNET_CONFIGURATION_Handle *cfg;
453
454 #if 0
455 /**
456  * Check if name is in srv format (_x._y.xxx)
457  *
458  * @param name
459  * @return #GNUNET_YES if true
460  */
461 static int
462 is_srv (const char *name)
463 {
464   char *ndup;
465   int ret;
466
467   if (*name != '_')
468     return GNUNET_NO;
469   if (NULL == strstr (name, "._"))
470     return GNUNET_NO;
471   ret = GNUNET_YES;
472   ndup = GNUNET_strdup (name);
473   strtok (ndup, ".");
474   if (NULL == strtok (NULL, "."))
475     ret = GNUNET_NO;
476   if (NULL == strtok (NULL, "."))
477     ret = GNUNET_NO;
478   if (NULL != strtok (NULL, "."))
479     ret = GNUNET_NO;
480   GNUNET_free (ndup);
481   return ret;
482 }
483 #endif
484
485
486 /**
487  * Determine if this name is canonical (is a legal name in a zone, without delegation);
488  * note that we do not test that the name does not contain illegal characters, we only
489  * test for delegation.  Note that service records (i.e. _foo._srv) are canonical names
490  * even though they consist of multiple labels.
491  *
492  * Examples:
493  * a.b.gnu  = not canonical
494  * a         = canonical
495  * _foo._srv = canonical
496  * _f.bar    = not canonical
497  *
498  * @param name the name to test
499  * @return #GNUNET_YES if canonical
500  */
501 static int
502 is_canonical (const char *name)
503 {
504   const char *pos;
505   const char *dot;
506
507   if (NULL == strchr (name, '.'))
508     return GNUNET_YES;
509   if ('_' != name[0])
510     return GNUNET_NO;
511   pos = &name[1];
512   while (NULL != (dot = strchr (pos, '.')))
513     if ('_' != dot[1])
514       return GNUNET_NO;
515     else
516       pos = dot + 1;
517   return GNUNET_YES;
518 }
519
520 /* ************************** Resolution **************************** */
521
522 /**
523  * Expands a name ending in .+ with the zone of origin.
524  *
525  * @param rh resolution context
526  * @param name name to modify (to be free'd or returned)
527  * @return updated name
528  */
529 static char *
530 translate_dot_plus (struct GNS_ResolverHandle *rh,
531                     char *name)
532 {
533   char *ret;
534   size_t s_len = strlen (name);
535
536   if (0 != strcmp (&name[s_len - 2],
537                    ".+"))
538     return name; /* did not end in ".+" */
539   GNUNET_assert (GNUNET_YES == rh->ac_tail->gns_authority);
540   GNUNET_asprintf (&ret,
541                    "%.*s.%s",
542                    (int) (s_len - 2),
543                    name,
544                    GNUNET_GNSRECORD_pkey_to_zkey (&rh->ac_tail->authority_info.gns_authority));
545   GNUNET_free (name);
546   return ret;
547 }
548
549
550 /**
551  * Task scheduled to asynchronously fail a resolution.
552  *
553  * @param cls the 'struct GNS_ResolverHandle' of the resolution to fail
554  * @param tc task context
555  */
556 static void
557 fail_resolution (void *cls,
558                  const struct GNUNET_SCHEDULER_TaskContext *tc)
559 {
560   struct GNS_ResolverHandle *rh = cls;
561
562   rh->task_id = GNUNET_SCHEDULER_NO_TASK;
563   rh->proc (rh->proc_cls, 0, NULL);
564   GNS_resolver_lookup_cancel (rh);
565 }
566
567
568 #if (defined WINDOWS) || (defined DARWIN)
569 /* Don't have this on W32, here's a naive implementation
570  * Was somehow removed on OS X ...  */
571 void *
572 memrchr (const void *s,
573          int c,
574          size_t n)
575 {
576   const unsigned char *ucs = s;
577   ssize_t i;
578
579   for (i = n - 1; i >= 0; i--)
580     if (c == (int) ucs[i])
581       return (void *) &ucs[i];
582   return NULL;
583 }
584 #endif
585
586
587 /**
588  * Get the next, rightmost label from the name that we are trying to resolve,
589  * and update the resolution position accordingly.
590  *
591  * @param rh handle to the resolution operation to get the next label from
592  * @return NULL if there are no more labels
593  */
594 static char *
595 resolver_lookup_get_next_label (struct GNS_ResolverHandle *rh)
596 {
597   const char *rp;
598   const char *dot;
599   size_t len;
600
601   if (0 == rh->name_resolution_pos)
602     return NULL;
603   dot = memrchr (rh->name, (int) '.', rh->name_resolution_pos);
604   if (NULL == dot)
605   {
606     /* done, this was the last one */
607     len = rh->name_resolution_pos;
608     rp = rh->name;
609     rh->name_resolution_pos = 0;
610   }
611   else
612   {
613     /* advance by one label */
614     len = rh->name_resolution_pos - (dot - rh->name) - 1;
615     rp = dot + 1;
616     rh->name_resolution_pos = dot - rh->name;
617   }
618   return GNUNET_strndup (rp, len);
619 }
620
621
622 /**
623  * Gives the cummulative result obtained to the callback and clean up the request.
624  *
625  * @param rh resolution process that has culminated in a result
626  */
627 static void
628 transmit_lookup_dns_result (struct GNS_ResolverHandle *rh)
629 {
630   struct DnsResult *pos;
631   unsigned int n;
632   unsigned int i;
633
634   n = 0;
635   for (pos = rh->dns_result_head; NULL != pos; pos = pos->next)
636     n++;
637   {
638     struct GNUNET_GNSRECORD_Data rd[n];
639
640     i = 0;
641     for (pos = rh->dns_result_head; NULL != pos; pos = pos->next)
642     {
643       rd[i].data = pos->data;
644       rd[i].data_size = pos->data_size;
645       rd[i].record_type = pos->record_type;
646       if (0 == pos->expiration_time)
647       {
648         rd[i].flags = GNUNET_GNSRECORD_RF_RELATIVE_EXPIRATION;
649         rd[i].expiration_time = 0;
650       }
651       else
652       {
653         rd[i].flags = GNUNET_GNSRECORD_RF_NONE;
654         rd[i].expiration_time = pos->expiration_time;
655       }
656       i++;
657     }
658     GNUNET_assert (i == n);
659     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
660                 "Transmitting standard DNS result with %u records\n",
661                 n);
662     rh->proc (rh->proc_cls,
663               n,
664               rd);
665   }
666   GNS_resolver_lookup_cancel (rh);
667 }
668
669
670 /**
671  * Add a result from DNS to the records to be returned to the application.
672  *
673  * @param rh resolution request to extend with a result
674  * @param expiration_time expiration time for the answer
675  * @param record_type DNS record type of the answer
676  * @param data_size number of bytes in @a data
677  * @param data binary data to return in DNS record
678  */
679 static void
680 add_dns_result (struct GNS_ResolverHandle *rh,
681                 uint64_t expiration_time,
682                 uint32_t record_type,
683                 size_t data_size,
684                 const void *data)
685 {
686   struct DnsResult *res;
687
688   res = GNUNET_malloc (sizeof (struct DnsResult) + data_size);
689   res->expiration_time = expiration_time;
690   res->data_size = data_size;
691   res->record_type = record_type;
692   res->data = &res[1];
693   memcpy (&res[1], data, data_size);
694   GNUNET_CONTAINER_DLL_insert (rh->dns_result_head,
695                                rh->dns_result_tail,
696                                res);
697 }
698
699
700 /**
701  * We had to do a DNS lookup.  Convert the result (if any) and return
702  * it.
703  *
704  * @param cls closure with the `struct GNS_ResolverHandle`
705  * @param addr one of the addresses of the host, NULL for the last address
706  * @param addrlen length of the address
707  */
708 static void
709 handle_dns_result (void *cls,
710                    const struct sockaddr *addr,
711                    socklen_t addrlen)
712 {
713   struct GNS_ResolverHandle *rh = cls;
714   const struct sockaddr_in *sa4;
715   const struct sockaddr_in6 *sa6;
716
717   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
718               "Received %u bytes of DNS IP data\n",
719               addrlen);
720   if (NULL == addr)
721   {
722     rh->std_resolve = NULL;
723     transmit_lookup_dns_result (rh);
724     return;
725   }
726   switch (addr->sa_family)
727   {
728   case AF_INET:
729     sa4 = (const struct sockaddr_in *) addr;
730     add_dns_result (rh,
731                     0 /* expiration time is unknown */,
732                     GNUNET_DNSPARSER_TYPE_A,
733                     sizeof (struct in_addr),
734                     &sa4->sin_addr);
735     break;
736   case AF_INET6:
737     sa6 = (const struct sockaddr_in6 *) addr;
738     add_dns_result (rh,
739                     0 /* expiration time is unknown */,
740                     GNUNET_DNSPARSER_TYPE_AAAA,
741                     sizeof (struct in6_addr),
742                     &sa6->sin6_addr);
743     break;
744   default:
745     GNUNET_break (0);
746     break;
747   }
748 }
749
750
751 /**
752  * Task scheduled to continue with the resolution process.
753  *
754  * @param cls the 'struct GNS_ResolverHandle' of the resolution
755  * @param tc task context
756  */
757 static void
758 recursive_resolution (void *cls,
759                       const struct GNUNET_SCHEDULER_TaskContext *tc);
760
761
762 /**
763  * Begin the resolution process from 'name', starting with
764  * the identification of the zone specified by 'name'.
765  *
766  * @param rh resolution to perform
767  */
768 static void
769 start_resolver_lookup (struct GNS_ResolverHandle *rh);
770
771
772 /**
773  * Function called with the result of a DNS resolution.
774  *
775  * @param cls the request handle of the resolution that
776  *        we were attempting to make
777  * @param rs socket that received the response
778  * @param dns dns response, never NULL
779  * @param dns_len number of bytes in @a dns
780  */
781 static void
782 dns_result_parser (void *cls,
783                    struct GNUNET_DNSSTUB_RequestSocket *rs,
784                    const struct GNUNET_TUN_DnsHeader *dns,
785                    size_t dns_len)
786 {
787   struct GNS_ResolverHandle *rh = cls;
788   struct GNUNET_DNSPARSER_Packet *p;
789   const struct GNUNET_DNSPARSER_Record *rec;
790   unsigned int rd_count;
791   unsigned int i;
792
793   rh->dns_request = NULL;
794   GNUNET_SCHEDULER_cancel (rh->task_id);
795   rh->task_id = GNUNET_SCHEDULER_NO_TASK;
796   p = GNUNET_DNSPARSER_parse ((const char *) dns,
797                               dns_len);
798   if (NULL == p)
799   {
800     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
801                 _("Failed to parse DNS response\n"));
802     rh->proc (rh->proc_cls, 0, NULL);
803     GNS_resolver_lookup_cancel (rh);
804     return;
805   }
806   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
807               "Received DNS response for `%s' with %u answers\n",
808               rh->ac_tail->label,
809               (unsigned int) p->num_answers);
810   if ( (p->num_answers > 0) &&
811        (GNUNET_DNSPARSER_TYPE_CNAME == p->answers[0].type) &&
812        (GNUNET_DNSPARSER_TYPE_CNAME != rh->record_type) )
813     {
814       GNUNET_free (rh->name);
815       rh->name = GNUNET_strdup (p->answers[0].data.hostname);
816       start_resolver_lookup (rh);
817       GNUNET_DNSPARSER_free_packet (p);
818       return;
819     }
820   /* FIXME: add DNAME support */
821
822   /* convert from (parsed) DNS to (binary) GNS format! */
823   rd_count = p->num_answers + p->num_authority_records + p->num_additional_records;
824   {
825     struct GNUNET_GNSRECORD_Data rd[rd_count];
826     unsigned int skip;
827     char buf[UINT16_MAX];
828     size_t buf_off;
829     size_t buf_start;
830
831     buf_off = 0;
832     skip = 0;
833     memset (rd, 0, sizeof (rd));
834     for (i=0;i<rd_count;i++)
835     {
836       if (i < p->num_answers)
837         rec = &p->answers[i];
838       else if (i < p->num_answers + p->num_authority_records)
839         rec = &p->authority_records[i - p->num_answers];
840       else
841         rec = &p->authority_records[i - p->num_answers - p->num_authority_records];
842       /* As we copied the full DNS name to 'rh->ac_tail->label', this
843          should be the correct check to see if this record is actually
844          a record for our label... */
845       if (0 != strcmp (rec->name,
846                        rh->ac_tail->label))
847       {
848         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
849                     "Dropping record `%s', does not match desired name `%s'\n",
850                     rec->name,
851                     rh->ac_tail->label);
852         skip++;
853         continue;
854       }
855       rd[i - skip].record_type = rec->type;
856       rd[i - skip].expiration_time = rec->expiration_time.abs_value_us;
857       switch (rec->type)
858       {
859       case GNUNET_DNSPARSER_TYPE_A:
860         if (rec->data.raw.data_len != sizeof (struct in_addr))
861         {
862           GNUNET_break_op (0);
863           skip++;
864           continue;
865         }
866         rd[i - skip].data_size = rec->data.raw.data_len;
867         rd[i - skip].data = rec->data.raw.data;
868         break;
869       case GNUNET_DNSPARSER_TYPE_AAAA:
870         if (rec->data.raw.data_len != sizeof (struct in6_addr))
871         {
872           GNUNET_break_op (0);
873           skip++;
874           continue;
875         }
876         rd[i - skip].data_size = rec->data.raw.data_len;
877         rd[i - skip].data = rec->data.raw.data;
878         break;
879       case GNUNET_DNSPARSER_TYPE_CNAME:
880       case GNUNET_DNSPARSER_TYPE_PTR:
881       case GNUNET_DNSPARSER_TYPE_NS:
882         buf_start = buf_off;
883         if (GNUNET_OK !=
884             GNUNET_DNSPARSER_builder_add_name (buf,
885                                                sizeof (buf),
886                                                &buf_off,
887                                                rec->data.hostname))
888         {
889           GNUNET_break (0);
890           skip++;
891           continue;
892         }
893         rd[i - skip].data_size = buf_off - buf_start;
894         rd[i - skip].data = &buf[buf_start];
895         break;
896       case GNUNET_DNSPARSER_TYPE_SOA:
897         buf_start = buf_off;
898         if (GNUNET_OK !=
899             GNUNET_DNSPARSER_builder_add_soa (buf,
900                                                sizeof (buf),
901                                                &buf_off,
902                                                rec->data.soa))
903         {
904           GNUNET_break (0);
905           skip++;
906           continue;
907         }
908         rd[i - skip].data_size = buf_off - buf_start;
909         rd[i - skip].data = &buf[buf_start];
910         break;
911       case GNUNET_DNSPARSER_TYPE_MX:
912         buf_start = buf_off;
913         if (GNUNET_OK !=
914             GNUNET_DNSPARSER_builder_add_mx (buf,
915                                              sizeof (buf),
916                                              &buf_off,
917                                              rec->data.mx))
918         {
919           GNUNET_break (0);
920           skip++;
921           continue;
922         }
923         rd[i - skip].data_size = buf_off - buf_start;
924         rd[i - skip].data = &buf[buf_start];
925         break;
926       case GNUNET_DNSPARSER_TYPE_SRV:
927         buf_start = buf_off;
928         if (GNUNET_OK !=
929             GNUNET_DNSPARSER_builder_add_srv (buf,
930                                               sizeof (buf),
931                                               &buf_off,
932                                               rec->data.srv))
933         {
934           GNUNET_break (0);
935           skip++;
936           continue;
937         }
938         rd[i - skip].data_size = buf_off - buf_start;
939         rd[i - skip].data = &buf[buf_start];
940         break;
941       default:
942         GNUNET_log (GNUNET_ERROR_TYPE_INFO,
943                     _("Skipping record of unsupported type %d\n"),
944                     rec->type);
945         skip++;
946         continue;
947       }
948     }
949     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
950                 "Returning DNS response for `%s' with %u answers\n",
951                 rh->ac_tail->label,
952                 (unsigned int) p->num_answers);
953     rh->proc (rh->proc_cls, rd_count - skip, rd);
954     GNS_resolver_lookup_cancel (rh);
955   }
956   GNUNET_DNSPARSER_free_packet (p);
957 }
958
959
960 /**
961  * Perform recursive DNS resolution.  Asks the given DNS resolver to
962  * resolve "rh->dns_name", possibly recursively proceeding following
963  * NS delegations, CNAMES, etc., until 'rh->loop_limiter' bounds us or
964  * we find the answer.
965  *
966  * @param rh resolution information
967  */
968 static void
969 recursive_dns_resolution (struct GNS_ResolverHandle *rh)
970 {
971   struct AuthorityChain *ac;
972   socklen_t sa_len;
973   struct GNUNET_DNSPARSER_Query *query;
974   struct GNUNET_DNSPARSER_Packet *p;
975   char *dns_request;
976   size_t dns_request_length;
977
978   ac = rh->ac_tail;
979   GNUNET_assert (NULL != ac);
980   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
981               "Starting DNS lookup for `%s'\n",
982               ac->label);
983   GNUNET_assert (GNUNET_NO == ac->gns_authority);
984   switch (((const struct sockaddr *) &ac->authority_info.dns_authority.dns_ip)->sa_family)
985   {
986   case AF_INET:
987     sa_len = sizeof (struct sockaddr_in);
988     break;
989   case AF_INET6:
990     sa_len = sizeof (struct sockaddr_in6);
991     break;
992   default:
993     GNUNET_break (0);
994     rh->proc (rh->proc_cls, 0, NULL);
995     GNS_resolver_lookup_cancel (rh);
996     return;
997   }
998   query = GNUNET_new (struct GNUNET_DNSPARSER_Query);
999   query->name = GNUNET_strdup (ac->label);
1000   query->type = rh->record_type;
1001   query->dns_traffic_class = GNUNET_TUN_DNS_CLASS_INTERNET;
1002   p = GNUNET_new (struct GNUNET_DNSPARSER_Packet);
1003   p->queries = query;
1004   p->num_queries = 1;
1005   p->id = (uint16_t) GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_NONCE,
1006                                                UINT16_MAX);
1007   p->flags.opcode = GNUNET_TUN_DNS_OPCODE_QUERY;
1008   p->flags.recursion_desired = 1;
1009   if (GNUNET_OK !=
1010       GNUNET_DNSPARSER_pack (p, 1024, &dns_request, &dns_request_length))
1011   {
1012     GNUNET_break (0);
1013     rh->proc (rh->proc_cls, 0, NULL);
1014     GNS_resolver_lookup_cancel (rh);
1015   }
1016   else
1017   {
1018     rh->dns_request = GNUNET_DNSSTUB_resolve (dns_handle,
1019                                               (const struct sockaddr *) &ac->authority_info.dns_authority.dns_ip,
1020                                               sa_len,
1021                                               dns_request,
1022                                               dns_request_length,
1023                                               &dns_result_parser,
1024                                               rh);
1025     rh->task_id = GNUNET_SCHEDULER_add_delayed (DNS_LOOKUP_TIMEOUT,
1026                                                 &fail_resolution,
1027                                                 rh);
1028   }
1029   GNUNET_free (dns_request);
1030   GNUNET_DNSPARSER_free_packet (p);
1031 }
1032
1033
1034 /**
1035  * We encountered a CNAME record during our resolution.
1036  * Merge it into our chain.
1037  *
1038  * @param rh resolution we are performing
1039  * @param cname value of the cname record we got for the current
1040  *        authority chain tail
1041  */
1042 static void
1043 handle_gns_cname_result (struct GNS_ResolverHandle *rh,
1044                          const char *cname)
1045 {
1046   size_t nlen;
1047   char *res;
1048   struct AuthorityChain *ac;
1049
1050   nlen = strlen (cname);
1051   if ( (nlen > 2) &&
1052        (0 == strcmp (".+",
1053                      &cname[nlen - 2])) )
1054   {
1055     /* CNAME resolution continues relative to current domain */
1056     if (0 == rh->name_resolution_pos)
1057     {
1058       res = GNUNET_strndup (cname, nlen - 2);
1059       rh->name_resolution_pos = nlen - 2;
1060     }
1061     else
1062     {
1063       GNUNET_asprintf (&res,
1064                        "%.*s.%.*s",
1065                        (int) rh->name_resolution_pos,
1066                        rh->name,
1067                        (int) (nlen - 2),
1068                        cname);
1069       rh->name_resolution_pos = strlen (res);
1070     }
1071     GNUNET_free (rh->name);
1072     rh->name = res;
1073     ac = GNUNET_new (struct AuthorityChain);
1074     ac->rh = rh;
1075     ac->gns_authority = GNUNET_YES;
1076     ac->authority_info.gns_authority = rh->ac_tail->authority_info.gns_authority;
1077     ac->label = resolver_lookup_get_next_label (rh);
1078     /* tigger shortening */
1079     if (NULL != rh->shorten_key)
1080       GNS_shorten_start (rh->ac_tail->label,
1081                          &ac->authority_info.gns_authority,
1082                          rh->shorten_key);
1083     /* add AC to tail */
1084     GNUNET_CONTAINER_DLL_insert_tail (rh->ac_head,
1085                                       rh->ac_tail,
1086                                       ac);
1087     rh->task_id = GNUNET_SCHEDULER_add_now (&recursive_resolution,
1088                                             rh);
1089     return;
1090   }
1091   /* name is absolute, start from the beginning */
1092   GNUNET_free (rh->name);
1093   rh->name = GNUNET_strdup (cname);
1094   start_resolver_lookup (rh);
1095 }
1096
1097
1098 /**
1099  * Process a records that were decrypted from a block.
1100  *
1101  * @param cls closure with the 'struct GNS_ResolverHandle'
1102  * @param rd_count number of entries in @a rd array
1103  * @param rd array of records with data to store
1104  */
1105 static void
1106 handle_gns_resolution_result (void *cls,
1107                               unsigned int rd_count,
1108                               const struct GNUNET_GNSRECORD_Data *rd);
1109
1110
1111 /**
1112  * Callback invoked from the VPN service once a redirection is
1113  * available.  Provides the IP address that can now be used to
1114  * reach the requested destination.  Replaces the "VPN" record
1115  * with the respective A/AAAA record and continues processing.
1116  *
1117  * @param cls closure
1118  * @param af address family, AF_INET or AF_INET6; AF_UNSPEC on error;
1119  *                will match 'result_af' from the request
1120  * @param address IP address (struct in_addr or struct in_addr6, depending on 'af')
1121  *                that the VPN allocated for the redirection;
1122  *                traffic to this IP will now be redirected to the
1123  *                specified target peer; NULL on error
1124  */
1125 static void
1126 vpn_allocation_cb (void *cls,
1127                    int af,
1128                    const void *address)
1129 {
1130   struct VpnContext *vpn_ctx = cls;
1131   struct GNS_ResolverHandle *rh = vpn_ctx->rh;
1132   struct GNUNET_GNSRECORD_Data rd[vpn_ctx->rd_count];
1133   unsigned int i;
1134
1135   vpn_ctx->vpn_request = NULL;
1136   rh->vpn_ctx = NULL;
1137   GNUNET_assert (GNUNET_OK ==
1138                  GNUNET_GNSRECORD_records_deserialize (vpn_ctx->rd_data_size,
1139                                                        vpn_ctx->rd_data,
1140                                                        vpn_ctx->rd_count,
1141                                                        rd));
1142   for (i=0;i<vpn_ctx->rd_count;i++)
1143   {
1144     if (GNUNET_GNSRECORD_TYPE_VPN == rd[i].record_type)
1145     {
1146       switch (af)
1147       {
1148       case AF_INET:
1149         rd[i].record_type = GNUNET_DNSPARSER_TYPE_A;
1150         rd[i].data_size = sizeof (struct in_addr);
1151         rd[i].expiration_time = GNUNET_TIME_relative_to_absolute (VPN_TIMEOUT).abs_value_us;
1152         rd[i].flags = 0;
1153         rd[i].data = address;
1154         break;
1155       case AF_INET6:
1156         rd[i].record_type = GNUNET_DNSPARSER_TYPE_AAAA;
1157         rd[i].expiration_time = GNUNET_TIME_relative_to_absolute (VPN_TIMEOUT).abs_value_us;
1158         rd[i].flags = 0;
1159         rd[i].data = address;
1160         rd[i].data_size = sizeof (struct in6_addr);
1161         break;
1162       default:
1163         GNUNET_assert (0);
1164       }
1165       break;
1166     }
1167   }
1168   GNUNET_assert (i < vpn_ctx->rd_count);
1169   handle_gns_resolution_result (rh,
1170                                 vpn_ctx->rd_count,
1171                                 rd);
1172   GNUNET_free (vpn_ctx->rd_data);
1173   GNUNET_free (vpn_ctx);
1174 }
1175
1176
1177 /**
1178  * We've resolved the IP address for the DNS resolver to use
1179  * after encountering a GNS2DNS record.
1180  *
1181  * TODO: Right now we only foward the request to ONE DNS resolver,
1182  * even if we get multiple IP addresses back; a correct implementation
1183  * should try all DNS resolvers.
1184  *
1185  * @param cls the `struct GNS_ResolverHandle` where we encountered
1186  *            the GNS2DNS record
1187  * @param rd_count number of records in @a rd
1188  * @param rd addresses for the DNS resolver  (presumably)
1189  */
1190 static void
1191 handle_gns2dns_result (void *cls,
1192                        unsigned int rd_count,
1193                        const struct GNUNET_GNSRECORD_Data *rd)
1194 {
1195   struct GNS_ResolverHandle *rh = cls;
1196   struct AuthorityChain *ac;
1197   unsigned int j;
1198   struct sockaddr *sa;
1199   struct sockaddr_in v4;
1200   struct sockaddr_in6 v6;
1201   size_t sa_len;
1202
1203   /* find suitable A/AAAA record */
1204   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1205               "Received %u results for IP address of DNS server for GNS2DNS transition\n",
1206               rd_count);
1207   /* enable cleanup of 'rh' handle that comes next... */
1208   GNUNET_CONTAINER_DLL_insert (rlh_head,
1209                                rlh_tail,
1210                                rh->g2dc->rh);
1211   rh->g2dc->rh = NULL;
1212   sa = NULL;
1213   sa_len = 0;
1214   for (j=0;j<rd_count;j++)
1215   {
1216     switch (rd[j].record_type)
1217     {
1218     case GNUNET_DNSPARSER_TYPE_A:
1219       if (sizeof (struct in_addr) != rd[j].data_size)
1220       {
1221         GNUNET_break_op (0);
1222         rh->proc (rh->proc_cls, 0, NULL);
1223         GNS_resolver_lookup_cancel (rh);
1224         return;
1225       }
1226       /* FIXME: might want to check if we support IPv4 here,
1227          and otherwise skip this one and hope we find another */
1228       memset (&v4, 0, sizeof (v4));
1229       sa_len = sizeof (v4);
1230       v4.sin_family = AF_INET;
1231       v4.sin_port = htons (53);
1232 #if HAVE_SOCKADDR_IN_SIN_LEN
1233       v4.sin_len = (u_char) sa_len;
1234 #endif
1235       memcpy (&v4.sin_addr,
1236               rd[j].data,
1237               sizeof (struct in_addr));
1238       sa = (struct sockaddr *) &v4;
1239       break;
1240     case GNUNET_DNSPARSER_TYPE_AAAA:
1241       if (sizeof (struct in6_addr) != rd[j].data_size)
1242       {
1243         GNUNET_break_op (0);
1244         rh->proc (rh->proc_cls, 0, NULL);
1245         GNS_resolver_lookup_cancel (rh);
1246         return;
1247       }
1248       /* FIXME: might want to check if we support IPv6 here,
1249          and otherwise skip this one and hope we find another */
1250       memset (&v6, 0, sizeof (v6));
1251       sa_len = sizeof (v6);
1252       v6.sin6_family = AF_INET6;
1253       v6.sin6_port = htons (53);
1254 #if HAVE_SOCKADDR_IN_SIN_LEN
1255       v6.sin6_len = (u_char) sa_len;
1256 #endif
1257       memcpy (&v6.sin6_addr,
1258               rd[j].data,
1259               sizeof (struct in6_addr));
1260       sa = (struct sockaddr *) &v6;
1261       break;
1262     default:
1263       break;
1264     }
1265     if (NULL != sa)
1266       break;
1267   }
1268   if (NULL == sa)
1269   {
1270     /* we cannot continue; NS without A/AAAA */
1271     rh->proc (rh->proc_cls, 0, NULL);
1272     GNS_resolver_lookup_cancel (rh);
1273     return;
1274   }
1275   /* expand authority chain */
1276   ac = GNUNET_new (struct AuthorityChain);
1277   ac->rh = rh;
1278   strcpy (ac->authority_info.dns_authority.name,
1279           rh->g2dc->ns);
1280   memcpy (&ac->authority_info.dns_authority.dns_ip,
1281           sa,
1282           sa_len);
1283   /* for DNS recursion, the label is the full DNS name,
1284      created from the remainder of the GNS name and the
1285      name in the NS record */
1286   GNUNET_asprintf (&ac->label,
1287                    "%.*s%s%s",
1288                    (int) rh->name_resolution_pos,
1289                    rh->name,
1290                    (0 != rh->name_resolution_pos) ? "." : "",
1291                    rh->g2dc->ns);
1292   GNUNET_free (rh->g2dc->ns);
1293   GNUNET_free (rh->g2dc);
1294   rh->g2dc = NULL;
1295   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1296               "Will continue resolution using DNS server `%s' to resolve `%s'\n",
1297               GNUNET_a2s (sa, sa_len),
1298               ac->label);
1299   GNUNET_CONTAINER_DLL_insert_tail (rh->ac_head,
1300                                     rh->ac_tail,
1301                                     ac);
1302   if (strlen (ac->label) > GNUNET_DNSPARSER_MAX_NAME_LENGTH)
1303   {
1304     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1305                 _("GNS lookup resulted in DNS name that is too long (`%s')\n"),
1306                 ac->label);
1307     rh->proc (rh->proc_cls, 0, NULL);
1308     GNS_resolver_lookup_cancel (rh);
1309     return;
1310   }
1311   /* recurse */
1312   rh->task_id = GNUNET_SCHEDULER_add_now (&recursive_resolution,
1313                                           rh);
1314 }
1315
1316
1317 /**
1318  * Process a records that were decrypted from a block.
1319  *
1320  * @param cls closure with the `struct GNS_ResolverHandle`
1321  * @param rd_count number of entries in @a rd array
1322  * @param rd array of records with data to store
1323  */
1324 static void
1325 handle_gns_resolution_result (void *cls,
1326                               unsigned int rd_count,
1327                               const struct GNUNET_GNSRECORD_Data *rd)
1328 {
1329   struct GNS_ResolverHandle *rh = cls;
1330   struct AuthorityChain *ac;
1331   unsigned int i;
1332   char *cname;
1333   struct VpnContext *vpn_ctx;
1334   const struct GNUNET_TUN_GnsVpnRecord *vpn;
1335   const char *vname;
1336   struct GNUNET_HashCode vhash;
1337   int af;
1338   char scratch[UINT16_MAX];
1339   size_t scratch_off;
1340   size_t scratch_start;
1341   size_t off;
1342   struct GNUNET_GNSRECORD_Data rd_new[rd_count];
1343   unsigned int rd_off;
1344
1345   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1346               "Resolution succeeded for `%s' in zone %s, got %u records\n",
1347               rh->ac_tail->label,
1348               GNUNET_GNSRECORD_z2s (&rh->ac_tail->authority_info.gns_authority),
1349               rd_count);
1350   if (0 == rh->name_resolution_pos)
1351   {
1352     /* top-level match, are we done yet? */
1353     if ( (rd_count > 0) &&
1354          (GNUNET_DNSPARSER_TYPE_CNAME == rd[0].record_type) &&
1355          (GNUNET_DNSPARSER_TYPE_CNAME != rh->record_type) )
1356     {
1357       off = 0;
1358       cname = GNUNET_DNSPARSER_parse_name (rd[0].data,
1359                                            rd[0].data_size,
1360                                            &off);
1361       if ( (NULL == cname) ||
1362            (off != rd[0].data_size) )
1363       {
1364         GNUNET_break_op (0);
1365         rh->proc (rh->proc_cls, 0, NULL);
1366         GNS_resolver_lookup_cancel (rh);
1367         GNUNET_free_non_null (cname);
1368         return;
1369       }
1370       handle_gns_cname_result (rh,
1371                                cname);
1372       GNUNET_free (cname);
1373       return;
1374     }
1375     /* If A/AAAA was requested, but we got a VPN
1376        record, we convert it to A/AAAA using GNUnet VPN */
1377     if ( (GNUNET_DNSPARSER_TYPE_A == rh->record_type) ||
1378          (GNUNET_DNSPARSER_TYPE_AAAA == rh->record_type) )
1379     {
1380       for (i=0;i<rd_count;i++)
1381       {
1382         switch (rd[i].record_type)
1383         {
1384         case GNUNET_GNSRECORD_TYPE_VPN:
1385           {
1386             af = (GNUNET_DNSPARSER_TYPE_A == rh->record_type) ? AF_INET : AF_INET6;
1387             if (sizeof (struct GNUNET_TUN_GnsVpnRecord) <
1388                 rd[i].data_size)
1389             {
1390               GNUNET_break_op (0);
1391               rh->proc (rh->proc_cls, 0, NULL);
1392               GNS_resolver_lookup_cancel (rh);
1393               return;
1394             }
1395             vpn = (const struct GNUNET_TUN_GnsVpnRecord *) rd[i].data;
1396             vname = (const char *) &vpn[1];
1397             if ('\0' != vname[rd[i].data_size - 1 - sizeof (struct GNUNET_TUN_GnsVpnRecord)])
1398             {
1399               GNUNET_break_op (0);
1400               rh->proc (rh->proc_cls, 0, NULL);
1401               GNS_resolver_lookup_cancel (rh);
1402               return;
1403             }
1404             GNUNET_CRYPTO_hash (vname,
1405                                 strlen (vname), // FIXME: +1?
1406                                 &vhash);
1407             vpn_ctx = GNUNET_new (struct VpnContext);
1408             rh->vpn_ctx = vpn_ctx;
1409             vpn_ctx->rh = rh;
1410             vpn_ctx->rd_data_size = GNUNET_GNSRECORD_records_get_size (rd_count,
1411                                                                        rd);
1412             vpn_ctx->rd_data = GNUNET_malloc (vpn_ctx->rd_data_size);
1413             (void) GNUNET_GNSRECORD_records_serialize (rd_count,
1414                                                        rd,
1415                                                        vpn_ctx->rd_data_size,
1416                                                        vpn_ctx->rd_data);
1417             vpn_ctx->vpn_request = GNUNET_VPN_redirect_to_peer (vpn_handle,
1418                                                                 af,
1419                                                                 ntohs (vpn->proto),
1420                                                                 &vpn->peer,
1421                                                                 &vhash,
1422                                                                 GNUNET_TIME_relative_to_absolute (VPN_TIMEOUT),
1423                                                                 &vpn_allocation_cb,
1424                                                                 rh);
1425             return;
1426           }
1427         case GNUNET_GNSRECORD_TYPE_GNS2DNS:
1428           {
1429             /* delegation to DNS */
1430             GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1431                         "Found GNS2DNS record, delegating to DNS!\n");
1432             goto do_recurse;
1433           }
1434         default:
1435           break;
1436         }
1437       }
1438     }
1439     /* convert relative names in record values to absolute names,
1440        using 'scratch' array for memory allocations */
1441     scratch_off = 0;
1442     rd_off = 0;
1443     for (i=0;i<rd_count;i++)
1444     {
1445       rd_new[rd_off] = rd[i];
1446       /* Check if the embedded name(s) end in "+", and if so,
1447          replace the "+" with the zone at "ac_tail", changing the name
1448          to a ".zkey".  The name is allocated on the 'scratch' array,
1449          so we can free it afterwards. */
1450       switch (rd[i].record_type)
1451       {
1452       case GNUNET_DNSPARSER_TYPE_CNAME:
1453         {
1454           char *cname;
1455
1456           off = 0;
1457           cname = GNUNET_DNSPARSER_parse_name (rd[i].data,
1458                                                rd[i].data_size,
1459                                                &off);
1460           if ( (NULL == cname) ||
1461                (off != rd[i].data_size) )
1462           {
1463             GNUNET_break_op (0); /* record not well-formed */
1464           }
1465           else
1466           {
1467             cname = translate_dot_plus (rh, cname);
1468             GNUNET_break (NULL != cname);
1469             scratch_start = scratch_off;
1470             if (GNUNET_OK !=
1471                 GNUNET_DNSPARSER_builder_add_name (scratch,
1472                                                    sizeof (scratch),
1473                                                    &scratch_off,
1474                                                    cname))
1475             {
1476               GNUNET_break (0);
1477             }
1478             else
1479             {
1480               rd_new[rd_off].data = &scratch[scratch_start];
1481               rd_new[rd_off].data_size = scratch_off - scratch_start;
1482               rd_off++;
1483             }
1484           }
1485           GNUNET_free_non_null (cname);
1486         }
1487         break;
1488       case GNUNET_DNSPARSER_TYPE_SOA:
1489         {
1490           struct GNUNET_DNSPARSER_SoaRecord *soa;
1491
1492           off = 0;
1493           soa = GNUNET_DNSPARSER_parse_soa (rd[i].data,
1494                                             rd[i].data_size,
1495                                             &off);
1496           if ( (NULL == soa) ||
1497                (off != rd[i].data_size) )
1498           {
1499             GNUNET_break_op (0); /* record not well-formed */
1500           }
1501           else
1502           {
1503             soa->mname = translate_dot_plus (rh, soa->mname);
1504             soa->rname = translate_dot_plus (rh, soa->rname);
1505             scratch_start = scratch_off;
1506             if (GNUNET_OK !=
1507                 GNUNET_DNSPARSER_builder_add_soa (scratch,
1508                                                   sizeof (scratch),
1509                                                   &scratch_off,
1510                                                   soa))
1511             {
1512               GNUNET_break (0);
1513             }
1514             else
1515             {
1516               rd_new[rd_off].data = &scratch[scratch_start];
1517               rd_new[rd_off].data_size = scratch_off - scratch_start;
1518               rd_off++;
1519             }
1520           }
1521           if (NULL != soa)
1522             GNUNET_DNSPARSER_free_soa (soa);
1523         }
1524         break;
1525       case GNUNET_DNSPARSER_TYPE_MX:
1526         {
1527           struct GNUNET_DNSPARSER_MxRecord *mx;
1528
1529           off = 0;
1530           mx = GNUNET_DNSPARSER_parse_mx (rd[i].data,
1531                                           rd[i].data_size,
1532                                           &off);
1533           if ( (NULL == mx) ||
1534                (off != rd[i].data_size) )
1535           {
1536             GNUNET_break_op (0); /* record not well-formed */
1537           }
1538           else
1539           {
1540             mx->mxhost = translate_dot_plus (rh, mx->mxhost);
1541             scratch_start = scratch_off;
1542             if (GNUNET_OK !=
1543                 GNUNET_DNSPARSER_builder_add_mx (scratch,
1544                                                  sizeof (scratch),
1545                                                  &scratch_off,
1546                                                  mx))
1547             {
1548               GNUNET_break (0);
1549             }
1550             else
1551             {
1552               rd_new[rd_off].data = &scratch[scratch_start];
1553               rd_new[rd_off].data_size = scratch_off - scratch_start;
1554               rd_off++;
1555             }
1556           }
1557           if (NULL != mx)
1558             GNUNET_DNSPARSER_free_mx (mx);
1559         }
1560         break;
1561       case GNUNET_DNSPARSER_TYPE_SRV:
1562         {
1563           struct GNUNET_DNSPARSER_SrvRecord *srv;
1564
1565           off = 0;
1566           /* FIXME: passing rh->name here is is not necessarily what we want
1567              (SRV support not finished) */
1568           srv = GNUNET_DNSPARSER_parse_srv (rh->name,
1569                                             rd[i].data,
1570                                             rd[i].data_size,
1571                                             &off);
1572           if ( (NULL == srv) ||
1573                (off != rd[i].data_size) )
1574           {
1575             GNUNET_break_op (0); /* record not well-formed */
1576           }
1577           else
1578           {
1579             srv->domain_name = translate_dot_plus (rh, srv->domain_name);
1580             srv->target = translate_dot_plus (rh, srv->target);
1581             scratch_start = scratch_off;
1582             if (GNUNET_OK !=
1583                 GNUNET_DNSPARSER_builder_add_srv (scratch,
1584                                                   sizeof (scratch),
1585                                                   &scratch_off,
1586                                                   srv))
1587             {
1588               GNUNET_break (0);
1589             }
1590             else
1591             {
1592               rd_new[rd_off].data = &scratch[scratch_start];
1593               rd_new[rd_off].data_size = scratch_off - scratch_start;
1594               rd_off++;
1595             }
1596           }
1597           if (NULL != srv)
1598             GNUNET_DNSPARSER_free_srv (srv);
1599         }
1600         break;
1601       case GNUNET_GNSRECORD_TYPE_PKEY:
1602         {
1603           struct GNUNET_CRYPTO_EcdsaPublicKey pub;
1604
1605           if (rd[i].data_size != sizeof (struct GNUNET_CRYPTO_EcdsaPublicKey))
1606           {
1607             GNUNET_break_op (0);
1608             break;
1609           }
1610           memcpy (&pub, rd[i].data, rd[i].data_size);
1611
1612           /* tigger shortening */
1613           if (NULL != rh->shorten_key)
1614           {
1615             GNS_shorten_start (rh->ac_tail->label,
1616                                &pub,
1617                                rh->shorten_key);
1618           }
1619           rd_off++;
1620           if (GNUNET_GNSRECORD_TYPE_PKEY != rh->record_type)
1621           {
1622             /* try to resolve "+" */
1623             struct AuthorityChain *ac;
1624
1625             ac = GNUNET_new (struct AuthorityChain);
1626             ac->rh = rh;
1627             ac->gns_authority = GNUNET_YES;
1628             ac->authority_info.gns_authority = pub;
1629             ac->label = GNUNET_strdup (GNUNET_GNS_MASTERZONE_STR);
1630             GNUNET_CONTAINER_DLL_insert_tail (rh->ac_head,
1631                                               rh->ac_tail,
1632                                               ac);
1633             rh->task_id = GNUNET_SCHEDULER_add_now (&recursive_resolution,
1634                                                     rh);
1635             return;
1636           }
1637         }
1638         break;
1639       case GNUNET_GNSRECORD_TYPE_GNS2DNS:
1640         {
1641           /* delegation to DNS */
1642           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1643                       "Found GNS2DNS record, delegating to DNS!\n");
1644           goto do_recurse;
1645         }
1646       default:
1647         rd_off++;
1648         break;
1649       }
1650     }
1651
1652     /* yes, we are done, return result */
1653     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1654                 "Returning GNS response for `%s' with %u answers\n",
1655                 rh->ac_tail->label,
1656                 rd_off);
1657     rh->proc (rh->proc_cls, rd_off, rd_new);
1658     GNS_resolver_lookup_cancel (rh);
1659     return;
1660   }
1661  do_recurse:
1662   /* need to recurse, check if we can */
1663   for (i=0;i<rd_count;i++)
1664   {
1665     switch (rd[i].record_type)
1666     {
1667     case GNUNET_GNSRECORD_TYPE_PKEY:
1668       /* delegation to another zone */
1669       if (sizeof (struct GNUNET_CRYPTO_EcdsaPublicKey) !=
1670           rd[i].data_size)
1671       {
1672         GNUNET_break_op (0);
1673         rh->proc (rh->proc_cls, 0, NULL);
1674         GNS_resolver_lookup_cancel (rh);
1675         return;
1676       }
1677       /* expand authority chain */
1678       ac = GNUNET_new (struct AuthorityChain);
1679       ac->rh = rh;
1680       ac->gns_authority = GNUNET_YES;
1681       memcpy (&ac->authority_info.gns_authority,
1682               rd[i].data,
1683               sizeof (struct GNUNET_CRYPTO_EcdsaPublicKey));
1684       ac->label = resolver_lookup_get_next_label (rh);
1685       /* tigger shortening */
1686       if (NULL != rh->shorten_key)
1687         GNS_shorten_start (rh->ac_tail->label,
1688                            &ac->authority_info.gns_authority,
1689                            rh->shorten_key);
1690       /* add AC to tail */
1691       GNUNET_CONTAINER_DLL_insert_tail (rh->ac_head,
1692                                         rh->ac_tail,
1693                                         ac);
1694       /* recurse */
1695       rh->task_id = GNUNET_SCHEDULER_add_now (&recursive_resolution,
1696                                               rh);
1697       return;
1698     case GNUNET_GNSRECORD_TYPE_GNS2DNS:
1699       {
1700         /* resolution continues within DNS */
1701         struct Gns2DnsContext *g2dc;
1702         char *ip;
1703         char *ns;
1704
1705         off = 0;
1706         ns = GNUNET_DNSPARSER_parse_name (rd[i].data,
1707                                           rd[i].data_size,
1708                                           &off);
1709         ip = GNUNET_DNSPARSER_parse_name (rd[i].data,
1710                                           rd[i].data_size,
1711                                           &off);
1712         if ( (NULL == ns) ||
1713              (NULL == ip) ||
1714              (off != rd[i].data_size) )
1715         {
1716           GNUNET_break_op (0);
1717           GNUNET_free_non_null (ns);
1718           GNUNET_free_non_null (ip);
1719           rh->proc (rh->proc_cls, 0, NULL);
1720           GNS_resolver_lookup_cancel (rh);
1721           return;
1722         }
1723         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1724                     "Resolving `%s' to determine IP address of DNS server for GNS2DNS transition\n",
1725                     ip);
1726         /* resolve 'ip' to determine the IP(s) of the DNS
1727            resolver to use */
1728         g2dc = GNUNET_new (struct Gns2DnsContext);
1729         g2dc->ns = ns;
1730         g2dc->rh = GNUNET_new (struct GNS_ResolverHandle);
1731         g2dc->rh->authority_zone = rh->ac_tail->authority_info.gns_authority;
1732         ip = translate_dot_plus (rh, ip);
1733         g2dc->rh->name = ip;
1734         g2dc->rh->name_resolution_pos = strlen (ip);
1735         g2dc->rh->proc = &handle_gns2dns_result;
1736         g2dc->rh->proc_cls = rh;
1737         g2dc->rh->record_type = GNUNET_GNSRECORD_TYPE_ANY;
1738         g2dc->rh->only_cached = GNUNET_NO;
1739         g2dc->rh->loop_limiter = rh->loop_limiter + 1;
1740         rh->g2dc = g2dc;
1741         start_resolver_lookup (g2dc->rh);
1742         return;
1743       }
1744     case GNUNET_DNSPARSER_TYPE_CNAME:
1745       {
1746         char *cname;
1747
1748         off = 0;
1749         cname = GNUNET_DNSPARSER_parse_name (rd[i].data,
1750                                              rd[i].data_size,
1751                                              &off);
1752         if ( (NULL == cname) ||
1753              (off != rd[i].data_size) )
1754         {
1755           GNUNET_break_op (0); /* record not well-formed */
1756           rh->proc (rh->proc_cls, 0, NULL);
1757           GNS_resolver_lookup_cancel (rh);
1758           GNUNET_free_non_null (cname);
1759           return;
1760         }
1761         handle_gns_cname_result (rh,
1762                                  cname);
1763         GNUNET_free (cname);
1764         return;
1765       }
1766       /* FIXME: handle DNAME */
1767     default:
1768       /* skip */
1769       break;
1770     }
1771   }
1772   GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1773               _("GNS lookup recursion failed (no delegation record found)\n"));
1774   rh->proc (rh->proc_cls, 0, NULL);
1775   GNS_resolver_lookup_cancel (rh);
1776 }
1777
1778
1779 /**
1780  * Function called once the namestore has completed the request for
1781  * caching a block.
1782  *
1783  * @param cls closure with the `struct CacheOps`
1784  * @param success #GNUNET_OK on success
1785  * @param emsg error message
1786  */
1787 static void
1788 namecache_cache_continuation (void *cls,
1789                               int32_t success,
1790                               const char *emsg)
1791 {
1792   struct CacheOps *co = cls;
1793
1794   co->namecache_qe_cache = NULL;
1795   if (NULL != emsg)
1796     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1797                 _("Failed to cache GNS resolution: %s\n"),
1798                 emsg);
1799   GNUNET_CONTAINER_DLL_remove (co_head,
1800                                co_tail,
1801                                co);
1802   GNUNET_free (co);
1803 }
1804
1805
1806 /**
1807  * Iterator called on each result obtained for a DHT
1808  * operation that expects a reply
1809  *
1810  * @param cls closure with the `struct GNS_ResolverHandle`
1811  * @param exp when will this value expire
1812  * @param key key of the result
1813  * @param get_path peers on reply path (or NULL if not recorded)
1814  *                 [0] = datastore's first neighbor, [length - 1] = local peer
1815  * @param get_path_length number of entries in @a get_path
1816  * @param put_path peers on the PUT path (or NULL if not recorded)
1817  *                 [0] = origin, [length - 1] = datastore
1818  * @param put_path_length number of entries in @a put_path
1819  * @param type type of the result
1820  * @param size number of bytes in data
1821  * @param data pointer to the result data
1822  */
1823 static void
1824 handle_dht_response (void *cls,
1825                      struct GNUNET_TIME_Absolute exp,
1826                      const struct GNUNET_HashCode *key,
1827                      const struct GNUNET_PeerIdentity *get_path,
1828                      unsigned int get_path_length,
1829                      const struct GNUNET_PeerIdentity *put_path,
1830                      unsigned int put_path_length,
1831                      enum GNUNET_BLOCK_Type type,
1832                      size_t size, const void *data)
1833 {
1834   struct GNS_ResolverHandle *rh = cls;
1835   struct AuthorityChain *ac = rh->ac_tail;
1836   const struct GNUNET_GNSRECORD_Block *block;
1837   struct CacheOps *co;
1838
1839   GNUNET_DHT_get_stop (rh->get_handle);
1840   rh->get_handle = NULL;
1841   GNUNET_CONTAINER_heap_remove_node (rh->dht_heap_node);
1842   rh->dht_heap_node = NULL;
1843   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1844               "Handling response from the DHT\n");
1845   if (size < sizeof (struct GNUNET_GNSRECORD_Block))
1846   {
1847     /* how did this pass DHT block validation!? */
1848     GNUNET_break (0);
1849     rh->proc (rh->proc_cls, 0, NULL);
1850     GNS_resolver_lookup_cancel (rh);
1851     return;
1852   }
1853   block = data;
1854   if (size !=
1855       ntohl (block->purpose.size) +
1856       sizeof (struct GNUNET_CRYPTO_EcdsaPublicKey) +
1857       sizeof (struct GNUNET_CRYPTO_EcdsaSignature))
1858   {
1859     /* how did this pass DHT block validation!? */
1860     GNUNET_break (0);
1861     rh->proc (rh->proc_cls, 0, NULL);
1862     GNS_resolver_lookup_cancel (rh);
1863     return;
1864   }
1865   if (GNUNET_OK !=
1866       GNUNET_GNSRECORD_block_decrypt (block,
1867                                       &ac->authority_info.gns_authority,
1868                                       ac->label,
1869                                       &handle_gns_resolution_result,
1870                                       rh))
1871   {
1872     GNUNET_break_op (0); /* block was ill-formed */
1873     rh->proc (rh->proc_cls, 0, NULL);
1874     GNS_resolver_lookup_cancel (rh);
1875     return;
1876   }
1877   if (0 == GNUNET_TIME_absolute_get_remaining (GNUNET_TIME_absolute_ntoh (block->expiration_time)).rel_value_us)
1878   {
1879     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1880                 "Received expired block from the DHT, will not cache it.\n");
1881     return;
1882   }
1883   /* Cache well-formed blocks */
1884   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1885               "Caching response from the DHT in namestore\n");
1886   co = GNUNET_new (struct CacheOps);
1887   co->namecache_qe_cache = GNUNET_NAMECACHE_block_cache (namecache_handle,
1888                                                          block,
1889                                                          &namecache_cache_continuation,
1890                                                          co);
1891   GNUNET_CONTAINER_DLL_insert (co_head,
1892                                co_tail,
1893                                co);
1894 }
1895
1896
1897 /**
1898  * Process a record that was stored in the namestore.
1899  *
1900  * @param cls closure with the `struct GNS_ResolverHandle`
1901  * @param block block that was stored in the namestore
1902  */
1903 static void
1904 handle_namestore_block_response (void *cls,
1905                                  const struct GNUNET_GNSRECORD_Block *block)
1906 {
1907   struct GNS_ResolverHandle *rh = cls;
1908   struct GNS_ResolverHandle *rx;
1909   struct AuthorityChain *ac = rh->ac_tail;
1910   const char *label = ac->label;
1911   const struct GNUNET_CRYPTO_EcdsaPublicKey *auth = &ac->authority_info.gns_authority;
1912   struct GNUNET_HashCode query;
1913
1914   GNUNET_GNSRECORD_query_from_public_key (auth,
1915                                           label,
1916                                           &query);
1917   GNUNET_assert (NULL != rh->namecache_qe);
1918   rh->namecache_qe = NULL;
1919   if ( (GNUNET_NO == rh->only_cached) &&
1920        ( (NULL == block) ||
1921          (0 == GNUNET_TIME_absolute_get_remaining (GNUNET_TIME_absolute_ntoh (block->expiration_time)).rel_value_us) ) )
1922   {
1923     /* Namestore knows nothing; try DHT lookup */
1924     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1925                 "Starting DHT lookup for `%s' in zone %s\n",
1926                 ac->label,
1927                 GNUNET_GNSRECORD_z2s (&ac->authority_info.gns_authority));
1928     GNUNET_assert (NULL == rh->get_handle);
1929     rh->get_handle = GNUNET_DHT_get_start (dht_handle,
1930                                            GNUNET_BLOCK_TYPE_GNS_NAMERECORD,
1931                                            &query,
1932                                            DHT_GNS_REPLICATION_LEVEL,
1933                                            GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
1934                                            NULL, 0,
1935                                            &handle_dht_response, rh);
1936     rh->dht_heap_node = GNUNET_CONTAINER_heap_insert (dht_lookup_heap,
1937                                                       rh,
1938                                                       GNUNET_TIME_absolute_get ().abs_value_us);
1939     if (GNUNET_CONTAINER_heap_get_size (dht_lookup_heap) > max_allowed_background_queries)
1940     {
1941       /* fail longest-standing DHT request */
1942       rx = GNUNET_CONTAINER_heap_peek (dht_lookup_heap);
1943       GNUNET_assert (NULL != rx);
1944       rx->proc (rx->proc_cls, 0, NULL);
1945       GNS_resolver_lookup_cancel (rx);
1946     }
1947     return;
1948   }
1949   if ( (NULL == block) ||
1950        (0 == GNUNET_TIME_absolute_get_remaining (GNUNET_TIME_absolute_ntoh (block->expiration_time)).rel_value_us) )
1951   {
1952     /* DHT not permitted and no local result, fail */
1953     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1954                 "Resolution failed for `%s' in zone %s (DHT lookup not permitted by configuration)\n",
1955                 ac->label,
1956                 GNUNET_GNSRECORD_z2s (&ac->authority_info.gns_authority));
1957     rh->proc (rh->proc_cls, 0, NULL);
1958     GNS_resolver_lookup_cancel (rh);
1959     return;
1960   }
1961   if (GNUNET_OK !=
1962       GNUNET_GNSRECORD_block_decrypt (block,
1963                                       auth,
1964                                       label,
1965                                       &handle_gns_resolution_result,
1966                                       rh))
1967   {
1968     GNUNET_break_op (0); /* block was ill-formed */
1969     rh->proc (rh->proc_cls, 0, NULL);
1970     GNS_resolver_lookup_cancel (rh);
1971     return;
1972   }
1973 }
1974
1975
1976 /**
1977  * Lookup tail of our authority chain in the namestore.
1978  *
1979  * @param rh query we are processing
1980  */
1981 static void
1982 recursive_gns_resolution_namestore (struct GNS_ResolverHandle *rh)
1983 {
1984   struct AuthorityChain *ac = rh->ac_tail;
1985   struct GNUNET_HashCode query;
1986
1987   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1988               "Starting GNS resolution for `%s' in zone %s\n",
1989               ac->label,
1990               GNUNET_GNSRECORD_z2s (&ac->authority_info.gns_authority));
1991   GNUNET_GNSRECORD_query_from_public_key (&ac->authority_info.gns_authority,
1992                                           ac->label,
1993                                           &query);
1994   rh->namecache_qe = GNUNET_NAMECACHE_lookup_block (namecache_handle,
1995                                                     &query,
1996                                                     &handle_namestore_block_response,
1997                                                     rh);
1998   GNUNET_assert (NULL != rh->namecache_qe);
1999 }
2000
2001
2002 /**
2003  * Function called with the result from a revocation check.
2004  *
2005  * @param cls the `struct GNS_ResovlerHandle`
2006  * @param is_valid #GNUNET_YES if the zone was not yet revoked
2007  */
2008 static void
2009 handle_revocation_result (void *cls,
2010                           int is_valid)
2011 {
2012   struct GNS_ResolverHandle *rh = cls;
2013   struct AuthorityChain *ac = rh->ac_tail;
2014
2015   rh->rev_check = NULL;
2016   if (GNUNET_YES != is_valid)
2017   {
2018     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2019                 _("Zone %s was revoked, resolution fails\n"),
2020                 GNUNET_GNSRECORD_z2s (&ac->authority_info.gns_authority));
2021     rh->proc (rh->proc_cls, 0, NULL);
2022     GNS_resolver_lookup_cancel (rh);
2023     return;
2024   }
2025   recursive_gns_resolution_namestore (rh);
2026 }
2027
2028
2029 /**
2030  * Perform revocation check on tail of our authority chain.
2031  *
2032  * @param rh query we are processing
2033  */
2034 static void
2035 recursive_gns_resolution_revocation (struct GNS_ResolverHandle *rh)
2036 {
2037   struct AuthorityChain *ac = rh->ac_tail;
2038
2039   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2040               "Starting revocation check for zone %s\n",
2041               GNUNET_GNSRECORD_z2s (&ac->authority_info.gns_authority));
2042   rh->rev_check = GNUNET_REVOCATION_query (cfg,
2043                                            &ac->authority_info.gns_authority,
2044                                            &handle_revocation_result,
2045                                            rh);
2046   GNUNET_assert (NULL != rh->rev_check);
2047 }
2048
2049
2050 /**
2051  * Task scheduled to continue with the resolution process.
2052  *
2053  * @param cls the `struct GNS_ResolverHandle` of the resolution
2054  * @param tc task context
2055  */
2056 static void
2057 recursive_resolution (void *cls,
2058                       const struct GNUNET_SCHEDULER_TaskContext *tc)
2059 {
2060   struct GNS_ResolverHandle *rh = cls;
2061
2062   rh->task_id = GNUNET_SCHEDULER_NO_TASK;
2063   if (MAX_RECURSION < rh->loop_limiter++)
2064   {
2065     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2066                 "Encountered unbounded recursion resolving `%s'\n",
2067                 rh->name);
2068     rh->proc (rh->proc_cls, 0, NULL);
2069     GNS_resolver_lookup_cancel (rh);
2070     return;
2071   }
2072   if (GNUNET_YES == rh->ac_tail->gns_authority)
2073     recursive_gns_resolution_revocation (rh);
2074   else
2075     recursive_dns_resolution (rh);
2076 }
2077
2078
2079 /**
2080  * Begin the resolution process from 'name', starting with
2081  * the identification of the zone specified by 'name'.
2082  *
2083  * @param rh resolution to perform
2084  */
2085 static void
2086 start_resolver_lookup (struct GNS_ResolverHandle *rh)
2087 {
2088   struct AuthorityChain *ac;
2089   char *y;
2090   struct in_addr v4;
2091   struct in6_addr v6;
2092
2093   if (1 == inet_pton (AF_INET,
2094                       rh->name,
2095                       &v4))
2096   {
2097     /* name is IPv4 address, pretend it's an A record */
2098     struct GNUNET_GNSRECORD_Data rd;
2099
2100     rd.data = &v4;
2101     rd.data_size = sizeof (v4);
2102     rd.expiration_time = UINT64_MAX;
2103     rd.record_type = GNUNET_DNSPARSER_TYPE_A;
2104     rd.flags = 0;
2105     rh->proc (rh->proc_cls, 1, &rd);
2106     GNS_resolver_lookup_cancel (rh);
2107     return;
2108   }
2109   if (1 == inet_pton (AF_INET6,
2110                       rh->name,
2111                       &v6))
2112   {
2113     /* name is IPv6 address, pretend it's an AAAA record */
2114     struct GNUNET_GNSRECORD_Data rd;
2115
2116     rd.data = &v6;
2117     rd.data_size = sizeof (v6);
2118     rd.expiration_time = UINT64_MAX;
2119     rd.record_type = GNUNET_DNSPARSER_TYPE_AAAA;
2120     rd.flags = 0;
2121     rh->proc (rh->proc_cls, 1, &rd);
2122     GNS_resolver_lookup_cancel (rh);
2123     return;
2124   }
2125   if ( ( (GNUNET_YES == is_canonical (rh->name)) &&
2126          (0 != strcmp (GNUNET_GNS_TLD, rh->name)) ) ||
2127        ( (GNUNET_YES != is_gnu_tld (rh->name)) &&
2128          (GNUNET_YES != is_zkey_tld (rh->name)) ) )
2129   {
2130     /* use standard DNS lookup */
2131     int af;
2132
2133     switch (rh->record_type)
2134     {
2135     case GNUNET_DNSPARSER_TYPE_A:
2136       af = AF_INET;
2137       break;
2138     case GNUNET_DNSPARSER_TYPE_AAAA:
2139       af = AF_INET6;
2140       break;
2141     default:
2142       af = AF_UNSPEC;
2143       break;
2144     }
2145     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2146                 "Doing standard DNS lookup for `%s'\n",
2147                 rh->name);
2148     rh->std_resolve = GNUNET_RESOLVER_ip_get (rh->name,
2149                                               af,
2150                                               DNS_LOOKUP_TIMEOUT,
2151                                               &handle_dns_result,
2152                                               rh);
2153     return;
2154   }
2155   if (is_zkey_tld (rh->name))
2156   {
2157     /* Name ends with ".zkey", try to replace authority zone with zkey
2158        authority */
2159     GNUNET_free (resolver_lookup_get_next_label (rh)); /* will return "zkey" */
2160     y = resolver_lookup_get_next_label (rh); /* will return 'y' coordinate */
2161     if ( (NULL == y) ||
2162          (GNUNET_OK !=
2163           GNUNET_CRYPTO_ecdsa_public_key_from_string (y,
2164                                                       strlen (y),
2165                                                       &rh->authority_zone)) )
2166     {
2167       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2168                   _("Hostname `%s' is not well-formed, resolution fails\n"),
2169                   rh->name);
2170       rh->task_id = GNUNET_SCHEDULER_add_now (&fail_resolution, rh);
2171     }
2172     GNUNET_free_non_null (y);
2173   }
2174   else
2175   {
2176     /* Name ends with ".gnu", eat ".gnu" and continue with resolution */
2177     GNUNET_free (resolver_lookup_get_next_label (rh));
2178   }
2179   ac = GNUNET_new (struct AuthorityChain);
2180   ac->rh = rh;
2181   ac->label = resolver_lookup_get_next_label (rh);
2182   if (NULL == ac->label)
2183     /* name was just "gnu", so we default to label '+' */
2184     ac->label = GNUNET_strdup (GNUNET_GNS_MASTERZONE_STR);
2185   ac->gns_authority = GNUNET_YES;
2186   ac->authority_info.gns_authority = rh->authority_zone;
2187   GNUNET_CONTAINER_DLL_insert_tail (rh->ac_head,
2188                                     rh->ac_tail,
2189                                     ac);
2190   rh->task_id = GNUNET_SCHEDULER_add_now (&recursive_resolution,
2191                                           rh);
2192 }
2193
2194
2195 /**
2196  * Lookup of a record in a specific zone calls lookup result processor
2197  * on result.
2198  *
2199  * @param zone the zone to perform the lookup in
2200  * @param record_type the record type to look up
2201  * @param name the name to look up
2202  * @param shorten_key a private key for use with PSEU import (can be NULL)
2203  * @param only_cached #GNUNET_NO to only check locally not DHT for performance
2204  * @param proc the processor to call on result
2205  * @param proc_cls the closure to pass to @a proc
2206  * @return handle to cancel operation
2207  */
2208 struct GNS_ResolverHandle *
2209 GNS_resolver_lookup (const struct GNUNET_CRYPTO_EcdsaPublicKey *zone,
2210                      uint32_t record_type,
2211                      const char *name,
2212                      const struct GNUNET_CRYPTO_EcdsaPrivateKey *shorten_key,
2213                      int only_cached,
2214                      GNS_ResultProcessor proc, void *proc_cls)
2215 {
2216   struct GNS_ResolverHandle *rh;
2217
2218   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2219               (NULL == shorten_key)
2220               ? "Starting lookup for `%s' with shortening disabled\n"
2221               : "Starting lookup for `%s' with shortening enabled\n",
2222               name);
2223   rh = GNUNET_new (struct GNS_ResolverHandle);
2224   GNUNET_CONTAINER_DLL_insert (rlh_head,
2225                                rlh_tail,
2226                                rh);
2227   rh->authority_zone = *zone;
2228   rh->proc = proc;
2229   rh->proc_cls = proc_cls;
2230   rh->only_cached = only_cached;
2231   rh->record_type = record_type;
2232   rh->name = GNUNET_strdup (name);
2233   rh->name_resolution_pos = strlen (name);
2234   if (NULL != shorten_key)
2235   {
2236     rh->shorten_key = GNUNET_new (struct GNUNET_CRYPTO_EcdsaPrivateKey);
2237     *rh->shorten_key = *shorten_key;
2238   }
2239   start_resolver_lookup (rh);
2240   return rh;
2241 }
2242
2243
2244 /**
2245  * Cancel active resolution (i.e. client disconnected).
2246  *
2247  * @param rh resolution to abort
2248  */
2249 void
2250 GNS_resolver_lookup_cancel (struct GNS_ResolverHandle *rh)
2251 {
2252   struct DnsResult *dr;
2253   struct AuthorityChain *ac;
2254   struct VpnContext *vpn_ctx;
2255
2256   GNUNET_CONTAINER_DLL_remove (rlh_head,
2257                                rlh_tail,
2258                                rh);
2259   while (NULL != (ac = rh->ac_head))
2260   {
2261     GNUNET_CONTAINER_DLL_remove (rh->ac_head,
2262                                  rh->ac_tail,
2263                                  ac);
2264     GNUNET_free (ac->label);
2265     GNUNET_free (ac);
2266   }
2267   if (NULL != rh->g2dc)
2268   {
2269     /* rh->g2dc->rh is NOT in the DLL yet, so to enable us
2270        using GNS_resolver_lookup_cancel here, we need to
2271        add it first... */
2272     if (NULL != rh->g2dc->rh)
2273     {
2274       GNUNET_CONTAINER_DLL_insert (rlh_head,
2275                                    rlh_tail,
2276                                    rh->g2dc->rh);
2277       GNS_resolver_lookup_cancel (rh->g2dc->rh);
2278       rh->g2dc->rh = NULL;
2279     }
2280     GNUNET_free (rh->g2dc->ns);
2281     GNUNET_free (rh->g2dc);
2282     rh->g2dc = NULL;
2283   }
2284   if (GNUNET_SCHEDULER_NO_TASK != rh->task_id)
2285   {
2286     GNUNET_SCHEDULER_cancel (rh->task_id);
2287     rh->task_id = GNUNET_SCHEDULER_NO_TASK;
2288   }
2289   if (NULL != rh->get_handle)
2290   {
2291     GNUNET_DHT_get_stop (rh->get_handle);
2292     rh->get_handle = NULL;
2293   }
2294   if (NULL != rh->dht_heap_node)
2295   {
2296     GNUNET_CONTAINER_heap_remove_node (rh->dht_heap_node);
2297     rh->dht_heap_node = NULL;
2298   }
2299   if (NULL != (vpn_ctx = rh->vpn_ctx))
2300   {
2301     GNUNET_VPN_cancel_request (vpn_ctx->vpn_request);
2302     GNUNET_free (vpn_ctx->rd_data);
2303     GNUNET_free (vpn_ctx);
2304   }
2305   if (NULL != rh->dns_request)
2306   {
2307     GNUNET_DNSSTUB_resolve_cancel (rh->dns_request);
2308     rh->dns_request = NULL;
2309   }
2310   if (NULL != rh->namecache_qe)
2311   {
2312     GNUNET_NAMECACHE_cancel (rh->namecache_qe);
2313     rh->namecache_qe = NULL;
2314   }
2315   if (NULL != rh->rev_check)
2316   {
2317     GNUNET_REVOCATION_query_cancel (rh->rev_check);
2318     rh->rev_check = NULL;
2319   }
2320   if (NULL != rh->std_resolve)
2321   {
2322     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2323                 "Canceling standard DNS resolution\n");
2324     GNUNET_RESOLVER_request_cancel (rh->std_resolve);
2325     rh->std_resolve = NULL;
2326   }
2327   while (NULL != (dr = rh->dns_result_head))
2328   {
2329     GNUNET_CONTAINER_DLL_remove (rh->dns_result_head,
2330                                  rh->dns_result_tail,
2331                                  dr);
2332     GNUNET_free (dr);
2333   }
2334   GNUNET_free_non_null (rh->shorten_key);
2335   GNUNET_free (rh->name);
2336   GNUNET_free (rh);
2337 }
2338
2339
2340 /* ***************** Resolver initialization ********************* */
2341
2342
2343 /**
2344  * Initialize the resolver
2345  *
2346  * @param nc the namecache handle
2347  * @param dht the dht handle
2348  * @param c configuration handle
2349  * @param max_bg_queries maximum number of parallel background queries in dht
2350  */
2351 void
2352 GNS_resolver_init (struct GNUNET_NAMECACHE_Handle *nc,
2353                    struct GNUNET_DHT_Handle *dht,
2354                    const struct GNUNET_CONFIGURATION_Handle *c,
2355                    unsigned long long max_bg_queries)
2356 {
2357   char *dns_ip;
2358
2359   cfg = c;
2360   namecache_handle = nc;
2361   dht_handle = dht;
2362   dht_lookup_heap =
2363     GNUNET_CONTAINER_heap_create (GNUNET_CONTAINER_HEAP_ORDER_MIN);
2364   max_allowed_background_queries = max_bg_queries;
2365   if (GNUNET_OK !=
2366       GNUNET_CONFIGURATION_get_value_string (c,
2367                                              "gns",
2368                                              "DNS_RESOLVER",
2369                                              &dns_ip))
2370   {
2371     /* user did not specify DNS resolver, use 8.8.8.8 */
2372     dns_ip = GNUNET_strdup ("8.8.8.8");
2373   }
2374   dns_handle = GNUNET_DNSSTUB_start (dns_ip);
2375   GNUNET_free (dns_ip);
2376   vpn_handle = GNUNET_VPN_connect (cfg);
2377 }
2378
2379
2380 /**
2381  * Shutdown resolver
2382  */
2383 void
2384 GNS_resolver_done ()
2385 {
2386   struct GNS_ResolverHandle *rh;
2387   struct CacheOps *co;
2388
2389   /* abort active resolutions */
2390   while (NULL != (rh = rlh_head))
2391   {
2392     rh->proc (rh->proc_cls, 0, NULL);
2393     GNS_resolver_lookup_cancel (rh);
2394   }
2395   while (NULL != (co = co_head))
2396   {
2397     GNUNET_CONTAINER_DLL_remove (co_head,
2398                                  co_tail,
2399                                  co);
2400     GNUNET_NAMECACHE_cancel (co->namecache_qe_cache);
2401     GNUNET_free (co);
2402   }
2403   GNUNET_CONTAINER_heap_destroy (dht_lookup_heap);
2404   dht_lookup_heap = NULL;
2405   GNUNET_DNSSTUB_stop (dns_handle);
2406   dns_handle = NULL;
2407   GNUNET_VPN_disconnect (vpn_handle);
2408   vpn_handle = NULL;
2409   dht_handle = NULL;
2410   namecache_handle = NULL;
2411 }
2412
2413
2414 /* *************** common helper functions (do not really belong here) *********** */
2415
2416 /**
2417  * Checks if @a name ends in ".TLD"
2418  *
2419  * @param name the name to check
2420  * @param tld the TLD to check for
2421  * @return GNUNET_YES or GNUNET_NO
2422  */
2423 int
2424 is_tld (const char* name, const char* tld)
2425 {
2426   size_t offset = 0;
2427
2428   if (strlen (name) <= strlen (tld))
2429     return GNUNET_NO;
2430   offset = strlen (name) - strlen (tld);
2431   if (0 != strcmp (name + offset, tld))
2432     return GNUNET_NO;
2433   return GNUNET_YES;
2434 }
2435
2436
2437 /* end of gnunet-service-gns_resolver.c */