-use GPLv3+ consistently
[oweals/gnunet.git] / src / gns / gnunet-service-gns_resolver.c
index 4eba4dae83abdba34b1b181943e6d331ae660624..8d8dba7fa6c70b3bf480d3c7855cb7aa965311f7 100644 (file)
  * @author Christian Grothoff
  *
  * TODO:
- * - recurive GNS resulution
- * - recursive DNS resolution
+ * - GNS: handle special SRV names --- no delegation, direct lookup;
+ *        can likely be done in 'resolver_lookup_get_next_label'.
+ * - GNS: expand ".+" in returned values to the respective absolute
+ *        name using '.zkey'
+ * - DNS: convert additional record types to GNS
  * - shortening triggers
- * - revocation checks (privacy!?)
+ * - revocation checks (make optional: privacy!)
+ * - DNAME support
+ *
+ * Issues:
+ * - We currently go to the DHT simply if we find no local reply; this
+ *   is incorrect; the correct rules for going to DHT are:
+ *
+ * 1. The entry in the DHT is RSL_RECORD_EXPIRED OR
+ * 2. No entry in the NS existed AND
+ * 3. The zone queried is not the local resolver's zone AND
+ * 4. The name that was looked up is '+'
+ *    because if it was any other canonical name we either already queried
+ *    the DHT for the authority in the authority lookup phase (and thus
+ *    would already have an entry in the NS for the record)
+ * 5. We are not in cache only mode
+ *
+ * - We currently never look "into" the records; for example,
+ *   MX, SRV and SOA records may include ".+" that need to be
+ *   handled
+ *
  */
 #include "platform.h"
 #include "gnunet_util_lib.h"
-#include "gnunet_transport_service.h"
 #include "gnunet_dnsstub_lib.h"
 #include "gnunet_dht_service.h"
 #include "gnunet_namestore_service.h"
 #include "gnunet_dns_service.h"
 #include "gnunet_resolver_service.h"
 #include "gnunet_dnsparser_lib.h"
-#include "gns_protocol.h"
 #include "gnunet_gns_service.h"
-#include "gns_common.h"
 #include "gns.h"
 #include "gnunet-service-gns_resolver.h"
+#include "gnunet-service-gns_shorten.h"
 #include "gnunet_vpn_service.h"
 
 
  */
 #define DNS_LOOKUP_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 5)
 
+/**
+ * Default timeout for VPN redirections.
+ */
+#define VPN_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 30)
+
 /**
  * DHT replication level
  */
@@ -118,7 +143,7 @@ struct AuthorityChain
        * (appended to construct the DNS name to resolve;
        * this is NOT the DNS name of the DNS server!).
        */
-      char name[GNUNET_DNSPARSER_MAX_NAME_LENGTH];
+      char name[GNUNET_DNSPARSER_MAX_NAME_LENGTH + 1];
 
       /**
        * IP address of the DNS resolver that is authoritative.
@@ -134,53 +159,6 @@ struct AuthorityChain
 };
 
 
-/**
- * Resolution status indicator
- */
-enum ResolutionStatus
-{
-  /**
-   * the name to lookup exists
-   */
-  RSL_RECORD_EXISTS = 1,
-
-  /**
-   * the name in the record expired
-   */
-  RSL_RECORD_EXPIRED = 2,
-  /**
-   * resolution timed out
-   */
-  RSL_TIMED_OUT = 4,
-  /**
-   * Found VPN delegation
-   */
-  RSL_DELEGATE_VPN = 8,
-  /**
-   * Found NS delegation
-   */
-  RSL_DELEGATE_NS = 16,
-  /**
-   * Found PKEY delegation
-   */
-  RSL_DELEGATE_PKEY = 32,
-  
-  /**
-   * Found CNAME record
-   */
-  RSL_CNAME_FOUND = 64,
-  
-  /**
-   * Found PKEY has been revoked
-   */
-  RSL_PKEY_REVOKED = 128
-};
-
-
 /**
  * A result we got from DNS.
  */
@@ -221,6 +199,39 @@ struct DnsResult
 };
 
 
+/**
+ * Closure for #vpn_allocation_cb.
+ */
+struct VpnContext 
+{
+
+  /** 
+   * Which resolution process are we processing.
+   */
+  struct GNS_ResolverHandle *rh;
+
+  /**
+   * Handle to the VPN request that we were performing.
+   */
+  struct GNUNET_VPN_RedirectionRequest *vpn_request;
+
+  /**
+   * Number of records serialized in 'rd_data'.
+   */
+  unsigned int rd_count;
+  
+  /**
+   * Serialized records.
+   */
+  char *rd_data;
+  
+  /**
+   * Number of bytes in 'rd_data'.
+   */
+  size_t rd_data_size;
+};
+
+
 /**
  * Handle to a currenty pending resolution.  On result (positive or
  * negative) the #GNS_ResultProcessor is called.  
@@ -261,7 +272,7 @@ struct GNS_ResolverHandle
   /**
    * Handle to a VPN request, NULL if none is active.
    */
-  struct GNUNET_VPN_RedirectionRequest *vpn_handle;
+  struct VpnContext *vpn_ctx;
 
   /**
    * Socket for a DNS request, NULL if none is active.
@@ -344,55 +355,6 @@ struct GNS_ResolverHandle
 };
 
 
-/**
- * Handle for a PSEU lookup used to shorten names.
- */
-struct GetPseuAuthorityHandle
-{
-  /**
-   * DLL
-   */
-  struct GetPseuAuthorityHandle *next;
-
-  /**
-   * DLL
-   */
-  struct GetPseuAuthorityHandle *prev;
-
-  /**
-   * Private key of the (shorten) zone to store the resulting
-   * pseudonym in.
-   */
-  struct GNUNET_CRYPTO_EccPrivateKey shorten_zone_key;
-
-  /**
-   * Original label (used if no PSEU record is found).
-   */
-  char label[GNUNET_DNSPARSER_MAX_LABEL_LENGTH + 1];
-
-  /**
-   * The zone for which we are trying to find the PSEU record.
-   */
-  struct GNUNET_CRYPTO_EccPublicKey target_zone;
-
-  /**
-   * Handle for DHT lookups. Should be NULL if no lookups are in progress 
-   */
-  struct GNUNET_DHT_GetHandle *get_handle;
-
-  /**
-   * Handle to namestore request 
-   */
-  struct GNUNET_NAMESTORE_QueueEntry *namestore_task;
-
-  /**
-   * Task to abort DHT lookup operation.
-   */
-  GNUNET_SCHEDULER_TaskIdentifier timeout_task;
-
-};
-
-
 /**
  * Our handle to the namestore service
  */
@@ -423,16 +385,6 @@ static struct GNUNET_CONTAINER_Heap *dht_lookup_heap;
  */
 static unsigned long long max_allowed_background_queries;
 
-/**
- * Head of PSEU/shorten operations list.
- */
-struct GetPseuAuthorityHandle *gph_head;
-
-/**
- * Tail of PSEU/shorten operations list.
- */
-struct GetPseuAuthorityHandle *gph_tail;
-
 /**
  * Head of resolver lookup list
  */
@@ -486,7 +438,7 @@ is_srv (const char *name)
  * even though they consist of multiple labels.
  *
  * Examples:
- * a.b.gads  = not canonical
+ * a.b.gnu  = not canonical
  * a         = canonical
  * _foo._srv = canonical
  * _f.bar    = not canonical
@@ -514,2041 +466,190 @@ is_canonical (const char *name)
 }
 
 
-/* ******************** Shortening logic ************************ */
 
+/* ************************** Resolution **************************** */
 
-/**
- * Cleanup a 'struct GetPseuAuthorityHandle', terminating all
- * pending activities.
- *
- * @param gph handle to terminate
- */
-static void
-free_get_pseu_authority_handle (struct GetPseuAuthorityHandle *gph)
-{
-  if (NULL != gph->get_handle)
-  {
-    GNUNET_DHT_get_stop (gph->get_handle);
-    gph->get_handle = NULL;
-  }
-  if (NULL != gph->namestore_task)
-  {
-    GNUNET_NAMESTORE_cancel (gph->namestore_task);
-    gph->namestore_task = NULL;
-  }
-  if (GNUNET_SCHEDULER_NO_TASK != gph->timeout_task)
-  {
-    GNUNET_SCHEDULER_cancel (gph->timeout_task);
-    gph->timeout_task = GNUNET_SCHEDULER_NO_TASK;
-  }
-  GNUNET_CONTAINER_DLL_remove (gph_head, gph_tail, gph);
-  GNUNET_free (gph);
-}
-
+#if 0
 
-/**
- * Continuation for pkey record creation (shorten)
- *
- * @param cls a GetPseuAuthorityHandle
- * @param success unused
- * @param emsg unused
- */
-static void
-create_pkey_cont (void* cls, 
-                 int32_t success, 
-                 const char *emsg)
-{
-  struct GetPseuAuthorityHandle* gph = cls;
 
-  gph->namestore_task = NULL;
-  free_get_pseu_authority_handle (gph);
-}
+//FIXME maybe define somewhere else?
+#define MAX_SOA_LENGTH sizeof(uint32_t)+sizeof(uint32_t)+sizeof(uint32_t)+sizeof(uint32_t)\
+                        +(GNUNET_DNSPARSER_MAX_NAME_LENGTH*2)
+#define MAX_MX_LENGTH sizeof(uint16_t)+GNUNET_DNSPARSER_MAX_NAME_LENGTH
+#define MAX_SRV_LENGTH (sizeof(uint16_t)*3)+GNUNET_DNSPARSER_MAX_NAME_LENGTH
 
 
 /**
- * Namestore calls this function if we have record for this name.
- * (or with rd_count=0 to indicate no matches).
+ * Exands a name ending in .+ with the zone of origin.
+ * FIXME: funky api: 'dest' must be large enough to hold
+ * the result; this is a bit yucky...
  *
- * @param cls the pending query
- * @param key the key of the zone we did the lookup
- * @param name the name for which we need an authority
- * @param rd_count the number of records with 'name'
- * @param rd the record data
+ * @param dest destination buffer
+ * @param src the .+ name
+ * @param repl the string to replace the + with
  */
 static void
-process_pseu_lookup_ns (void *cls,
-                       const struct GNUNET_CRYPTO_EccPrivateKey *key,
-                       const char *name, 
-                       unsigned int rd_count,
-                       const struct GNUNET_NAMESTORE_RecordData *rd)
+expand_plus (char* dest, 
+            const char* src, 
+            const char* repl)
 {
-  struct GetPseuAuthorityHandle *gph = cls;
-  struct GNUNET_NAMESTORE_RecordData new_pkey;
-  struct GNUNET_CRYPTO_EccPublicKey pub;
+  char* pos;
+  size_t s_len = strlen (src) + 1;
 
-  gph->namestore_task = NULL;
-  if (rd_count > 0)
+  //Eh? I guess this is at least strlen ('x.+') == 3 FIXME
+  if (3 > s_len)
   {
+    /* no postprocessing */
     GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-               "Name `%s' already taken, cannot shorten.\n", 
-              name);
-    /* if this was not yet the original label, try one more
-       time, this time not using PSEU but the original label */
-    if (0 == strcmp (name,
-                    gph->label))
-    {
-      free_get_pseu_authority_handle (gph);
-    }
-    else
-    {
-      GNUNET_CRYPTO_ecc_key_get_public (&gph->shorten_zone_key,
-                                       &pub);
-      gph->namestore_task = GNUNET_NAMESTORE_lookup (namestore_handle,
-                                                    &pub,
-                                                    gph->label,
-                                                    &process_pseu_lookup_ns,
-                                                    gph);
-    }
+               "GNS_POSTPROCESS: %s too short\n", src);
+    memcpy (dest, src, s_len);
     return;
   }
-  /* name is available */
-  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-             "Shortening `%s' to `%s'\n", 
-             GNUNET_NAMESTORE_z2s (&gph->target_zone),
-             name);
-  new_pkey.expiration_time = UINT64_MAX;
-  new_pkey.data_size = sizeof (struct GNUNET_CRYPTO_EccPublicKey);
-  new_pkey.data = &gph->target_zone;
-  new_pkey.record_type = GNUNET_NAMESTORE_TYPE_PKEY;
-  new_pkey.flags = GNUNET_NAMESTORE_RF_AUTHORITY
-                 | GNUNET_NAMESTORE_RF_PRIVATE
-                 | GNUNET_NAMESTORE_RF_PENDING;
-  gph->namestore_task 
-    = GNUNET_NAMESTORE_records_store (namestore_handle,
-                                     &gph->shorten_zone_key,
-                                     name,
-                                     1, &new_pkey,
-                                     &create_pkey_cont, gph);
-}
-
-
-/**
- * Process result of a DHT lookup for a PSEU record.
- *
- * @param gph the handle to our shorten operation
- * @param pseu the pseu result or NULL
- */
-static void
-process_pseu_result (struct GetPseuAuthorityHandle* gph, 
-                    const char *pseu)
-{
-  struct GNUNET_CRYPTO_EccPublicKey pub;
-
-  GNUNET_CRYPTO_ecc_key_get_public (&gph->shorten_zone_key,
-                                   &pub);
-  if (NULL == pseu)
+  if (0 == strcmp (src + s_len - 3, ".+"))
   {
-    /* no PSEU found, try original label */
     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                "No PSEU found, trying original label `%s' instead.\n",
-               gph->label);
-    gph->namestore_task = GNUNET_NAMESTORE_lookup (namestore_handle,
-                                                  &pub,
-                                                  gph->label,
-                                                  &process_pseu_lookup_ns,
-                                                  gph);
-    return;
+               "GNS_POSTPROCESS: Expanding .+ in %s\n", 
+               src);
+    memset (dest, 0, s_len + strlen (repl) + strlen(GNUNET_GNS_TLD));
+    strcpy (dest, src);
+    pos = dest + s_len - 2;
+    strcpy (pos, repl);
+    pos += strlen (repl);
+    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+               "GNS_POSTPROCESS: Expanded to %s\n", 
+               dest);
+  }
+  else
+  {
+    GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
+               "GNS_POSTPROCESS: No postprocessing for %s\n", src);
+    memcpy (dest, src, s_len);
   }
-  
-  /* check if 'pseu' is taken */
-  gph->namestore_task = GNUNET_NAMESTORE_lookup (namestore_handle,
-                                                &pub,
-                                                pseu,
-                                                &process_pseu_lookup_ns,
-                                                gph);
-}
-
-
-/**
- * Handle timeout for DHT request during shortening.
- *
- * @param cls the request handle as closure
- * @param tc the task context
- */
-static void
-handle_auth_discovery_timeout (void *cls,
-                               const struct GNUNET_SCHEDULER_TaskContext *tc)
-{
-  struct GetPseuAuthorityHandle *gph = cls;
-
-  gph->timeout_task = GNUNET_SCHEDULER_NO_TASK;
-  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-              "DHT lookup for PSEU query timed out.\n");
-  GNUNET_DHT_get_stop (gph->get_handle);
-  gph->get_handle = NULL;
-  process_pseu_result (gph, NULL);
 }
 
 
 /**
- * Handle decrypted records from DHT result.
- *
- * @param cls closure with our 'struct GetPseuAuthorityHandle'
- * @param rd_count number of entries in 'rd' array
- * @param rd array of records with data to store
+ * finish lookup
  */
 static void
-process_auth_records (void *cls,
-                     unsigned int rd_count,
-                     const struct GNUNET_NAMESTORE_RecordData *rd)
+finish_lookup (struct ResolverHandle *rh,
+               struct RecordLookupHandle* rlh,
+               unsigned int rd_count,
+               const struct GNUNET_NAMESTORE_RecordData *rd)
 {
-  struct GetPseuAuthorityHandle *gph = cls;
   unsigned int i;
+  char new_rr_data[GNUNET_DNSPARSER_MAX_NAME_LENGTH];
+  char new_mx_data[MAX_MX_LENGTH];
+  char new_soa_data[MAX_SOA_LENGTH];
+  char new_srv_data[MAX_SRV_LENGTH];
+  struct GNUNET_TUN_DnsSrvRecord *old_srv;
+  struct GNUNET_TUN_DnsSrvRecord *new_srv;
+  struct GNUNET_TUN_DnsSoaRecord *old_soa;
+  struct GNUNET_TUN_DnsSoaRecord *new_soa;
+  struct GNUNET_NAMESTORE_RecordData p_rd[rd_count];
+  char* repl_string;
+  char* pos;
+  unsigned int offset;
 
-  for (i=0; i < rd_count; i++)
+  if (GNUNET_SCHEDULER_NO_TASK != rh->timeout_task)
   {
-    if (GNUNET_NAMESTORE_TYPE_PSEU == rd[i].record_type)
-    {
-      /* found pseu */
-      process_pseu_result (gph, 
-                          (const char *) rd[i].data);
-      return;
-    }
+    GNUNET_SCHEDULER_cancel(rh->timeout_task);
+    rh->timeout_task = GNUNET_SCHEDULER_NO_TASK;
   }
-  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-              "No PSEU record found in DHT reply.\n");
-  process_pseu_result (gph, NULL);
-}
-
 
-/**
- * Function called when we find a PSEU entry in the DHT
- *
- * @param cls the request handle
- * @param exp lifetime
- * @param key the key the record was stored under
- * @param get_path get path
- * @param get_path_length get path length
- * @param put_path put path
- * @param put_path_length put path length
- * @param type the block type
- * @param size the size of the record
- * @param data the record data
- */
-static void
-process_auth_discovery_dht_result (void* cls,
-                                   struct GNUNET_TIME_Absolute exp,
-                                   const struct GNUNET_HashCode *key,
-                                   const struct GNUNET_PeerIdentity *get_path,
-                                   unsigned int get_path_length,
-                                   const struct GNUNET_PeerIdentity *put_path,
-                                   unsigned int put_path_length,
-                                   enum GNUNET_BLOCK_Type type,
-                                   size_t size,
-                                   const void *data)
-{
-  struct GetPseuAuthorityHandle *gph = cls;
-  const struct GNUNET_NAMESTORE_Block *block;
+  GNUNET_CONTAINER_DLL_remove (rlh_head, rlh_tail, rh);
 
-  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-              "Got DHT result for PSEU request\n");
-  GNUNET_DHT_get_stop (gph->get_handle);
-  gph->get_handle = NULL;
-  GNUNET_SCHEDULER_cancel (gph->timeout_task);
-  gph->timeout_task = GNUNET_SCHEDULER_NO_TASK;
+  if (0 < rd_count)
+    memcpy(p_rd, rd, rd_count*sizeof(struct GNUNET_NAMESTORE_RecordData));
 
-  if (NULL == data)
-  {
-    /* is this allowed!? */
-    GNUNET_break (0);
-    process_pseu_result (gph, NULL);
-    return;
-  }
-  if (size < sizeof (struct GNUNET_NAMESTORE_Block))
-  {
-    /* how did this pass DHT block validation!? */
-    GNUNET_break (0);
-    process_pseu_result (gph, NULL);
-    return;   
-  }
-  block = data;
-  if (size !=
-      ntohs (block->purpose.size) + 
-      sizeof (struct GNUNET_CRYPTO_EccPublicKey) +
-      sizeof (struct GNUNET_CRYPTO_EccSignature))
-  {
-    /* how did this pass DHT block validation!? */
-    GNUNET_break (0);
-    process_pseu_result (gph, NULL);
-    return;   
-  }
-  if (GNUNET_OK !=
-      GNUNET_NAMESTORE_block_decrypt (block,
-                                     &gph->target_zone,
-                                     GNUNET_GNS_TLD_PLUS,
-                                     &process_auth_records,
-                                     gph))
+  for (i = 0; i < rd_count; i++)
   {
-    /* other peer encrypted invalid block, complain */
-    GNUNET_break_op (0);
-    process_pseu_result (gph, NULL);
-    return;   
-  }
-}
+    
+    if ((GNUNET_DNSPARSER_TYPE_NS != rd[i].record_type) &&
+        (GNUNET_DNSPARSER_TYPE_PTR != rd[i].record_type) &&
+        (GNUNET_DNSPARSER_TYPE_CNAME != rd[i].record_type) &&
+        (GNUNET_DNSPARSER_TYPE_MX != rd[i].record_type) &&
+        (GNUNET_DNSPARSER_TYPE_SOA != rd[i].record_type) &&
+        (GNUNET_DNSPARSER_TYPE_SRV != rd[i].record_type))
+    {
+      p_rd[i].data = rd[i].data;
+      continue;
+    }
 
+    /**
+     * for all those records we 'should'
+     * also try to resolve the A/AAAA records (RFC1035)
+     * This is a feature and not important
+     */
+    
+    GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
+               "GNS_POSTPROCESS: Postprocessing\n");
+    if (0 == strcmp(rh->name, GNUNET_GNS_MASTERZONE_STR))
+      repl_string = rlh->name;
+    else
+      repl_string = rlh->name+strlen(rh->name)+1;
 
-/**
- * Callback called by namestore for a zone to name result.  We're
- * trying to see if a short name for a given zone already exists.
- *
- * @param cls the closure
- * @param zone_key the zone we queried
- * @param name the name found or NULL
- * @param rd_len number of records for the name
- * @param rd the record data (PKEY) for the name
- */
-static void
-process_zone_to_name_discover (void *cls,
-                              const struct GNUNET_CRYPTO_EccPrivateKey *zone_key,
-                              const char *name,
-                              unsigned int rd_len,
-                              const struct GNUNET_NAMESTORE_RecordData *rd)
-{
-  struct GetPseuAuthorityHandle* gph = cls;
-  struct GNUNET_HashCode lookup_key;
-  
-  gph->namestore_task = NULL;
-  if (0 != rd_len)
-  {
-    /* we found a match in our own zone */
-    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-               "Shortening aborted, name `%s' already reserved for the zone\n",
-               name);
-    free_get_pseu_authority_handle (gph);
-    return;
-  }
-  /* record does not yet exist, go into DHT to find PSEU record */
-  GNUNET_NAMESTORE_query_from_public_key (&gph->target_zone,
-                                         GNUNET_GNS_TLD_PLUS,                                    
-                                         &lookup_key);
-  gph->timeout_task = GNUNET_SCHEDULER_add_delayed (DHT_LOOKUP_TIMEOUT,
-                                                   &handle_auth_discovery_timeout, 
-                                                   gph);
-  gph->get_handle = GNUNET_DHT_get_start (dht_handle,
-                                         GNUNET_BLOCK_TYPE_GNS_NAMERECORD,
-                                         &lookup_key,
-                                         DHT_GNS_REPLICATION_LEVEL,
-                                         GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
-                                         NULL, 0,
-                                         &process_auth_discovery_dht_result,
-                                         gph);
-}
-
-
-/**
- * Start shortening algorithm, try to allocate a nice short
- * canonical name for @a pub in @a shorten_zone, using
- * @a original_label as one possible suggestion.
- *
- * @param original_label original label for the zone
- * @param pub public key of the zone to shorten
- * @param shorten_zone private key of the target zone for the new record
- */
-static void
-start_shorten (const char *original_label,
-              const struct GNUNET_CRYPTO_EccPublicKey *pub,
-               const struct GNUNET_CRYPTO_EccPrivateKey *shorten_zone)
-{
-  struct GetPseuAuthorityHandle *gph;
-  
-  if (strlen (original_label) > GNUNET_DNSPARSER_MAX_LABEL_LENGTH)
-  {
-    GNUNET_break (0);
-    return;
-  }
-  gph = GNUNET_new (struct GetPseuAuthorityHandle);
-  gph->shorten_zone_key = *shorten_zone;
-  gph->target_zone = *pub;
-  strcpy (gph->label, original_label);
-  GNUNET_CONTAINER_DLL_insert (gph_head, gph_tail, gph);
-  /* first, check if we *already* have a record for this zone */
-  gph->namestore_task = GNUNET_NAMESTORE_zone_to_name (namestore_handle,
-                                                       shorten_zone,
-                                                       pub,
-                                                       &process_zone_to_name_discover,
-                                                       gph);
-}
-
-
-/* ************************** Resolution **************************** */
-
-#if 0
-
-
-/**
- * Namestore calls this function if we have record for this name.
- * (or with rd_count=0 to indicate no matches)
- *
- * @param cls the pending query
- * @param key the key of the zone we did the lookup
- * @param expiration expiration date of the namestore entry
- * @param name the name for which we need an authority
- * @param rd_count the number of records with 'name'
- * @param rd the record data
- * @param signature the signature of the authority for the record data
- */
-static void
-process_record_result_ns (void* cls,
-                          const struct GNUNET_CRYPTO_EccPublicKey *key,
-                          struct GNUNET_TIME_Absolute expiration,
-                          const char *name, unsigned int rd_count,
-                          const struct GNUNET_NAMESTORE_RecordData *rd,
-                          const struct GNUNET_CRYPTO_EccSignature *signature)
-{
-  struct ResolverHandle *rh = cls;
-  struct RecordLookupHandle *rlh = rh->proc_cls;
-  struct GNUNET_TIME_Relative remaining_time;
-  struct GNUNET_CRYPTO_ShortHashCode zone;
-  struct GNUNET_TIME_Absolute et;
-  unsigned int i;
-
-  rh->namestore_task = NULL;
-  GNUNET_CRYPTO_short_hash (key,
-                           sizeof (struct GNUNET_CRYPTO_EccPublicKey),
-                           &zone);
-  remaining_time = GNUNET_TIME_absolute_get_remaining (expiration);
-  rh->status = 0;
-  if (NULL != name)
-  {
-    rh->status |= RSL_RECORD_EXISTS;
-    if (remaining_time.rel_value_us == 0)
-      rh->status |= RSL_RECORD_EXPIRED;
-  }
-  if (0 == rd_count)
-  {
-    /**
-     * Lookup terminated and no results
-     */
-    GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-               "GNS_PHASE_REC-%llu: Namestore lookup for %s terminated without results\n",
-               rh->id, name);
-
-    GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-               "GNS_PHASE_REC-%llu: Record %s unknown in namestore\n",
-               rh->id, rh->name);
-    /**
-     * Our zone and no result? Cannot resolve TT
-     */
-    rh->proc(rh->proc_cls, rh, 0, NULL);
-    return;
-
-  }
-  GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-             "GNS_PHASE_REC-%llu: Processing additional result %s from namestore\n",
-             rh->id, name);
-  for (i = 0; i < rd_count;i++)
-  {
-    if (rd[i].record_type != rlh->record_type)
-      continue;
-
-    if (ignore_pending_records &&
-        (rd[i].flags & GNUNET_NAMESTORE_RF_PENDING))
-    {
-      GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-                 "GNS_PHASE_REC-%llu: Record %s is awaiting user confirmation. Skipping\n",
-                 rh->id, name);
-      continue;
-    }
-    
-    //FIXME: eh? do I have to handle this here?
-    GNUNET_break (0 == (rd[i].flags & GNUNET_NAMESTORE_RF_RELATIVE_EXPIRATION));
-    et.abs_value_us = rd[i].expiration_time;
-    if (0 == (GNUNET_TIME_absolute_get_remaining (et)).rel_value_us)
-    {
-      GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-                 "GNS_PHASE_REC-%llu: This record is expired. Skipping\n",
-                 rh->id);
-      continue;
-    }
-    rh->answered++;
-  }
-
-  /**
-   * no answers found
-   */
-  if (0 == rh->answered)
-  {
-    GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, 
-               "GNS_PHASE_REC-%llu: No answers found. This is odd!\n", rh->id);
-    rh->proc(rh->proc_cls, rh, 0, NULL);
-    return;
-  }
-
-  GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-             "GNS_PHASE_REC-%llu: Found %d answer(s) to query in %d records!\n",
-             rh->id, rh->answered, rd_count);
-  rh->proc(rh->proc_cls, rh, rd_count, rd);
-}
-
-
-/**
- * VPN redirect result callback
- *
- * @param cls the resolver handle
- * @param af the requested address family
- * @param address in_addr(6) respectively
- */
-static void
-process_record_result_vpn (void* cls, int af, const void *address)
-{
-  struct ResolverHandle *rh = cls;
-  struct RecordLookupHandle *rlh = rh->proc_cls;
-  struct GNUNET_NAMESTORE_RecordData rd;
-
-  GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-             "GNS_PHASE_REC_VPN-%llu: Got answer from VPN to query!\n",
-             rh->id);
-  if (AF_INET == af)
-  {
-    GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-               "GNS_PHASE_REC-%llu: Answer is IPv4!\n",
-               rh->id);
-    if (GNUNET_DNSPARSER_TYPE_A != rlh->record_type)
-    {
-      GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-                 "GNS_PHASE_REC-%llu: Requested record is not IPv4!\n",
-                 rh->id);
-      rh->proc (rh->proc_cls, rh, 0, NULL);
-      return;
-    }
-    rd.record_type = GNUNET_DNSPARSER_TYPE_A;
-    rd.expiration_time = UINT64_MAX; /* FIXME: should probably pick something shorter... */
-    rd.data = address;
-    rd.data_size = sizeof (struct in_addr);
-    rd.flags = 0;
-    rh->proc (rh->proc_cls, rh, 1, &rd);
-    return;
-  }
-  else if (AF_INET6 == af)
-  {
-    GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-               "GNS_PHASE_REC-%llu: Answer is IPv6!\n",
-               rh->id);
-    if (GNUNET_DNSPARSER_TYPE_AAAA != rlh->record_type)
-    {
-      GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-                 "GNS_PHASE_REC-%llu: Requested record is not IPv6!\n",
-                 rh->id);
-      rh->proc (rh->proc_cls, rh, 0, NULL);
-      return;
-    }
-    rd.record_type = GNUNET_DNSPARSER_TYPE_AAAA;
-    rd.expiration_time = UINT64_MAX; /* FIXME: should probably pick something shorter... */
-    rd.data = address;
-    rd.data_size = sizeof (struct in6_addr);
-    rd.flags = 0;
-    rh->proc (rh->proc_cls, rh, 1, &rd);
-    return;
-  }
-
-  GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-             "GNS_PHASE_REC-%llu: Got garbage from VPN!\n",
-             rh->id);
-  rh->proc (rh->proc_cls, rh, 0, NULL);
-}
-
-
-/**
- * Process VPN lookup result for record
- *
- * @param cls the record lookup handle
- * @param rh resolver handle
- * @param rd_count number of results (1)
- * @param rd record data containing the result
- */
-static void
-handle_record_vpn (void* cls, struct ResolverHandle *rh,
-                   unsigned int rd_count,
-                   const struct GNUNET_NAMESTORE_RecordData *rd)
-{
-  struct RecordLookupHandle* rlh = cls;
-  
-  if (0 == rd_count)
-  {
-    GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-               "GNS_PHASE_REC_VPN-%llu: VPN returned no records. (status: %d)!\n",
-               rh->id,
-               rh->status);
-    /* give up, cannot resolve */
-    finish_lookup(rh, rlh, 0, NULL);
-    return;
-  }
-
-  /* results found yay */
-  GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-             "GNS_PHASE_REC_VPN-%llu: Record resolved from VPN!\n",
-            rh->id);
-
-  finish_lookup(rh, rlh, rd_count, rd);
-}
-
-
-/**
- * The final phase of resoution.
- * We found a NS RR and want to resolve via DNS
- *
- * @param rh the pending lookup handle
- * @param rd_count length of record data
- * @param rd record data containing VPN RR
- */
-static void
-resolve_record_dns (struct ResolverHandle *rh,
-                    unsigned int rd_count,
-                    const struct GNUNET_NAMESTORE_RecordData *rd)
-{
-  struct RecordLookupHandle *rlh = rh->proc_cls;
-  struct GNUNET_DNSPARSER_Query query;
-  struct GNUNET_DNSPARSER_Packet packet;
-  struct GNUNET_DNSPARSER_Flags flags;
-  struct in_addr dnsip;
-  struct sockaddr_in addr;
-  struct sockaddr *sa;
-  unsigned int i;
-
-  memset (&packet, 0, sizeof (struct GNUNET_DNSPARSER_Packet));
-  memset (rh->dns_name, 0, sizeof (rh->dns_name));
-  
-  /* We cancel here as to not include the ns lookup in the timeout */
-  if (GNUNET_SCHEDULER_NO_TASK != rh->timeout_task)
-  {
-    GNUNET_SCHEDULER_cancel(rh->timeout_task);
-    rh->timeout_task = GNUNET_SCHEDULER_NO_TASK;
-  }
-  /* Start shortening */
-  if ((NULL != rh->priv_key) &&
-      (GNUNET_YES == is_canonical (rh->name)))
-  {
-    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-             "GNS_PHASE_REC_DNS-%llu: Trying to shorten authority chain\n",
-             rh->id);
-    start_shorten (rh->authority_chain_head,
-                   rh->priv_key);
-  }
-
-  for (i = 0; i < rd_count; i++)
-  {
-    /* Synthesize dns name */
-    if (GNUNET_DNSPARSER_TYPE_NS == rd[i].record_type)
-    {
-      strcpy (rh->dns_zone, (char*)rd[i].data);
-      if (0 == strcmp (rh->name, ""))
-        strcpy (rh->dns_name, (char*)rd[i].data);
-      else
-        sprintf (rh->dns_name, "%s.%s", rh->name, (char*)rd[i].data);
-    }
-    /* The glue */
-    if (GNUNET_DNSPARSER_TYPE_A == rd[i].record_type)
-      /* need to use memcpy as .data may be unaligned */
-      memcpy (&dnsip, rd[i].data, sizeof (dnsip));
-  }
-  
-  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-              "GNS_PHASE_REC_DNS-%llu: Looking up `%s' from `%s'\n",
-              rh->id,
-              rh->dns_name,
-              inet_ntoa (dnsip));
-  rh->dns_sock = GNUNET_NETWORK_socket_create (AF_INET, SOCK_DGRAM, 0);
-  if (NULL == rh->dns_sock)
-  {
-    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                "GNS_PHASE_REC_DNS-%llu: Error creating udp socket for dns!\n",
-                rh->id);
-    finish_lookup (rh, rlh, 0, NULL);
-    return;
-  }
-
-  memset (&addr, 0, sizeof (struct sockaddr_in));
-  sa = (struct sockaddr *) &addr;
-  sa->sa_family = AF_INET;
-  if (GNUNET_OK != GNUNET_NETWORK_socket_bind (rh->dns_sock,
-                                               sa,
-                                               sizeof (struct sockaddr_in),
-                                               0))
-  {
-    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                "GNS_PHASE_REC_DNS-%llu: Error binding UDP socket for DNS lookup!\n",
-                rh->id);
-    finish_lookup (rh, rlh, 0, NULL);
-    return;
-  }
-  query.name = rh->dns_name;
-  query.type = rlh->record_type;
-  query.class = GNUNET_DNSPARSER_CLASS_INTERNET;
-  memset (&flags, 0, sizeof (flags));
-  flags.recursion_desired = 1;
-  flags.checking_disabled = 1;
-  packet.queries = &query;
-  packet.answers = NULL;
-  packet.authority_records = NULL;
-  packet.num_queries = 1;
-  packet.num_answers = 0;
-  packet.num_authority_records = 0;
-  packet.num_additional_records = 0;
-  packet.flags = flags;
-  packet.id = rh->id;
-  if (GNUNET_OK != GNUNET_DNSPARSER_pack (&packet,
-                                          UINT16_MAX,
-                                          &rh->dns_raw_packet,
-                                          &rh->dns_raw_packet_size))
-  {
-    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                "GNS_PHASE_REC_DNS-%llu: Creating raw dns packet!\n",
-                rh->id);
-    GNUNET_NETWORK_socket_close (rh->dns_sock);
-    finish_lookup (rh, rlh, 0, NULL);
-    return;
-  }
-
-  rh->dns_addr.sin_family = AF_INET;
-  rh->dns_addr.sin_port = htons (53); //domain
-  rh->dns_addr.sin_addr = dnsip;
-#if HAVE_SOCKADDR_IN_SIN_LEN
-  rh->dns_addr.sin_len = (u_char) sizeof (struct sockaddr_in);
-#endif
-  send_dns_packet (rh);
-}
-
-
-/**
- * The final phase of resoution.
- * We found a VPN RR and want to request an IPv4/6 address
- *
- * @param rh the pending lookup handle
- * @param rd_count length of record data
- * @param rd record data containing VPN RR
- */
-static void
-resolve_record_vpn (struct ResolverHandle *rh,
-                    unsigned int rd_count,
-                    const struct GNUNET_NAMESTORE_RecordData *rd)
-{
-  struct RecordLookupHandle *rlh = rh->proc_cls;
-  struct GNUNET_HashCode serv_desc;
-  struct vpn_data* vpn;
-  int af;
-  
-  /* We cancel here as to not include the ns lookup in the timeout */
-  if (GNUNET_SCHEDULER_NO_TASK != rh->timeout_task)
-  {
-    GNUNET_SCHEDULER_cancel(rh->timeout_task);
-    rh->timeout_task = GNUNET_SCHEDULER_NO_TASK;
-  }
-  /* Start shortening */
-  if ((NULL != rh->priv_key) &&
-      (GNUNET_YES == is_canonical (rh->name)))
-  {
-    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-             "GNS_PHASE_REC_VPN-%llu: Trying to shorten authority chain\n",
-             rh->id);
-    start_shorten (rh->authority_chain_head,
-                   rh->priv_key);
-  }
-
-  vpn = (struct vpn_data*)rd->data;
-  GNUNET_CRYPTO_hash ((char*)&vpn[1],
-                      strlen ((char*)&vpn[1]) + 1,
-                      &serv_desc);
-  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-              "GNS_PHASE_REC_VPN-%llu: proto %hu peer %s!\n",
-              rh->id,
-              ntohs (vpn->proto),
-              GNUNET_h2s (&vpn->peer));
-
-  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-              "GNS_PHASE_REC_VPN-%llu: service %s -> %s!\n",
-              rh->id,
-              (char*)&vpn[1],
-              GNUNET_h2s (&serv_desc));
-  rh->proc = &handle_record_vpn;
-  if (GNUNET_DNSPARSER_TYPE_A == rlh->record_type)
-    af = AF_INET;
-  else
-    af = AF_INET6;
-#ifndef WINDOWS
-  if (NULL == vpn_handle)
-  {
-    vpn_handle = GNUNET_VPN_connect (cfg);
-    if (NULL == vpn_handle)
-    {
-      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                  "GNS_PHASE_INIT: Error connecting to VPN!\n");
-      finish_lookup (rh, rh->proc_cls, 0, NULL);
-      return;
-    }
-  }
-
-  rh->vpn_handle = GNUNET_VPN_redirect_to_peer (vpn_handle,
-                                               af, ntohs (vpn->proto),
-                                               (struct GNUNET_PeerIdentity *)&vpn->peer,
-                                               &serv_desc,
-                                               GNUNET_NO, //nac
-                                               GNUNET_TIME_UNIT_FOREVER_ABS, //FIXME
-                                               &process_record_result_vpn,
-                                               rh);
-#else
-  GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
-             "Error connecting to VPN (not available on W32 yet)\n");
-  finish_lookup (rh, rh->proc_cls, 0, NULL);  
-#endif
-}
-
-
-/**
- * The final phase of resolution.
- * rh->name is a name that is canonical and we do not have a delegation.
- * Query namestore for this record
- *
- * @param rh the pending lookup handle
- */
-static void
-resolve_record_ns(struct ResolverHandle *rh)
-{
-  struct RecordLookupHandle *rlh = rh->proc_cls;
-  
-  /* We cancel here as to not include the ns lookup in the timeout */
-  if (GNUNET_SCHEDULER_NO_TASK != rh->timeout_task)
-  {
-    GNUNET_SCHEDULER_cancel(rh->timeout_task);
-    rh->timeout_task = GNUNET_SCHEDULER_NO_TASK;
-  }
-  /* Start shortening */
-  if ((NULL != rh->priv_key) &&
-     (GNUNET_YES == is_canonical (rh->name)))
-  {
-    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-             "GNS_PHASE_REC-%llu: Trying to shorten authority chain\n",
-             rh->id);
-    start_shorten (rh->authority_chain_head,
-                   rh->priv_key);
-  }
-  
-  /**
-   * Try to resolve this record in our namestore.
-   * The name to resolve is now in rh->authority_name
-   * since we tried to resolve it to an authority
-   * and failed.
-   **/
-  rh->namestore_task = GNUNET_NAMESTORE_lookup_record(namestore_handle,
-                                 &rh->authority,
-                                 rh->name,
-                                 rlh->record_type,
-                                 &process_record_result_ns,
-                                 rh);
-}
-
-
-/**
- * This is a callback function that checks for key revocation
- *
- * @param cls the pending query
- * @param key the key of the zone we did the lookup
- * @param expiration expiration date of the record data set in the namestore
- * @param name the name for which we need an authority
- * @param rd_count the number of records with 'name'
- * @param rd the record data
- * @param signature the signature of the authority for the record data
- */
-static void
-process_pkey_revocation_result_ns (void *cls,
-                                  const struct GNUNET_CRYPTO_EccPublicKey *key,
-                                  struct GNUNET_TIME_Absolute expiration,
-                                  const char *name,
-                                  unsigned int rd_count,
-                                  const struct GNUNET_NAMESTORE_RecordData *rd,
-                                  const struct GNUNET_CRYPTO_EccSignature *signature)
-{
-  struct ResolverHandle *rh = cls;
-  struct GNUNET_TIME_Relative remaining_time;
-  int i;
-  
-  rh->namestore_task = NULL;
-  remaining_time = GNUNET_TIME_absolute_get_remaining (expiration);
-  
-  for (i = 0; i < rd_count; i++)
-  {
-    if (GNUNET_NAMESTORE_TYPE_REV == rd[i].record_type)
-    {
-      GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-                 "GNS_PHASE_DELEGATE_REV-%llu: Zone has been revoked.\n",
-                 rh->id);
-      rh->status |= RSL_PKEY_REVOKED;
-      rh->proc (rh->proc_cls, rh, 0, NULL);
-      return;
-    }
-  }
-  
-  if ((NULL == name) ||
-      (0 == remaining_time.rel_value_us))
-  {
-    GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-          "GNS_PHASE_DELEGATE_REV-%llu: + Records don't exist or are expired.\n",
-          rh->id, name);
-
-    if (GNUNET_TIME_UNIT_FOREVER_REL.rel_value_us != rh->timeout.rel_value_us)
-    {
-      GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-        "GNS_PHASE_DELEGATE_REV-%llu: Starting background lookup for %s type %d\n",
-        rh->id, "+.gads", GNUNET_NAMESTORE_TYPE_REV);
-
-      gns_resolver_lookup_record(rh->authority,
-                                 rh->private_local_zone,
-                                 GNUNET_NAMESTORE_TYPE_REV,
-                                 GNUNET_GNS_TLD,
-                                 NULL,
-                                 GNUNET_TIME_UNIT_FOREVER_REL,
-                                 GNUNET_NO,
-                                 &background_lookup_result_processor,
-                                 NULL);
-    }
-  }
- GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-             "GNS_PHASE_DELEGATE_REV-%llu: Revocation check passed\n",
-             rh->id);
-  /**
-   * We are done with PKEY resolution if name is empty
-   * else resolve again with new authority
-   */
-  if (strcmp (rh->name, "") == 0)
-    rh->proc (rh->proc_cls, rh, rh->rd_count, &rh->rd);
-  else
-    resolve_delegation_ns (rh);
-}
-
-
-/**
- * Function called when we get a result from the dht
- * for our query. Recursively tries to resolve authorities
- * for name in DHT.
- *
- * @param cls the request handle
- * @param exp lifetime
- * @param key the key the record was stored under
- * @param get_path get path
- * @param get_path_length get path length
- * @param put_path put path
- * @param put_path_length put path length
- * @param type the block type
- * @param size the size of the record
- * @param data the record data
- */
-static void
-process_delegation_result_dht (void* cls,
-                              struct GNUNET_TIME_Absolute exp,
-                              const struct GNUNET_HashCode * key,
-                              const struct GNUNET_PeerIdentity *get_path,
-                              unsigned int get_path_length,
-                              const struct GNUNET_PeerIdentity *put_path,
-                              unsigned int put_path_length,
-                              enum GNUNET_BLOCK_Type type,
-                              size_t size, const void *data)
-{
-  struct ResolverHandle *rh = cls;
-  const struct GNSNameRecordBlock *nrb = data;
-  const char* rd_data;
-  uint32_t num_records;
-  const char* name;
-  uint32_t i;
-  int rd_size;
-  struct GNUNET_CRYPTO_ShortHashCode zone;
-
-  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-             "GNS_PHASE_DELEGATE_DHT-%llu: Got DHT result\n",
-             rh->id);
-  if (data == NULL)
-    return;
-   /* stop dht lookup and timeout task */
-  GNUNET_DHT_get_stop (rh->get_handle);
-  rh->get_handle = NULL;
-  if (rh->dht_heap_node != NULL)
-  {
-    GNUNET_CONTAINER_heap_remove_node(rh->dht_heap_node);
-    rh->dht_heap_node = NULL;
-  }
-
-  num_records = ntohl(nrb->rd_count);
-  name = (const char*) &nrb[1];
-  {
-    struct GNUNET_NAMESTORE_RecordData rd[num_records];
-    struct NamestoreBGTask *ns_heap_root;
-    struct NamestoreBGTask *namestore_bg_task;
-    
-    rd_data = name + strlen(name) + 1;
-    rd_size = size - strlen(name) - 1 - sizeof (struct GNSNameRecordBlock);
-    if (GNUNET_SYSERR == GNUNET_NAMESTORE_records_deserialize (rd_size,
-                                                               rd_data,
-                                                               num_records,
-                                                               rd))
-    {
-      GNUNET_log(GNUNET_ERROR_TYPE_ERROR,
-                 "GNS_PHASE_DELEGATE_DHT-%llu: Error deserializing data!\n",
-                 rh->id);
-      return;
-    }
-
-    GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-               "GNS_PHASE_DELEGATE_DHT-%llu: Got name: %s (wanted %s)\n",
-               rh->id, name, rh->authority_name);
-    for (i=0; i<num_records; i++)
-    {
-      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                 "GNS_PHASE_DELEGATE_DHT-%llu: Got name: %s (wanted %s)\n",
-                 rh->id, name, rh->authority_name);
-      GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-                 "GNS_PHASE_DELEGATE_DHT-%llu: Got type: %d (wanted %d)\n",
-                 rh->id, rd[i].record_type, GNUNET_NAMESTORE_TYPE_PKEY);
-      GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-                 "GNS_PHASE_DELEGATE_DHT-%llu: Got data length: %d\n",
-                 rh->id, rd[i].data_size);
-      GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-                 "GNS_PHASE_DELEGATE_DHT-%llu: Got flag %d\n",
-                 rh->id, rd[i].flags);
-      
-      if ((GNUNET_NAMESTORE_TYPE_VPN == rd[i].record_type) ||
-          (GNUNET_DNSPARSER_TYPE_NS == rd[i].record_type) ||
-          (GNUNET_DNSPARSER_TYPE_CNAME == rd[i].record_type))
-      {
-        /**
-         * This is a VPN,NS,CNAME entry. Let namestore handle this after caching
-         */
-        if (0 == strcmp(rh->name, ""))
-          strcpy(rh->name, rh->authority_name);
-        else
-          GNUNET_snprintf(rh->name, GNUNET_DNSPARSER_MAX_NAME_LENGTH, "%s.%s",
-                 rh->name, rh->authority_name); //FIXME ret
-        rh->answered = 1;
-        break;
-      }
-
-      if ((0 == strcmp(name, rh->authority_name)) &&
-          (GNUNET_NAMESTORE_TYPE_PKEY == rd[i].record_type))
-      {
-        GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-                   "GNS_PHASE_DELEGATE_DHT-%llu: Authority found in DHT\n",
-                   rh->id);
-        rh->answered = 1;
-        memcpy(&rh->authority, rd[i].data, sizeof(struct GNUNET_CRYPTO_ShortHashCode));
-        struct AuthorityChain *auth =
-          GNUNET_malloc(sizeof(struct AuthorityChain));
-        auth->zone = rh->authority;
-        memset(auth->name, 0, strlen(rh->authority_name)+1);
-        strcpy(auth->name, rh->authority_name);
-        GNUNET_CONTAINER_DLL_insert (rh->authority_chain_head,
-                                     rh->authority_chain_tail,
-                                     auth);
-
-        if (NULL != rh->rd.data)
-          GNUNET_free ((void*)rh->rd.data);
-        
-        memcpy (&rh->rd, &rd[i], sizeof (struct GNUNET_NAMESTORE_RecordData));
-        rh->rd.data = GNUNET_malloc (rd[i].data_size);
-        memcpy ((void*)(rh->rd.data), rd[i].data, rd[i].data_size);
-        rh->rd_count = 1;
-
-        /** try to import pkey if private key available */
-        //if (rh->priv_key && is_canonical (rh->name))
-        //  process_discovered_authority(name, auth->zone,
-        //                               rh->authority_chain_tail->zone,
-        //                               rh->priv_key);
-      }
-
-    }
-    GNUNET_GNS_get_zone_from_key (name, key, &zone);
-
-
-    /* Save to namestore
-    if (0 != GNUNET_CRYPTO_short_hash_cmp(&rh->authority_chain_head->zone,
-                                          &zone))
-    {*/
-      if (max_allowed_ns_tasks <=
-          GNUNET_CONTAINER_heap_get_size (ns_task_heap))
-      {
-        ns_heap_root = GNUNET_CONTAINER_heap_remove_root (ns_task_heap);
-        GNUNET_NAMESTORE_cancel (ns_heap_root->qe);
-
-        GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-                   "GNS_PHASE_DELEGATE_DHT-%llu: Replacing oldest background ns task\n",
-                   rh->id);
-      }
-      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                  "GNS_PHASE_DELEGATE_DHT-%llu: Caching record for %s\n",
-                  rh->id, name);
-      namestore_bg_task = GNUNET_malloc (sizeof (struct NamestoreBGTask));
-
-      namestore_bg_task->node = GNUNET_CONTAINER_heap_insert (ns_task_heap,
-                                    namestore_bg_task,
-                                    GNUNET_TIME_absolute_get().abs_value_us);
-      namestore_bg_task->qe = GNUNET_NAMESTORE_record_put (namestore_handle,
-                                 &nrb->public_key,
-                                 name,
-                                 exp,
-                                 num_records,
-                                 rd,
-                                 &nrb->signature,
-                                 &on_namestore_delegation_put_result, //cont
-                                 namestore_bg_task); //cls
-    }
-  //}
-
-  if (0 != rh->answered)
-  {
-    rh->answered = 0;
-    /**
-     * delegate
-     * FIXME in this case. should we ask namestore again?
-     */
-    GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-    "GNS_PHASE_DELEGATE_DHT-%llu: Answer from DHT for %s. Yet to resolve: %s\n",
-    rh->id, rh->authority_name, rh->name);
-
-    if (0 == strcmp(rh->name, ""))
-    {
-      /* Start shortening */
-      if ((NULL != rh->priv_key) &&
-          (GNUNET_YES == is_canonical (rh->name)))
-      {
-        GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-             "GNS_PHASE_DELEGATE_DHT-%llu: Trying to shorten authority chain\n",
-             rh->id);
-        start_shorten (rh->authority_chain_head,
-                       rh->priv_key);
-      }
-    }
-    else
-      rh->proc = &handle_delegation_ns;
-
-
-    /* Check for key revocation and delegate */
-    rh->namestore_task = GNUNET_NAMESTORE_lookup (namestore_handle,
-                                                 &rh->authority,
-                                                 GNUNET_GNS_MASTERZONE_STR,
-                                                 GNUNET_NAMESTORE_TYPE_REV,
-                                                 &process_pkey_revocation_result_ns,
-                                                 rh);
-
-    return;
-  }
-  
-  /**
-   * No pkey but name exists
-   * promote back
-   */
-  GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-             "GNS_PHASE_DELEGATE_DHT-%llu: Adding %s back to %s\n",
-             rh->id, rh->authority_name, rh->name);
-  if (0 == strcmp(rh->name, ""))
-    strcpy(rh->name, rh->authority_name);
-  else
-    GNUNET_snprintf(rh->name, GNUNET_DNSPARSER_MAX_NAME_LENGTH, "%s.%s",
-                  rh->name, rh->authority_name); //FIXME ret
-  
-  GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-             "GNS_PHASE_DELEGATE_DHT-%llu: %s restored\n", rh->id, rh->name);
-  GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-          "GNS_PHASE_DELEGATE_DHT-%llu: DHT authority lookup found no match!\n",
-           rh->id);
-  rh->proc(rh->proc_cls, rh, 0, NULL);
-}
-
-//FIXME maybe define somewhere else?
-#define MAX_SOA_LENGTH sizeof(uint32_t)+sizeof(uint32_t)+sizeof(uint32_t)+sizeof(uint32_t)\
-                        +(GNUNET_DNSPARSER_MAX_NAME_LENGTH*2)
-#define MAX_MX_LENGTH sizeof(uint16_t)+GNUNET_DNSPARSER_MAX_NAME_LENGTH
-#define MAX_SRV_LENGTH (sizeof(uint16_t)*3)+GNUNET_DNSPARSER_MAX_NAME_LENGTH
-
-
-/**
- * Exands a name ending in .+ with the zone of origin.
- * FIXME: funky api: 'dest' must be large enough to hold
- * the result; this is a bit yucky...
- *
- * @param dest destination buffer
- * @param src the .+ name
- * @param repl the string to replace the + with
- */
-static void
-expand_plus (char* dest, 
-            const char* src, 
-            const char* repl)
-{
-  char* pos;
-  size_t s_len = strlen (src) + 1;
-
-  //Eh? I guess this is at least strlen ('x.+') == 3 FIXME
-  if (3 > s_len)
-  {
-    /* no postprocessing */
-    GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-               "GNS_POSTPROCESS: %s too short\n", src);
-    memcpy (dest, src, s_len);
-    return;
-  }
-  if (0 == strcmp (src + s_len - 3, ".+"))
-  {
-    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-               "GNS_POSTPROCESS: Expanding .+ in %s\n", 
-               src);
-    memset (dest, 0, s_len + strlen (repl) + strlen(GNUNET_GNS_TLD));
-    strcpy (dest, src);
-    pos = dest + s_len - 2;
-    strcpy (pos, repl);
-    pos += strlen (repl);
-    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-               "GNS_POSTPROCESS: Expanded to %s\n", 
-               dest);
-  }
-  else
-  {
-    GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-               "GNS_POSTPROCESS: No postprocessing for %s\n", src);
-    memcpy (dest, src, s_len);
-  }
-}
-
-
-/**
- * finish lookup
- */
-static void
-finish_lookup (struct ResolverHandle *rh,
-               struct RecordLookupHandle* rlh,
-               unsigned int rd_count,
-               const struct GNUNET_NAMESTORE_RecordData *rd)
-{
-  unsigned int i;
-  char new_rr_data[GNUNET_DNSPARSER_MAX_NAME_LENGTH];
-  char new_mx_data[MAX_MX_LENGTH];
-  char new_soa_data[MAX_SOA_LENGTH];
-  char new_srv_data[MAX_SRV_LENGTH];
-  struct srv_data *old_srv;
-  struct srv_data *new_srv;
-  struct soa_data *old_soa;
-  struct soa_data *new_soa;
-  struct GNUNET_NAMESTORE_RecordData p_rd[rd_count];
-  char* repl_string;
-  char* pos;
-  unsigned int offset;
-
-  if (GNUNET_SCHEDULER_NO_TASK != rh->timeout_task)
-  {
-    GNUNET_SCHEDULER_cancel(rh->timeout_task);
-    rh->timeout_task = GNUNET_SCHEDULER_NO_TASK;
-  }
-
-  GNUNET_CONTAINER_DLL_remove (rlh_head, rlh_tail, rh);
-
-  if (0 < rd_count)
-    memcpy(p_rd, rd, rd_count*sizeof(struct GNUNET_NAMESTORE_RecordData));
-
-  for (i = 0; i < rd_count; i++)
-  {
-    
-    if ((GNUNET_DNSPARSER_TYPE_NS != rd[i].record_type) &&
-        (GNUNET_DNSPARSER_TYPE_PTR != rd[i].record_type) &&
-        (GNUNET_DNSPARSER_TYPE_CNAME != rd[i].record_type) &&
-        (GNUNET_DNSPARSER_TYPE_MX != rd[i].record_type) &&
-        (GNUNET_DNSPARSER_TYPE_SOA != rd[i].record_type) &&
-        (GNUNET_DNSPARSER_TYPE_SRV != rd[i].record_type))
-    {
-      p_rd[i].data = rd[i].data;
-      continue;
-    }
-
-    /**
-     * for all those records we 'should'
-     * also try to resolve the A/AAAA records (RFC1035)
-     * This is a feature and not important
-     */
-    
-    GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-               "GNS_POSTPROCESS: Postprocessing\n");
-    if (0 == strcmp(rh->name, GNUNET_GNS_MASTERZONE_STR))
-      repl_string = rlh->name;
-    else
-      repl_string = rlh->name+strlen(rh->name)+1;
-
-    offset = 0;
-    if (GNUNET_DNSPARSER_TYPE_MX == rd[i].record_type)
-    {
-      memcpy (new_mx_data, (char*)rd[i].data, sizeof(uint16_t));
-      offset = sizeof (uint16_t);
-      pos = new_mx_data + offset;
-      // FIXME: how do we know that 'pos' has enough space for the new name?
-      expand_plus (pos, (char*)rd[i].data+sizeof(uint16_t),
-                  repl_string);
-      offset += strlen(new_mx_data+sizeof(uint16_t)) + 1;
-      p_rd[i].data = new_mx_data;
-      p_rd[i].data_size = offset;
-    }
-    else if (GNUNET_DNSPARSER_TYPE_SRV == rd[i].record_type)
-    {
-      /*
-       * Prio, weight and port
-       */
-      new_srv = (struct srv_data*)new_srv_data;
-      old_srv = (struct srv_data*)rd[i].data;
-      new_srv->prio = old_srv->prio;
-      new_srv->weight = old_srv->weight;
-      new_srv->port = old_srv->port;
-      // FIXME: how do we know that '&new_srv[1]' has enough space for the new name?
-      expand_plus((char*)&new_srv[1], (char*)&old_srv[1],
-                  repl_string);
-      p_rd[i].data = new_srv_data;
-      p_rd[i].data_size = sizeof (struct srv_data) + strlen ((char*)&new_srv[1]) + 1;
-    }
-    else if (GNUNET_DNSPARSER_TYPE_SOA == rd[i].record_type)
-    {
-      /* expand mname and rname */
-      old_soa = (struct soa_data*)rd[i].data;
-      new_soa = (struct soa_data*)new_soa_data;
-      memcpy (new_soa, old_soa, sizeof (struct soa_data));
-      // FIXME: how do we know that 'new_soa[1]' has enough space for the new name?
-      expand_plus((char*)&new_soa[1], (char*)&old_soa[1], repl_string);
-      offset = strlen ((char*)&new_soa[1]) + 1;
-      // FIXME: how do we know that 'new_soa[1]' has enough space for the new name?
-      expand_plus((char*)&new_soa[1] + offset,
-                  (char*)&old_soa[1] + strlen ((char*)&old_soa[1]) + 1,
-                  repl_string);
-      p_rd[i].data_size = sizeof (struct soa_data)
-                          + offset
-                          + strlen ((char*)&new_soa[1] + offset);
-      p_rd[i].data = new_soa_data;
-    }
-    else
-    {
-      pos = new_rr_data;
-      // FIXME: how do we know that 'rd[i].data' has enough space for the new name?
-      expand_plus(pos, (char*)rd[i].data, repl_string);
-      p_rd[i].data_size = strlen(new_rr_data)+1;
-      p_rd[i].data = new_rr_data;
-    }
-    
-  }
-
-  rlh->proc(rlh->proc_cls, rd_count, p_rd);
-  GNUNET_free(rlh);
-  free_resolver_handle (rh);
-}
-
-
-/**
- * Process DHT lookup result for record.
- *
- * @param cls the closure
- * @param rh resolver handle
- * @param rd_count number of results
- * @param rd record data
- */
-static void
-handle_record_dht (void* cls, struct ResolverHandle *rh,
-                  unsigned int rd_count,
-                  const struct GNUNET_NAMESTORE_RecordData *rd)
-{
-  struct RecordLookupHandle* rlh = cls;
-
-  if (0 == rd_count)
-  {
-    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-               "GNS_PHASE_REC-%llu: No records for %s found in DHT. Aborting\n",
-               rh->id, rh->name);
-    /* give up, cannot resolve */
-    finish_lookup (rh, rlh, 0, NULL);
-    return;
-  }
-  /* results found yay */
-  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-             "GNS_PHASE_REC-%llu: Record resolved from DHT!", rh->id);
-  finish_lookup (rh, rlh, rd_count, rd);
-}
-
-
-/**
- * Process namestore lookup result for record.
- *
- * @param cls the closure
- * @param rh resolver handle
- * @param rd_count number of results
- * @param rd record data
- */
-static void
-handle_record_ns (void* cls, struct ResolverHandle *rh,
-                  unsigned int rd_count,
-                  const struct GNUNET_NAMESTORE_RecordData *rd)
-{
-  struct RecordLookupHandle* rlh = cls;
-  int check_dht = GNUNET_YES;
-  
-  if (0 != rd_count)
-  {
-    /* results found yay */
-    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-               "GNS_PHASE_REC-%llu: Record resolved from namestore!\n", rh->id);
-    finish_lookup (rh, rlh, rd_count, rd);
-    return;
-  }
-  
-  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-              "GNS_PHASE_REC-%llu: NS returned no records. (status: %d)!\n",
-              rh->id,
-              rh->status);
-  /**
-   * There are 5 conditions that have to met for us to consult the DHT:
-   * 1. The entry in the DHT is RSL_RECORD_EXPIRED OR
-   * 2. No entry in the NS existed AND
-   * 3. The zone queried is not the local resolver's zone AND
-   * 4. The name that was looked up is '+'
-   *    because if it was any other canonical name we either already queried
-   *    the DHT for the authority in the authority lookup phase (and thus
-   *    would already have an entry in the NS for the record)
-   * 5. We are not in cache only mode
-   */
-  if ((0 != (rh->status & RSL_RECORD_EXPIRED)) &&
-      (0 == (rh->status & RSL_RECORD_EXISTS)) )
-  {
-    
-    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-              "GNS_PHASE_REC-%llu: Not expired and exists!\n",
-              rh->id);
-    check_dht = GNUNET_NO;
-  }
-  
-  if (0 == GNUNET_CRYPTO_short_hash_cmp(&rh->authority_chain_head->zone,
-                                        &rh->private_local_zone))
-  {
-
-    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-              "GNS_PHASE_REC-%llu: Our zone!\n",
-              rh->id);
-    check_dht = GNUNET_NO;
-  }
-  
-  if ((0 != strcmp (rh->name, GNUNET_GNS_MASTERZONE_STR)) && (GNUNET_YES == is_srv (rh->name)))
-      check_dht = GNUNET_NO;
-
-  if (GNUNET_YES == rh->only_cached)
-    check_dht = GNUNET_NO;
-  
-  if (GNUNET_YES == check_dht)
-  {
-    rh->proc = &handle_record_dht;
-    resolve_record_dht(rh);
-    return;
-  }
-  /* give up, cannot resolve */
-  finish_lookup (rh, rlh, 0, NULL);
-}
-
-
-/**
- * Move one level up in the domain hierarchy and return the
- * passed top level domain.
- *
- * FIXME: funky API: not only 'dest' is updated, so is 'name'!
- *
- * @param name the domain
- * @param dest the destination where the tld will be put
- */
-static void
-pop_tld (char* name, char* dest)
-{
-  uint32_t len;
-
-  if (GNUNET_YES == is_canonical (name))
-  {
-    strcpy (dest, name);
-    strcpy (name, "");
-    return;
-  }
-
-  for (len = strlen(name); 0 < len; len--)
-  {
-    if (*(name+len) == '.')
-      break;
-  }
-  
-  //Was canonical?
-  if (0 == len)
-    return;
-  name[len] = '\0';
-  strcpy (dest, (name+len+1));
-}
-
-
-/**
- * DHT resolution for delegation finished. Processing result.
- *
- * @param cls the closure
- * @param rh resolver handle
- * @param rd_count number of results (always 0)
- * @param rd record data (always NULL)
- */
-static void
-handle_delegation_dht(void* cls, struct ResolverHandle *rh,
-                          unsigned int rd_count,
-                          const struct GNUNET_NAMESTORE_RecordData *rd)
-{
-  struct RecordLookupHandle* rlh = cls;
-  
-  if (0 == strcmp(rh->name, ""))
-  {
-    if (GNUNET_NAMESTORE_TYPE_PKEY == rlh->record_type)
-    {
-      GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-                 "GNS_PHASE_DELEGATE_DHT-%llu: Resolved queried PKEY via DHT.\n",
-                 rh->id);
-      finish_lookup(rh, rlh, rd_count, rd);
-      return;
-    }
-    /* We resolved full name for delegation. resolving record */
-    GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-     "GNS_PHASE_DELEGATE_DHT-%llu: Resolved full name for delegation via DHT.\n",
-     rh->id);
-    strcpy(rh->name, "+\0");
-    rh->proc = &handle_record_ns;
-    resolve_record_ns(rh);
-    return;
-  }
-
-  /**
-   * we still have some left
-   **/
-  if (GNUNET_YES == is_canonical (rh->name))
-  {
-    GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-             "GNS_PHASE_DELEGATE_DHT-%llu: Resolving canonical record %s in ns\n",
-             rh->id,
-             rh->name);
-    rh->proc = &handle_record_ns;
-    resolve_record_ns(rh);
-    return;
-  }
-  /* give up, cannot resolve */
-  GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
- "GNS_PHASE_DELEGATE_DHT-%llu: Cannot fully resolve delegation for %s via DHT!\n",
- rh->id, rh->name);
-  finish_lookup(rh, rlh, 0, NULL);
-}
-
-
-/**
- * Start DHT lookup for a name -> PKEY (compare NS) record in
- * rh->authority's zone
- *
- * @param rh the pending gns query
- */
-static void
-resolve_delegation_dht (struct ResolverHandle *rh)
-{
-  uint32_t xquery;
-  struct GNUNET_HashCode lookup_key;
-  struct ResolverHandle *rh_heap_root;
-  
-  pop_tld (rh->name, rh->authority_name);
-  GNUNET_GNS_get_key_for_record (rh->authority_name,
-                                &rh->authority, 
-                                &lookup_key);
-  rh->dht_heap_node = NULL;
-  if (rh->timeout.rel_value_us != GNUNET_TIME_UNIT_FOREVER_REL.rel_value_us)
-  {
-    rh->timeout_cont = &dht_authority_lookup_timeout;
-    rh->timeout_cont_cls = rh;
-  }
-  else 
-  {
-    if (max_allowed_background_queries <=
-        GNUNET_CONTAINER_heap_get_size (dht_lookup_heap))
-    {
-      /* terminate oldest lookup */
-      rh_heap_root = GNUNET_CONTAINER_heap_remove_root (dht_lookup_heap);
-      GNUNET_DHT_get_stop (rh_heap_root->get_handle);
-      rh_heap_root->get_handle = NULL;
-      rh_heap_root->dht_heap_node = NULL;
-      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                 "GNS_PHASE_DELEGATE_DHT-%llu: Replacing oldest background query for %s\n",
-                 rh->id, 
-                 rh_heap_root->authority_name);
-      rh_heap_root->proc (rh_heap_root->proc_cls,
-                         rh_heap_root,
-                         0,
-                         NULL);
-    }
-    rh->dht_heap_node = GNUNET_CONTAINER_heap_insert (dht_lookup_heap,
-                                                     rh,
-                                                     GNUNET_TIME_absolute_get().abs_value_us);
-  }
-  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-             "Beginning DHT lookup for %s in zone %s for request %llu\n",
-             rh->authority_name,
-             GNUNET_short_h2s (&rh->authority),
-             rh->id);
-  xquery = htonl (GNUNET_NAMESTORE_TYPE_PKEY);
-  GNUNET_assert (rh->get_handle == NULL);
-  rh->get_handle = GNUNET_DHT_get_start (dht_handle,
-                                        GNUNET_BLOCK_TYPE_GNS_NAMERECORD,
-                                        &lookup_key,
-                                        DHT_GNS_REPLICATION_LEVEL,
-                                        GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
-                                        &xquery,
-                                        sizeof(xquery),
-                                        &process_delegation_result_dht,
-                                        rh);
-}
-
-
-/**
- * Namestore resolution for delegation finished. Processing result.
- *
- * @param cls the closure
- * @param rh resolver handle
- * @param rd_count number of results (always 0)
- * @param rd record data (always NULL)
- */
-static void
-handle_delegation_ns (void* cls, struct ResolverHandle *rh,
-                      unsigned int rd_count,
-                      const struct GNUNET_NAMESTORE_RecordData *rd)
-{
-  struct RecordLookupHandle* rlh = cls;
-  int check_dht;
-  size_t s_len;
-
-  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-             "GNS_PHASE_DELEGATE_NS-%llu: Resolution status: %d.\n",
-             rh->id, rh->status);
-
-  if (rh->status & RSL_PKEY_REVOKED)
-  {
-    finish_lookup (rh, rlh, 0, NULL);
-    return;
-  }
-  
-  if (0 == strcmp(rh->name, ""))
-  {
-    
-    /* We resolved full name for delegation. resolving record */
-    GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-              "GNS_PHASE_DELEGATE_NS-%llu: Resolved full name for delegation.\n",
-              rh->id);
-    if (rh->status & RSL_CNAME_FOUND)
-    {
-      if (GNUNET_DNSPARSER_TYPE_CNAME == rlh->record_type)
-      {
-        GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-                  "GNS_PHASE_DELEGATE_NS-%llu: Resolved queried CNAME in NS.\n",
-                  rh->id);
-        strcpy (rh->name, rh->authority_name);
-        finish_lookup (rh, rlh, rd_count, rd);
-        return;
-      }
-      
-      /* A .+ CNAME  */
-      if (GNUNET_YES == is_tld ((char*)rd->data, GNUNET_GNS_TLD_PLUS))
-      {
-        s_len = strlen (rd->data) - 2;
-        memcpy (rh->name, rd->data, s_len);
-        rh->name[s_len] = '\0';
-        resolve_delegation_ns (rh);
-        return;
-      }
-      else if (GNUNET_YES == is_tld ((char*)rd->data, GNUNET_GNS_TLD_ZKEY))
-      {
-        gns_resolver_lookup_record (rh->authority,
-                                    rh->private_local_zone,
-                                    rlh->record_type,
-                                    (char*)rd->data,
-                                    rh->priv_key,
-                                    rh->timeout,
-                                    rh->only_cached,
-                                    rlh->proc,
-                                    rlh->proc_cls);
-        GNUNET_free (rlh);
-        GNUNET_CONTAINER_DLL_remove (rlh_head, rlh_tail, rh);
-        free_resolver_handle (rh);
-        return;
-      }
-      else
-      {
-        //Try DNS resolver
-        strcpy (rh->dns_name, (char*)rd->data);
-        resolve_dns_name (rh);
-        return;
-      }
-
-    }
-    else if (rh->status & RSL_DELEGATE_VPN)
-    {
-      if (GNUNET_NAMESTORE_TYPE_VPN == rlh->record_type)
-      {
-        GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-                 "GNS_PHASE_DELEGATE_NS-%llu: Resolved queried VPNRR in NS.\n",
-                 rh->id);
-        finish_lookup(rh, rlh, rd_count, rd);
-        return;
-      }
-      GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-             "GNS_PHASE_DELEGATE_NS-%llu: VPN delegation starting.\n",
-             rh->id);
-      GNUNET_assert (NULL != rd);
-      rh->proc = &handle_record_vpn;
-      resolve_record_vpn (rh, rd_count, rd);
-      return;
-    }
-    else if (rh->status & RSL_DELEGATE_NS)
-    {
-      if (GNUNET_DNSPARSER_TYPE_NS == rlh->record_type)
-      {
-        GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                   "GNS_PHASE_DELEGATE_NS-%llu: Resolved queried NSRR in NS.\n",
-                   rh->id);
-        finish_lookup (rh, rlh, rd_count, rd);
-        return;
-      }      
-      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                 "GNS_PHASE_DELEGATE_NS-%llu: NS delegation starting.\n",
-                 rh->id);
-      GNUNET_assert (NULL != rd);
-      rh->proc = &handle_record_ns;
-      resolve_record_dns (rh, rd_count, rd);
-      return;
-    }
-    else if (rh->status & RSL_DELEGATE_PKEY)
-    {
-      if (rh->status & RSL_PKEY_REVOKED)
-      {
-        GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-                   "GNS_PHASE_DELEGATE_NS-%llu: Resolved PKEY is revoked.\n",
-                   rh->id);
-        finish_lookup (rh, rlh, 0, NULL);
-        return;
-      }
-      else if (GNUNET_NAMESTORE_TYPE_PKEY == rlh->record_type)
-      {
-        GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-                   "GNS_PHASE_DELEGATE_NS-%llu: Resolved queried PKEY in NS.\n",
-                   rh->id);
-        finish_lookup(rh, rlh, rd_count, rd);
-        return;
-      }
-    }
-    GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-               "GNS_PHASE_DELEGATE_NS-%llu: Resolving record +\n",
-               rh->id);
-    strcpy(rh->name, "+\0");
-    rh->proc = &handle_record_ns;
-    resolve_record_ns(rh);
-    return;
-  }
-  
-  if (rh->status & RSL_DELEGATE_NS)
-  {
-    if (GNUNET_DNSPARSER_TYPE_NS == rlh->record_type)
-    {
-      GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-                 "GNS_PHASE_DELEGATE_NS-%llu: Resolved queried NSRR in NS.\n",
-                 rh->id);
-      finish_lookup(rh, rlh, rd_count, rd);
-      return;
-    }
-    
-    GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-               "GNS_PHASE_DELEGATE_NS-%llu: NS delegation starting.\n",
-               rh->id);
-    GNUNET_assert (NULL != rd);
-    rh->proc = &handle_record_ns;
-    resolve_record_dns (rh, rd_count, rd);
-    return;
-  }
-  
-  /**
-   * we still have some left
-   * check if authority in ns is fresh
-   * and exists
-   * or we are authority
-   **/
-
-  check_dht = GNUNET_YES;
-  if ((rh->status & RSL_RECORD_EXISTS) &&
-       !(rh->status & RSL_RECORD_EXPIRED))
-    check_dht = GNUNET_NO;
-
-  if (0 == GNUNET_CRYPTO_short_hash_cmp(&rh->authority_chain_head->zone,
-                                        &rh->private_local_zone))
-    check_dht = GNUNET_NO;
-
-  if (GNUNET_YES == rh->only_cached)
-    check_dht = GNUNET_NO;
-
-  if (GNUNET_YES == check_dht)
-  {
-
-    GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-        "GNS_PHASE_DELEGATE_NS-%llu: Trying to resolve delegation for %s via DHT\n",
-        rh->id, rh->name);
-    rh->proc = &handle_delegation_dht;
-    resolve_delegation_dht(rh);
-    return;
-  }
-  
-  if (GNUNET_NO == is_canonical (rh->name))
-  {
-    /* give up, cannot resolve */
-    GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-        "GNS_PHASE_DELEGATE_NS-%llu: Cannot fully resolve delegation for %s!\n",
-        rh->id,
-        rh->name);
-    finish_lookup(rh, rlh, rd_count, rd);
-    return;
-  }
-  GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-             "GNS_PHASE_DELEGATE_NS-%llu: Resolving canonical record %s\n",
-             rh->id,
-             rh->name);
-  rh->proc = &handle_record_ns;
-  resolve_record_ns(rh);
-}
-
-
-/**
- * This is a callback function that should give us only PKEY
- * records. Used to query the namestore for the authority (PKEY)
- * for 'name'. It will recursively try to resolve the
- * authority for a given name from the namestore.
- *
- * @param cls the pending query
- * @param key the key of the zone we did the lookup
- * @param expiration expiration date of the record data set in the namestore
- * @param name the name for which we need an authority
- * @param rd_count the number of records with 'name'
- * @param rd the record data
- * @param signature the signature of the authority for the record data
- */
-static void
-process_delegation_result_ns (void* cls,
-                             const struct GNUNET_CRYPTO_EccPublicKey *key,
-                             struct GNUNET_TIME_Absolute expiration,
-                             const char *name,
-                             unsigned int rd_count,
-                             const struct GNUNET_NAMESTORE_RecordData *rd,
-                             const struct GNUNET_CRYPTO_EccSignature *signature)
-{
-  struct ResolverHandle *rh = cls;
-  struct GNUNET_TIME_Relative remaining_time;
-  struct GNUNET_CRYPTO_ShortHashCode zone;
-  char new_name[GNUNET_DNSPARSER_MAX_NAME_LENGTH];
-  unsigned int i;
-  struct GNUNET_TIME_Absolute et;
-  struct AuthorityChain *auth;
-  rh->namestore_task = NULL;
-  GNUNET_CRYPTO_short_hash (key,
-                           sizeof (struct GNUNET_CRYPTO_EccPublicKey),
-                           &zone);
-  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-             "GNS_PHASE_DELEGATE_NS-%llu: Got %d records from authority lookup for `%s' in zone %s\n",
-             rh->id, rd_count,
-             name,
-             GNUNET_short_h2s (&zone));
-
-  remaining_time = GNUNET_TIME_absolute_get_remaining (expiration);
-  
-  rh->status = 0;
-  
-  if (NULL != name)
-  {
-    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                "GNS_PHASE_DELEGATE_NS-%llu: Records with name `%s' exist in zone %s.\n",
-                rh->id, name,
-               GNUNET_short_h2s (&zone));
-    rh->status |= RSL_RECORD_EXISTS;
-  
-    if (0 == remaining_time.rel_value_us)
-    {
-      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                  "GNS_PHASE_DELEGATE_NS-%llu: Record set %s expired.\n",
-                  rh->id, name);
-      rh->status |= RSL_RECORD_EXPIRED;
-    }
-  }
-  
-  /**
-   * No authority found in namestore.
-   */
-  if (0 == rd_count)
-  {
-    /**
-     * We did not find an authority in the namestore
-     */
-    
-    /**
-     * No PKEY in zone.
-     * Promote this authority back to a name maybe it is
-     * our record.
-     */
-    if (strcmp (rh->name, "") == 0)
-    {
-      /* simply promote back */
-      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                  "GNS_PHASE_DELEGATE_NS-%llu: Promoting %s back to name\n",
-                  rh->id, rh->authority_name);
-      strcpy (rh->name, rh->authority_name);
-    }
-    else
+    offset = 0;
+    if (GNUNET_DNSPARSER_TYPE_MX == rd[i].record_type)
     {
-      /* add back to existing name */
-      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                  "GNS_PHASE_DELEGATE_NS-%llu: Adding %s back to %s\n",
-                  rh->id, rh->authority_name, rh->name);
-      GNUNET_snprintf (new_name, GNUNET_DNSPARSER_MAX_NAME_LENGTH, "%s.%s",
-                       rh->name, rh->authority_name);
-      strcpy (rh->name, new_name);
-      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                  "GNS_PHASE_DELEGATE_NS-%llu: %s restored\n",
-                  rh->id, rh->name);
+      memcpy (new_mx_data, (char*)rd[i].data, sizeof(uint16_t));
+      offset = sizeof (uint16_t);
+      pos = new_mx_data + offset;
+      // FIXME: how do we know that 'pos' has enough space for the new name?
+      expand_plus (pos, (char*)rd[i].data+sizeof(uint16_t),
+                  repl_string);
+      offset += strlen(new_mx_data+sizeof(uint16_t)) + 1;
+      p_rd[i].data = new_mx_data;
+      p_rd[i].data_size = offset;
     }
-
-    rh->proc (rh->proc_cls, rh, 0, NULL);
-    return;
-  }
-
-  /**
-   * We found an authority that may be able to help us
-   * move on with query
-   * Note only 1 pkey should have been returned.. anything else would be strange
-   */
-  for (i=0; i < rd_count;i++)
-  {
-    switch (rd[i].record_type)
-    {
-    case GNUNET_DNSPARSER_TYPE_CNAME:
-      /* Like in regular DNS this should mean that there is no other
-       * record for this name.  */
-
-      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                 "GNS_PHASE_DELEGATE_NS-%llu: CNAME `%.*s' found.\n",
-                 rh->id,
-                 (int) rd[i].data_size,
-                 rd[i].data);
-      rh->status |= RSL_CNAME_FOUND;
-      rh->proc (rh->proc_cls, rh, rd_count, rd);
-      return;
-    case GNUNET_NAMESTORE_TYPE_VPN:
-      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                 "GNS_PHASE_DELEGATE_NS-%llu: VPN found.\n",
-                 rh->id);
-      rh->status |= RSL_DELEGATE_VPN;
-      rh->proc (rh->proc_cls, rh, rd_count, rd);
-      return;
-    case GNUNET_DNSPARSER_TYPE_NS:
-      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                 "GNS_PHASE_DELEGATE_NS-%llu: NS `%.*s' found.\n",
-                 rh->id,
-                 (int) rd[i].data_size,
-                 rd[i].data);
-      rh->status |= RSL_DELEGATE_NS;
-      rh->proc (rh->proc_cls, rh, rd_count, rd);
-      return;
-    case GNUNET_NAMESTORE_TYPE_PKEY:
-      rh->status |= RSL_DELEGATE_PKEY;
-      if ((ignore_pending_records != 0) &&
-         (rd[i].flags & GNUNET_NAMESTORE_RF_PENDING))
-      {
-       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                   "GNS_PHASE_DELEGATE_NS-%llu: PKEY for %s is pending user confirmation.\n",
-                   rh->id,
-                   name);
-       continue;
-      }    
-      GNUNET_break (0 == (rd[i].flags & GNUNET_NAMESTORE_RF_RELATIVE_EXPIRATION));
-      et.abs_value_us = rd[i].expiration_time;
-      if (0 == (GNUNET_TIME_absolute_get_remaining (et)).rel_value_us)
-      {
-       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                   "GNS_PHASE_DELEGATE_NS-%llu: This pkey is expired.\n",
-                   rh->id);
-       if (remaining_time.rel_value_us == 0)
-       {
-         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                     "GNS_PHASE_DELEGATE_NS-%llu: This dht entry is expired.\n",
-                     rh->id);
-         rh->authority_chain_head->fresh = 0;
-         rh->proc (rh->proc_cls, rh, 0, NULL);
-         return;
-       }       
-       continue;
-      }
-      /* Resolve rest of query with new authority */
-      memcpy (&rh->authority, rd[i].data,
-             sizeof (struct GNUNET_CRYPTO_ShortHashCode));
-      auth = GNUNET_malloc(sizeof (struct AuthorityChain));
-      auth->zone = rh->authority;
-      memset (auth->name, 0, strlen (rh->authority_name)+1);
-      strcpy (auth->name, rh->authority_name);
-      GNUNET_CONTAINER_DLL_insert (rh->authority_chain_head,
-                                  rh->authority_chain_tail,
-                                  auth);
-      if (NULL != rh->rd.data)
-       GNUNET_free ((void*)(rh->rd.data));      
-      memcpy (&rh->rd, &rd[i], sizeof (struct GNUNET_NAMESTORE_RecordData));
-      rh->rd.data = GNUNET_malloc (rd[i].data_size);
-      memcpy ((void*)rh->rd.data, rd[i].data, rd[i].data_size);
-      rh->rd_count = 1;
-      /* Check for key revocation and delegate */
-      rh->namestore_task = GNUNET_NAMESTORE_lookup (namestore_handle,
-                                                   &rh->authority,
-                                                   GNUNET_GNS_MASTERZONE_STR,
-                                                   GNUNET_NAMESTORE_TYPE_REV,
-                                                   &process_pkey_revocation_result_ns,
-                                                   rh);
-      return;
-    default:
-      /* ignore, move to next result */
-      break;
+    else if (GNUNET_DNSPARSER_TYPE_SRV == rd[i].record_type)
+    {
+      /*
+       * Prio, weight and port
+       */
+      new_srv = (struct GNUNET_TUN_DnsSrvRecord*)new_srv_data;
+      old_srv = (struct GNUNET_TUN_DnsSrvRecord*)rd[i].data;
+      new_srv->prio = old_srv->prio;
+      new_srv->weight = old_srv->weight;
+      new_srv->port = old_srv->port;
+      // FIXME: how do we know that '&new_srv[1]' has enough space for the new name?
+      expand_plus((char*)&new_srv[1], (char*)&old_srv[1],
+                  repl_string);
+      p_rd[i].data = new_srv_data;
+      p_rd[i].data_size = sizeof (struct GNUNET_TUN_DnsSrvRecord) + strlen ((char*)&new_srv[1]) + 1;
     }
-  }
-  
-  /* no answers that would cause delegation were found */
-  GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
-            "GNS_PHASE_DELEGATE_NS-%llu: Authority lookup failed (no PKEY record)\n", 
-            rh->id);
-  /**
-   * If we have found some records for the LAST label
-   * we return the results. Else NULL.
-   */
-  if (0 == strcmp (rh->name, ""))
-  {
-    /* Start shortening */
-    if ((rh->priv_key != NULL) &&
-        (is_canonical (rh->name) == GNUNET_YES))
+    else if (GNUNET_DNSPARSER_TYPE_SOA == rd[i].record_type)
     {
-      GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-              "GNS_PHASE_DELEGATE_NS-%llu: Trying to shorten authority chain\n",
-              rh->id);
-      start_shorten (rh->authority_chain_head,
-                    rh->priv_key);
+      /* expand mname and rname */
+      old_soa = (struct GNUNET_TUN_DnsSoaRecord*)rd[i].data;
+      new_soa = (struct GNUNET_TUN_DnsSoaRecord*)new_soa_data;
+      memcpy (new_soa, old_soa, sizeof (struct GNUNET_TUN_DnsSoaRecord));
+      // FIXME: how do we know that 'new_soa[1]' has enough space for the new name?
+      expand_plus((char*)&new_soa[1], (char*)&old_soa[1], repl_string);
+      offset = strlen ((char*)&new_soa[1]) + 1;
+      // FIXME: how do we know that 'new_soa[1]' has enough space for the new name?
+      expand_plus((char*)&new_soa[1] + offset,
+                  (char*)&old_soa[1] + strlen ((char*)&old_soa[1]) + 1,
+                  repl_string);
+      p_rd[i].data_size = sizeof (struct GNUNET_TUN_DnsSoaRecord)
+                          + offset
+                          + strlen ((char*)&new_soa[1] + offset);
+      p_rd[i].data = new_soa_data;
     }
-    /* simply promote back */
-    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-                "GNS_PHASE_DELEGATE_NS-%llu: Promoting %s back to name\n",
-                rh->id, rh->authority_name);
-    strcpy (rh->name, rh->authority_name);
-    rh->proc (rh->proc_cls, rh, rd_count, rd);
-  }
-  else
-  {
-    GNUNET_snprintf (new_name, GNUNET_DNSPARSER_MAX_NAME_LENGTH,
-                     "%s.%s", rh->name, rh->authority_name);
-    strcpy (rh->name, new_name);
-    rh->proc (rh->proc_cls, rh, 0, NULL);
+    else
+    {
+      pos = new_rr_data;
+      // FIXME: how do we know that 'rd[i].data' has enough space for the new name?
+      expand_plus(pos, (char*)rd[i].data, repl_string);
+      p_rd[i].data_size = strlen(new_rr_data)+1;
+      p_rd[i].data = new_rr_data;
+    }
+    
   }
+
+  rlh->proc(rlh->proc_cls, rd_count, p_rd);
+  GNUNET_free(rlh);
+  free_resolver_handle (rh);
 }
 
 
@@ -2578,6 +679,21 @@ fail_resolution (void *cls,
   GNS_resolver_lookup_cancel (rh);
 }
 
+#if (defined WINDOWS) || (defined DARWIN)
+/* Don't have this on W32, here's a naive implementation
+ * Was somehow removed on OS X ...  */
+void *
+memrchr (const void *s, int c, size_t n)
+{
+  size_t i;
+  unsigned char *ucs = (unsigned char *) s;
+
+  for (i = n - 1; i >= 0; i--)
+    if (ucs[i] == c)
+      return (void *) &ucs[i];
+  return NULL;
+}
+#endif
 
 /**
  * Get the next, rightmost label from the name that we are trying to resolve,
@@ -2746,6 +862,16 @@ recursive_resolution (void *cls,
                      const struct GNUNET_SCHEDULER_TaskContext *tc);
 
 
+/**
+ * Begin the resolution process from 'name', starting with
+ * the identification of the zone specified by 'name'.
+ *
+ * @param rh resolution to perform
+ */
+static void
+start_resolver_lookup (struct GNS_ResolverHandle *rh);
+
+
 /**
  * Function called with the result of a DNS resolution.
  *
@@ -2763,6 +889,9 @@ dns_result_parser (void *cls,
 {
   struct GNS_ResolverHandle *rh = cls;
   struct GNUNET_DNSPARSER_Packet *p;
+  const struct GNUNET_DNSPARSER_Record *rec;
+  unsigned int rd_count;
+  unsigned int i;
 
   rh->dns_request = NULL;
   GNUNET_SCHEDULER_cancel (rh->task_id);
@@ -2777,17 +906,106 @@ dns_result_parser (void *cls,
     GNS_resolver_lookup_cancel (rh);
     return;
   }
-  // FIXME: 
-  // Check if the packet is the final answer, or
-  // just pointing us to another NS or another name (CNAME), or another domain (DNAME);
-  // then do the right thing (TM) -- possibly using "recursive_dns_resolution".
-  GNUNET_break (0);
-  GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
-             _("NOT IMPLEMENTED\n"));
-  rh->proc (rh->proc_cls, 0, NULL);
-  GNS_resolver_lookup_cancel (rh);
 
-  
+  if ( (p->num_answers > 0) &&
+       (GNUNET_DNSPARSER_TYPE_CNAME == p->answers[0].type) &&
+       (GNUNET_DNSPARSER_TYPE_CNAME != rh->record_type) )
+    {
+      GNUNET_free (rh->name);
+      rh->name = GNUNET_strdup (p->answers[0].data.hostname);
+      start_resolver_lookup (rh);
+      return;     
+    }
+  /* FIXME: add DNAME support */
+
+  /* convert from DNS to GNS format! */
+  rd_count = p->num_answers + p->num_authority_records + p->num_additional_records;
+  {
+    struct GNUNET_NAMESTORE_RecordData rd[rd_count];
+    unsigned int skip;
+
+    skip = 0;
+    memset (rd, 0, sizeof (rd));
+    for (i=0;i<rd_count;i++)
+    {
+      if (i < p->num_answers)
+       rec = &p->answers[i];
+      else if (i < p->num_answers + p->num_authority_records)
+       rec = &p->authority_records[i - p->num_answers];
+      else 
+       rec = &p->authority_records[i - p->num_answers - p->num_authority_records];
+      /* As we copied the full DNS name to 'rh->ac_tail->label', this
+        should be the correct check to see if this record is actually
+        a record for our label... */
+      if (0 != strcmp (rec->name,
+                      rh->ac_tail->label))
+      {
+       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+                   "Dropping record `%s', does not match desired name `%s'\n",
+                   rec->name,
+                   rh->ac_tail->label);
+       skip++;
+       continue;
+      }
+      rd[i - skip].record_type = rec->type;
+      rd[i - skip].expiration_time = rec->expiration_time.abs_value_us;
+      switch (rec->type)
+      {
+      case GNUNET_DNSPARSER_TYPE_A:
+       if (rec->data.raw.data_len != sizeof (struct in_addr))
+       {
+         GNUNET_break_op (0);
+         skip++;
+         continue;
+       }
+       rd[i - skip].data_size = rec->data.raw.data_len;
+       rd[i - skip].data = rec->data.raw.data;
+       break;
+      case GNUNET_DNSPARSER_TYPE_AAAA:
+       if (rec->data.raw.data_len != sizeof (struct in6_addr))
+       {
+         GNUNET_break_op (0);
+         skip++;
+         continue;
+       }
+       rd[i - skip].data_size = rec->data.raw.data_len;
+       rd[i - skip].data = rec->data.raw.data;
+       break;
+      case GNUNET_DNSPARSER_TYPE_CNAME:
+      case GNUNET_DNSPARSER_TYPE_PTR:
+      case GNUNET_DNSPARSER_TYPE_NS:
+       rd[i - skip].data_size = strlen (rec->data.hostname) + 1;
+       rd[i - skip].data = rec->data.hostname;
+       break;
+      case GNUNET_DNSPARSER_TYPE_SOA:
+       // FIXME: not implemented
+       // NOTE: consider exporting implementation in DNSPARSER lib!
+       GNUNET_break (0);
+       skip++;
+       break;
+      case GNUNET_DNSPARSER_TYPE_MX:
+       // FIXME: not implemented
+       // NOTE: consider exporting implementation in DNSPARSER lib!
+       GNUNET_break (0);
+       skip++;
+       break;
+      case GNUNET_DNSPARSER_TYPE_SRV:
+       // FIXME: not implemented
+       // NOTE: consider exporting implementation in DNSPARSER lib!
+       GNUNET_break (0);
+       skip++;
+       break;
+      default:
+       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
+                   _("Skipping record of unsupported type %d\n"),
+                   rec->type);
+       skip++;
+       continue;
+      }
+    }
+    rh->proc (rh->proc_cls, rd_count - skip, rd);
+    GNS_resolver_lookup_cancel (rh);
+  }  
   GNUNET_DNSPARSER_free_packet (p);
 }
 
@@ -2830,13 +1048,13 @@ recursive_dns_resolution (struct GNS_ResolverHandle *rh)
   query = GNUNET_new (struct GNUNET_DNSPARSER_Query);
   query->name = GNUNET_strdup (ac->label);
   query->type = rh->record_type;
-  query->class = GNUNET_DNSPARSER_CLASS_INTERNET;
+  query->class = GNUNET_TUN_DNS_CLASS_INTERNET;
   p = GNUNET_new (struct GNUNET_DNSPARSER_Packet);
   p->queries = query;
   p->num_queries = 1;
   p->id = (uint16_t) GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_NONCE,
                                               UINT16_MAX);
-  p->flags.opcode = GNUNET_DNSPARSER_OPCODE_QUERY;
+  p->flags.opcode = GNUNET_TUN_DNS_OPCODE_QUERY;
   p->flags.recursion_desired = 1;
   if (GNUNET_OK != 
       GNUNET_DNSPARSER_pack (p, 1024, &dns_request, &dns_request_length))
@@ -2863,6 +1081,134 @@ recursive_dns_resolution (struct GNS_ResolverHandle *rh)
 }
 
 
+/**
+ * We encountered a CNAME record during our resolution.
+ * Merge it into our chain.
+ *
+ * @param rh resolution we are performing
+ * @param cname value of the cname record we got for the current 
+ *        authority chain tail
+ */
+static void
+handle_gns_cname_result (struct GNS_ResolverHandle *rh,
+                        const char *cname)
+{
+  size_t nlen;
+  char *res;
+
+  nlen = strlen (cname);
+  if ( (nlen > 2) &&
+       (0 == strcmp (".+",
+                    &cname[nlen - 2])) )
+  {
+    /* CNAME resolution continues relative to current domain */
+    if (0 == rh->name_resolution_pos)
+    {
+      res = GNUNET_strndup (cname, nlen - 2);
+      rh->name_resolution_pos = nlen - 2;
+    }
+    else
+    {
+      GNUNET_asprintf (&res,
+                      "%.*s.%.*s",
+                      (int) rh->name_resolution_pos,
+                      rh->name,
+                      (int) (nlen - 2),
+                      cname);
+      rh->name_resolution_pos = strlen (res);
+    }
+    GNUNET_free (rh->name);
+    rh->name = res;
+    rh->task_id = GNUNET_SCHEDULER_add_now (&recursive_resolution,
+                                           rh);
+    return;
+  }
+  /* name is absolute, start from the beginning */
+  GNUNET_free (rh->name);
+  rh->name = GNUNET_strdup (cname);
+  start_resolver_lookup (rh);
+}
+
+
+/**
+ * Process a records that were decrypted from a block.
+ *
+ * @param cls closure with the 'struct GNS_ResolverHandle'
+ * @param rd_count number of entries in @a rd array
+ * @param rd array of records with data to store
+ */
+static void
+handle_gns_resolution_result (void *cls,
+                             unsigned int rd_count,
+                             const struct GNUNET_NAMESTORE_RecordData *rd);
+
+
+/**
+ * Callback invoked from the VPN service once a redirection is
+ * available.  Provides the IP address that can now be used to
+ * reach the requested destination.  Replaces the "VPN" record
+ * with the respective A/AAAA record and continues processing.
+ *
+ * @param cls closure
+ * @param af address family, AF_INET or AF_INET6; AF_UNSPEC on error;
+ *                will match 'result_af' from the request
+ * @param address IP address (struct in_addr or struct in_addr6, depending on 'af')
+ *                that the VPN allocated for the redirection;
+ *                traffic to this IP will now be redirected to the 
+ *                specified target peer; NULL on error
+ */
+static void
+vpn_allocation_cb (void *cls,
+                  int af,
+                  const void *address)
+{
+  struct VpnContext *vpn_ctx = cls;
+  struct GNS_ResolverHandle *rh = vpn_ctx->rh;
+  struct GNUNET_NAMESTORE_RecordData rd[vpn_ctx->rd_count];
+  unsigned int i;
+
+  vpn_ctx->vpn_request = NULL;
+  rh->vpn_ctx = NULL;
+  GNUNET_assert (GNUNET_OK ==
+                GNUNET_NAMESTORE_records_deserialize (vpn_ctx->rd_data_size,
+                                                      vpn_ctx->rd_data,
+                                                      vpn_ctx->rd_count,
+                                                      rd));
+  for (i=0;i<vpn_ctx->rd_count;i++)
+  {
+    if (GNUNET_NAMESTORE_TYPE_VPN == rd[i].record_type)
+    {
+      switch (af)
+      {
+      case AF_INET: 
+       rd[i].record_type = GNUNET_DNSPARSER_TYPE_A;
+       rd[i].data_size = sizeof (struct in_addr);
+       rd[i].expiration_time = GNUNET_TIME_relative_to_absolute (VPN_TIMEOUT).abs_value_us;
+       rd[i].flags = 0;
+       rd[i].data = address;
+       break;
+      case AF_INET6:
+       rd[i].record_type = GNUNET_DNSPARSER_TYPE_AAAA;
+       rd[i].expiration_time = GNUNET_TIME_relative_to_absolute (VPN_TIMEOUT).abs_value_us;
+       rd[i].flags = 0;
+       rd[i].data = address;
+       rd[i].data_size = sizeof (struct in6_addr);
+       break;
+      default:
+       GNUNET_assert (0);
+      }     
+      break;
+    }
+  }
+  GNUNET_assert (i < vpn_ctx->rd_count);
+  handle_gns_resolution_result (rh, 
+                               vpn_ctx->rd_count,
+                               rd);
+  GNUNET_free (vpn_ctx->rd_data);
+  GNUNET_free (vpn_ctx);
+}
+
+
 /**
  * Process a records that were decrypted from a block.
  *
@@ -2876,14 +1222,272 @@ handle_gns_resolution_result (void *cls,
                              const struct GNUNET_NAMESTORE_RecordData *rd)
 {
   struct GNS_ResolverHandle *rh = cls;
+  struct AuthorityChain *ac;
+  unsigned int i;
+  unsigned int j;
+  struct sockaddr *sa;
+  struct sockaddr_in v4;
+  struct sockaddr_in6 v6;
+  size_t sa_len;
+  char *cname;
+  struct VpnContext *vpn_ctx;
+  const struct GNUNET_TUN_GnsVpnRecord *vpn;
+  const char *vname;
+  struct GNUNET_HashCode vhash;
+  int af;
+  char **scratch;
+  unsigned int scratch_len;
    
-  // FIXME: not implemented
-  // if this was the last label, return 'rd' to application
-  // (possibly first checking about converting records
-  //  to requested type, if possible).
-  // if not, look for PKEY, CNAME, DNAME or NS to extend
-  // auth chain and continue with recursion
-  GNUNET_break (0);
+  if (0 == rh->name_resolution_pos)
+  {
+    /* top-level match, are we done yet? */
+    if ( (rd_count > 0) &&
+        (GNUNET_DNSPARSER_TYPE_CNAME == rd[0].record_type) &&
+        (GNUNET_DNSPARSER_TYPE_CNAME != rh->record_type) )
+    {
+      cname = GNUNET_strndup (rd[0].data,
+                             rd[0].data_size);
+      handle_gns_cname_result (rh, 
+                              cname);
+      GNUNET_free (cname);
+      return;     
+    }
+    /* If A/AAAA was requested, but we got a VPN
+       record, we convert it to A/AAAA using GNUnet VPN */
+    if ( (GNUNET_DNSPARSER_TYPE_A == rh->record_type) ||
+        (GNUNET_DNSPARSER_TYPE_AAAA == rh->record_type) )
+    {
+      for (i=0;i<rd_count;i++)
+      {
+       if (GNUNET_NAMESTORE_TYPE_VPN == rd[i].record_type)
+       {
+         af = (GNUNET_DNSPARSER_TYPE_A == rh->record_type) ? AF_INET : AF_INET6;
+         if (sizeof (struct GNUNET_TUN_GnsVpnRecord) <
+             rd[i].data_size)
+         {
+           GNUNET_break_op (0);
+           rh->proc (rh->proc_cls, 0, NULL);
+           GNS_resolver_lookup_cancel (rh);
+           return;         
+         }
+         vpn = (const struct GNUNET_TUN_GnsVpnRecord *) rd[i].data;
+         vname = (const char *) &vpn[1];
+         if ('\0' != vname[rd[i].data_size - 1 - sizeof (struct GNUNET_TUN_GnsVpnRecord)])
+         {
+           GNUNET_break_op (0);
+           rh->proc (rh->proc_cls, 0, NULL);
+           GNS_resolver_lookup_cancel (rh);
+           return;
+         }
+         GNUNET_CRYPTO_hash (vname,
+                             strlen (vname), // FIXME: +1?
+                             &vhash);
+         vpn_ctx = GNUNET_new (struct VpnContext);
+         rh->vpn_ctx = vpn_ctx;
+         vpn_ctx->rh = rh;
+         vpn_ctx->rd_data_size = GNUNET_NAMESTORE_records_get_size (rd_count,
+                                                                    rd);
+         vpn_ctx->rd_data = GNUNET_malloc (vpn_ctx->rd_data_size);
+         (void) GNUNET_NAMESTORE_records_serialize (rd_count,
+                                                    rd,
+                                                    vpn_ctx->rd_data_size,
+                                                    vpn_ctx->rd_data);
+         vpn_ctx->vpn_request = GNUNET_VPN_redirect_to_peer (vpn_handle,
+                                                             af,
+                                                             ntohs (vpn->proto),
+                                                             &vpn->peer,
+                                                             &vhash,
+                                                             GNUNET_NO,
+                                                             GNUNET_TIME_relative_to_absolute (VPN_TIMEOUT),
+                                                             &vpn_allocation_cb,
+                                                             rh);
+         return;
+       }
+      }
+    }
+    /* convert relative names in record values to absolute names,
+       using 'scratch' array for memory allocations */
+    scratch = NULL;
+    scratch_len = 0;
+    for (i=0;i<rd_count;i++)
+    {
+      /* Strategy: dnsparser should expose API to make it easier
+        for us to parse all of these binary record values individually;
+        then, we check if the embedded name(s) end in "+", and if so,
+        replace the "+" with the zone at "ac_tail", changing the name
+        to a ".zkey".  The name is allocated on the 'scratch' array,
+        so we can free it afterwards. */
+      switch (rd[i].record_type)
+      {
+      case GNUNET_DNSPARSER_TYPE_CNAME:
+       GNUNET_break (0); // FIXME: not implemented
+       break;
+      case GNUNET_DNSPARSER_TYPE_SOA:
+       GNUNET_break (0); // FIXME: not implemented
+       break;
+      case GNUNET_DNSPARSER_TYPE_MX:
+       GNUNET_break (0); // FIXME: not implemented
+       break;
+      case GNUNET_DNSPARSER_TYPE_SRV:
+       GNUNET_break (0); // FIXME: not implemented
+       break;
+      default:
+       break;
+      }
+    }
+    
+    /* yes, we are done, return result */
+    rh->proc (rh->proc_cls, rd_count, rd);
+    GNS_resolver_lookup_cancel (rh);
+    for (i=0;i<scratch_len;i++)
+      GNUNET_free (scratch[i]);
+    GNUNET_array_grow (scratch, 
+                      scratch_len,
+                      0);
+    return;         
+  }
+  /* need to recurse, check if we can */
+  for (i=0;i<rd_count;i++)
+  {
+    switch (rd[i].record_type)
+    {
+    case GNUNET_NAMESTORE_TYPE_PKEY:
+      /* delegation to another zone */
+      if (sizeof (struct GNUNET_CRYPTO_EccPublicKey) !=
+         rd[i].data_size)
+      {
+       GNUNET_break_op (0);
+       rh->proc (rh->proc_cls, 0, NULL);
+       GNS_resolver_lookup_cancel (rh);
+       return;     
+      }
+      /* expand authority chain */
+      ac = GNUNET_new (struct AuthorityChain);
+      ac->rh = rh;
+      ac->gns_authority = GNUNET_YES;
+      memcpy (&ac->authority_info.gns_authority,
+             rd[i].data,
+             sizeof (struct GNUNET_CRYPTO_EccPublicKey));
+      ac->label = resolver_lookup_get_next_label (rh);
+      GNUNET_CONTAINER_DLL_insert_tail (rh->ac_head,
+                                       rh->ac_tail,
+                                       ac);
+      /* recurse */
+      rh->task_id = GNUNET_SCHEDULER_add_now (&recursive_resolution,
+                                             rh);
+      break;
+    case GNUNET_DNSPARSER_TYPE_NS:
+      /* resolution continues within DNS */
+      if (GNUNET_DNSPARSER_MAX_NAME_LENGTH < rd[i].data_size)
+      {
+       GNUNET_break_op (0);
+       rh->proc (rh->proc_cls, 0, NULL);
+       GNS_resolver_lookup_cancel (rh);
+       return;     
+      }
+      /* find associated A/AAAA record */
+      sa = NULL;
+      for (j=0;j<rd_count;j++)
+      {
+       switch (rd[j].record_type)
+       {
+       case GNUNET_DNSPARSER_TYPE_A:
+         if (sizeof (struct in_addr) != rd[i].data_size)
+         {
+           GNUNET_break_op (0);
+           rh->proc (rh->proc_cls, 0, NULL);
+           GNS_resolver_lookup_cancel (rh);
+           return;     
+         }
+         /* FIXME: might want to check if we support IPv4 here,
+            and otherwise skip this one and hope we find another */
+         memset (&v4, 0, sizeof (v4));
+         sa_len = sizeof (v4);
+         v4.sin_family = AF_INET;
+         v4.sin_port = htons (53);
+#if HAVE_SOCKADDR_IN_SIN_LEN
+         v4.sin_len = (u_char) sa_len;
+#endif
+         memcpy (&v4.sin_addr,
+                 rd[j].data,
+                 sizeof (struct in_addr));
+         sa = (struct sockaddr *) &v4;
+         break;
+       case GNUNET_DNSPARSER_TYPE_AAAA:
+         if (sizeof (struct in6_addr) != rd[i].data_size)
+         {
+           GNUNET_break_op (0);
+           rh->proc (rh->proc_cls, 0, NULL);
+           GNS_resolver_lookup_cancel (rh);
+           return;     
+         }
+         /* FIXME: might want to check if we support IPv6 here,
+            and otherwise skip this one and hope we find another */
+         memset (&v6, 0, sizeof (v6));
+         sa_len = sizeof (v6);
+         v6.sin6_family = AF_INET6;
+         v6.sin6_port = htons (53);
+#if HAVE_SOCKADDR_IN_SIN_LEN
+         v6.sin6_len = (u_char) sa_len;
+#endif
+         memcpy (&v6.sin6_addr,
+                 rd[j].data,
+                 sizeof (struct in6_addr));
+         sa = (struct sockaddr *) &v6;
+         break;
+       }
+       if (NULL != sa)
+         break;
+      }
+      /* expand authority chain */
+      ac = GNUNET_new (struct AuthorityChain);
+      ac->rh = rh;
+      strncpy (ac->authority_info.dns_authority.name,
+              rd[i].data,
+              rd[i].data_size);
+      ac->authority_info.dns_authority.name[rd[i].data_size] = '\0';
+      memcpy (&ac->authority_info.dns_authority.dns_ip,
+             sa,
+             sa_len);
+      /* for DNS recursion, the label is the full DNS name,
+        created from the remainder of the GNS name and the
+        name in the NS record */
+      GNUNET_asprintf (&ac->label,
+                      "%.*s%s",
+                      (int) rh->name_resolution_pos,
+                      rh->name,
+                      ac->authority_info.dns_authority.name);
+      GNUNET_CONTAINER_DLL_insert_tail (rh->ac_head,
+                                       rh->ac_tail,
+                                       ac);
+      if (strlen (ac->label) > GNUNET_DNSPARSER_MAX_NAME_LENGTH)
+      {
+       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
+                   _("GNS lookup resulted in DNS name that is too long (`%s')\n"),
+                   ac->label);
+       rh->proc (rh->proc_cls, 0, NULL);
+       GNS_resolver_lookup_cancel (rh);
+       return;
+      }
+      /* recurse */
+      rh->task_id = GNUNET_SCHEDULER_add_now (&recursive_resolution,
+                                             rh);
+      return;
+    case GNUNET_DNSPARSER_TYPE_CNAME:
+      cname = GNUNET_strndup (rd[i].data,
+                             rd[i].data_size);
+      handle_gns_cname_result (rh, 
+                              cname);
+      GNUNET_free (cname);
+      return;
+      /* FIXME: handle DNAME */
+    default:
+      /* skip */
+      break;
+    }
+  }
+  GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
+             _("GNS lookup recursion failed (no delegation record found)\n"));
   rh->proc (rh->proc_cls, 0, NULL);
   GNS_resolver_lookup_cancel (rh);
 }
@@ -2991,7 +1595,7 @@ handle_dht_response (void *cls,
 /**
  * Process a record that was stored in the namestore.
  *
- * @param cls closure with the 'struct GNS_ResolverHandle'
+ * @param cls closure with the `struct GNS_ResolverHandle`
  * @param block block that was stored in the namestore
  */
 static void 
@@ -3070,12 +1674,12 @@ recursive_gns_resolution_namestore (struct GNS_ResolverHandle *rh)
 /**
  * Task scheduled to continue with the resolution process.
  *
- * @param cls the 'struct GNS_ResolverHandle' of the resolution
+ * @param cls the `struct GNS_ResolverHandle` of the resolution
  * @param tc task context
  */
 static void
 recursive_resolution (void *cls,
-                    const struct GNUNET_SCHEDULER_TaskContext *tc)
+                     const struct GNUNET_SCHEDULER_TaskContext *tc)
 {
   struct GNS_ResolverHandle *rh = cls;
 
@@ -3097,58 +1701,28 @@ recursive_resolution (void *cls,
 
 
 /**
- * Lookup of a record in a specific zone calls lookup result processor
- * on result.
+ * Begin the resolution process from 'name', starting with
+ * the identification of the zone specified by 'name'.
  *
- * @param zone the zone to perform the lookup in
- * @param record_type the record type to look up
- * @param name the name to look up
- * @param shorten_key a private key for use with PSEU import (can be NULL)
- * @param only_cached GNUNET_NO to only check locally not DHT for performance
- * @param proc the processor to call on result
- * @param proc_cls the closure to pass to @a proc
- * @return handle to cancel operation
+ * @param rh resolution to perform
  */
-struct GNS_ResolverHandle *
-GNS_resolver_lookup (const struct GNUNET_CRYPTO_EccPublicKey *zone,
-                    uint32_t record_type,
-                    const char *name,
-                    const struct GNUNET_CRYPTO_EccPrivateKey *shorten_key,
-                    int only_cached,
-                    GNS_ResultProcessor proc, void *proc_cls)
+static void
+start_resolver_lookup (struct GNS_ResolverHandle *rh)
 {
-  struct GNS_ResolverHandle *rh;
   struct AuthorityChain *ac;
   char *x;
   char *y;
   char *pkey;
 
-  rh = GNUNET_new (struct GNS_ResolverHandle);
-  GNUNET_CONTAINER_DLL_insert (rlh_head,
-                              rlh_tail,
-                              rh);
-  rh->authority_zone = *zone;
-  rh->proc = proc;
-  rh->proc_cls = proc_cls;
-  rh->only_cached = only_cached;
-  rh->record_type = record_type;
-  rh->name = GNUNET_strdup (name);
-  rh->name_resolution_pos = strlen (name);
-  if (NULL != shorten_key)
-  {
-    rh->shorten_key = GNUNET_new (struct GNUNET_CRYPTO_EccPrivateKey);
-    *rh->shorten_key = *shorten_key;
-  }
-
-  if ( ( (GNUNET_YES == is_canonical (name)) &&
-        (0 != strcmp (GNUNET_GNS_TLD, name)) ) ||
-       ( (GNUNET_YES != is_gads_tld (name)) &&
-        (GNUNET_YES != is_zkey_tld (name)) ) )
+  if ( ( (GNUNET_YES == is_canonical (rh->name)) &&
+        (0 != strcmp (GNUNET_GNS_TLD, rh->name)) ) ||
+       ( (GNUNET_YES != is_gnu_tld (rh->name)) &&
+        (GNUNET_YES != is_zkey_tld (rh->name)) ) )
   {
     /* use standard DNS lookup */
     int af;
 
-    switch (record_type)
+    switch (rh->record_type)
     {
     case GNUNET_DNSPARSER_TYPE_A:
       af = AF_INET;
@@ -3160,14 +1734,14 @@ GNS_resolver_lookup (const struct GNUNET_CRYPTO_EccPublicKey *zone,
       af = AF_UNSPEC;
       break;
     }
-    rh->std_resolve = GNUNET_RESOLVER_ip_get (name, 
+    rh->std_resolve = GNUNET_RESOLVER_ip_get (rh->name, 
                                              af,
                                              DNS_LOOKUP_TIMEOUT,
                                              &handle_dns_result,
                                              rh);
-    return rh;
+    return;
   }
-  if (is_zkey_tld (name))
+  if (is_zkey_tld (rh->name))
   {
     /* Name ends with ".zkey", try to replace authority zone with zkey
        authority */
@@ -3186,7 +1760,7 @@ GNS_resolver_lookup (const struct GNUNET_CRYPTO_EccPublicKey *zone,
     {
       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
                  _("Hostname `%s' is not well-formed, resolution fails\n"),
-                 name);
+                 rh->name);
       rh->task_id = GNUNET_SCHEDULER_add_now (&fail_resolution, rh);
     }
     GNUNET_free_non_null (x);
@@ -3211,6 +1785,49 @@ GNS_resolver_lookup (const struct GNUNET_CRYPTO_EccPublicKey *zone,
                                    ac);
   rh->task_id = GNUNET_SCHEDULER_add_now (&recursive_resolution,
                                          rh);
+}
+
+
+/**
+ * Lookup of a record in a specific zone calls lookup result processor
+ * on result.
+ *
+ * @param zone the zone to perform the lookup in
+ * @param record_type the record type to look up
+ * @param name the name to look up
+ * @param shorten_key a private key for use with PSEU import (can be NULL)
+ * @param only_cached #GNUNET_NO to only check locally not DHT for performance
+ * @param proc the processor to call on result
+ * @param proc_cls the closure to pass to @a proc
+ * @return handle to cancel operation
+ */
+struct GNS_ResolverHandle *
+GNS_resolver_lookup (const struct GNUNET_CRYPTO_EccPublicKey *zone,
+                    uint32_t record_type,
+                    const char *name,
+                    const struct GNUNET_CRYPTO_EccPrivateKey *shorten_key,
+                    int only_cached,
+                    GNS_ResultProcessor proc, void *proc_cls)
+{
+  struct GNS_ResolverHandle *rh;
+
+  rh = GNUNET_new (struct GNS_ResolverHandle);
+  GNUNET_CONTAINER_DLL_insert (rlh_head,
+                              rlh_tail,
+                              rh);
+  rh->authority_zone = *zone;
+  rh->proc = proc;
+  rh->proc_cls = proc_cls;
+  rh->only_cached = only_cached;
+  rh->record_type = record_type;
+  rh->name = GNUNET_strdup (name);
+  rh->name_resolution_pos = strlen (name);
+  if (NULL != shorten_key)
+  {
+    rh->shorten_key = GNUNET_new (struct GNUNET_CRYPTO_EccPrivateKey);
+    *rh->shorten_key = *shorten_key;
+  }
+  start_resolver_lookup (rh);
   return rh;
 }
 
@@ -3225,6 +1842,7 @@ GNS_resolver_lookup_cancel (struct GNS_ResolverHandle *rh)
 {
   struct DnsResult *dr;
   struct AuthorityChain *ac;
+  struct VpnContext *vpn_ctx;
 
   GNUNET_CONTAINER_DLL_remove (rlh_head,
                               rlh_tail,
@@ -3252,6 +1870,12 @@ GNS_resolver_lookup_cancel (struct GNS_ResolverHandle *rh)
     GNUNET_CONTAINER_heap_remove_node (rh->dht_heap_node);
     rh->dht_heap_node = NULL;
   }
+  if (NULL != (vpn_ctx = rh->vpn_ctx))
+  {
+    GNUNET_VPN_cancel_request (vpn_ctx->vpn_request);
+    GNUNET_free (vpn_ctx->rd_data);
+    GNUNET_free (vpn_ctx);
+  }
   if (NULL != rh->dns_request)
   {
     GNUNET_DNSSTUB_resolve_cancel (rh->dns_request);
@@ -3287,15 +1911,13 @@ GNS_resolver_lookup_cancel (struct GNS_ResolverHandle *rh)
  * Initialize the resolver
  *
  * @param nh the namestore handle
- * @param dh the dht handle
+ * @param dht the dht handle
  * @param c configuration handle
  * @param max_bg_queries maximum number of parallel background queries in dht
- * @param ignore_pending ignore records that still require user confirmation
- *        on lookup
  */
 void
 GNS_resolver_init (struct GNUNET_NAMESTORE_Handle *nh,
-                  struct GNUNET_DHT_Handle *dh,
+                  struct GNUNET_DHT_Handle *dht,
                   const struct GNUNET_CONFIGURATION_Handle *c,
                   unsigned long long max_bg_queries)
 {
@@ -3303,7 +1925,7 @@ GNS_resolver_init (struct GNUNET_NAMESTORE_Handle *nh,
 
   cfg = c;
   namestore_handle = nh;
-  dht_handle = dh;
+  dht_handle = dht;
   dht_lookup_heap =
     GNUNET_CONTAINER_heap_create (GNUNET_CONTAINER_HEAP_ORDER_MIN);
   max_allowed_background_queries = max_bg_queries;
@@ -3318,6 +1940,7 @@ GNS_resolver_init (struct GNUNET_NAMESTORE_Handle *nh,
   }
   dns_handle = GNUNET_DNSSTUB_start (dns_ip);
   GNUNET_free (dns_ip);
+  vpn_handle = GNUNET_VPN_connect (cfg);
 }
 
 
@@ -3335,20 +1958,21 @@ GNS_resolver_done ()
     rh->proc (rh->proc_cls, 0, NULL);
     GNS_resolver_lookup_cancel (rh);    
   }
-  /* abort active shorten operations */
-  while (NULL != gph_head)
-    free_get_pseu_authority_handle (gph_head);
   GNUNET_CONTAINER_heap_destroy (dht_lookup_heap);
   dht_lookup_heap = NULL;
   GNUNET_DNSSTUB_stop (dns_handle);
   dns_handle = NULL;
+  GNUNET_VPN_disconnect (vpn_handle);
+  vpn_handle = NULL;
+  dht_handle = NULL;
+  namestore_handle = NULL;
 }
 
 
 /* *************** common helper functions (do not really belong here) *********** */
 
 /**
- * Checks if "name" ends in ".tld"
+ * Checks if @a name ends in ".TLD"
  *
  * @param name the name to check
  * @param tld the TLD to check for
@@ -3368,6 +1992,4 @@ is_tld (const char* name, const char* tld)
 }
 
 
-
-
 /* end of gnunet-service-gns_resolver.c */