gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r38079 - gnunet/src/gns


From: gnunet
Subject: [GNUnet-SVN] r38079 - gnunet/src/gns
Date: Fri, 7 Oct 2016 11:43:32 +0200

Author: schanzen
Date: 2016-10-07 11:43:32 +0200 (Fri, 07 Oct 2016)
New Revision: 38079

Modified:
   gnunet/src/gns/gnunet-service-gns.c
   gnunet/src/gns/gnunet-service-gns_reverser.c
   gnunet/src/gns/gnunet-service-gns_reverser.h
   gnunet/src/gns/test_gns_reverse_lookup.sh
Log:
-add reverse autoadd; with test

Modified: gnunet/src/gns/gnunet-service-gns.c
===================================================================
--- gnunet/src/gns/gnunet-service-gns.c 2016-10-06 22:39:05 UTC (rev 38078)
+++ gnunet/src/gns/gnunet-service-gns.c 2016-10-07 09:43:32 UTC (rev 38079)
@@ -301,6 +301,7 @@
     identity_handle = NULL;
   }
   GNS_resolver_done ();
+  GNS_reverse_done ();
   GNS_shorten_done ();
   while (NULL != (ma = ma_head))
   {
@@ -1061,7 +1062,52 @@
                                                 NULL);
 }
 
+/**
+ * Method called to inform about the ego to be used for the master zone
+ * for DNS interceptions.
+ *
+ * This function is only called ONCE, and 'NULL' being passed in
+ * @a ego does indicate that interception is not configured.
+ * If @a ego is non-NULL, we should start to intercept DNS queries
+ * and resolve ".gnu" queries using the given ego as the master zone.
+ *
+ * @param cls closure, our `const struct GNUNET_CONFIGURATION_Handle *c`
+ * @param ego ego handle
+ * @param ctx context for application to store data for this ego
+ *                 (during the lifetime of this process, initially NULL)
+ * @param name name assigned by the user for this ego,
+ *                   NULL if the user just deleted the ego and it
+ *                   must thus no longer be used
+ */
+static void
+identity_reverse_cb (void *cls,
+                       struct GNUNET_IDENTITY_Ego *ego,
+                       void **ctx,
+                       const char *name)
+{
+  identity_op = NULL;
 
+  if (NULL == ego)
+  {
+    GNUNET_log (GNUNET_ERROR_TYPE_INFO,
+                _("No ego configured for `%s`\n"),
+                "gns-master");
+
+    return;
+  }
+  if (GNUNET_SYSERR ==
+      GNS_reverse_init (namestore_handle,
+                        GNUNET_IDENTITY_ego_get_private_key (ego),
+                        name))
+  {
+    GNUNET_break (0);
+    GNUNET_SCHEDULER_add_now (&shutdown_task, NULL);
+    return;
+  }
+}
+
+
+
 /**
  * Method called to inform about the ego to be used for the master zone
  * for DNS interceptions.
@@ -1087,13 +1133,22 @@
 {
   const struct GNUNET_CONFIGURATION_Handle *cfg = cls;
   struct GNUNET_CRYPTO_EcdsaPublicKey dns_root;
+  identity_op = NULL;
 
-  identity_op = NULL;
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+              "Looking for gns-intercept ego\n");
+  identity_op = GNUNET_IDENTITY_get (identity_handle,
+                                     "gns-reverse",
+                                     &identity_reverse_cb,
+                                     (void*)cfg);
+
+
   if (NULL == ego)
   {
     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
                 _("No ego configured for `%s`\n"),
                 "gns-intercept");
+
     return;
   }
   GNUNET_IDENTITY_ego_get_public_key (ego,

Modified: gnunet/src/gns/gnunet-service-gns_reverser.c
===================================================================
--- gnunet/src/gns/gnunet-service-gns_reverser.c        2016-10-06 22:39:05 UTC 
(rev 38078)
+++ gnunet/src/gns/gnunet-service-gns_reverser.c        2016-10-07 09:43:32 UTC 
(rev 38079)
@@ -46,6 +46,11 @@
    */
   struct GNUNET_GNSRECORD_ReverseRecord *record;
 
+  /**
+   * Record length
+   */
+  size_t record_len;
+
 };
 
 struct IteratorHandle
@@ -61,19 +66,19 @@
   struct ReverseRecordEntry *records_tail;
 
   /**
-   * Current delegation to expect
+   * Record count
    */
-  struct GNUNET_CRYPTO_EcdsaPublicKey target;
+  uint64_t record_count;
 
   /**
-   * The zone target for reverse record resolution
+   * Current delegation to expect
    */
-  struct GNUNET_CRYPTO_EcdsaPublicKey myzone;
+  struct GNUNET_CRYPTO_EcdsaPublicKey target;
 
   /**
-   * The nick of our zone
+   * Queue entry
    */
-  char *mynick;
+  struct GNUNET_NAMESTORE_QueueEntry *ns_qe;
 
 };
 
@@ -151,6 +156,11 @@
 static struct GNUNET_SCHEDULER_Task *reverse_record_check_task;
 
 /**
+ * NS iterator task
+ */
+static struct GNUNET_SCHEDULER_Task *it_task;
+
+/**
  * GNS lookup handle
  */
 static struct GNS_ResolverHandle *gns_lookup_reverse;
@@ -165,7 +175,23 @@
  */
 static struct GNUNET_NAMESTORE_ZoneIterator *namestore_iter;
 
-void
+/**
+ * The zone target for reverse record resolution
+ */
+static struct GNUNET_CRYPTO_EcdsaPublicKey myzone;
+
+/**
+ * The zone target for reverse record resolution
+ */
+static struct GNUNET_CRYPTO_EcdsaPrivateKey pzone;
+
+/**
+ * The nick of our zone
+ */
+static char *mynick;
+
+
+static void
 cleanup_handle (struct GNS_ReverserHandle *rh)
 {
   struct ReverseTreeNode *rtn;
@@ -174,14 +200,15 @@
   {
     if (NULL != rtn->name)
       GNUNET_free (rtn->name);
-    GNUNET_CONTAINER_DLL_remove (rh->node_queue_head,
+        GNUNET_CONTAINER_DLL_remove (rh->node_queue_head,
                                  rh->node_queue_tail,
                                  rtn);
-    GNUNET_free (rtn);
+        GNUNET_free (rtn);
   }
+  GNUNET_free (rh);
 }
 
-void
+static void
 handle_gns_result (void *cls,
                    uint32_t rd_count,
                    const struct GNUNET_GNSRECORD_Data *rd)
@@ -245,9 +272,10 @@
    * Done here remove node from queue
    */
   rtn = rh->node_queue_head;
-  GNUNET_CONTAINER_DLL_remove (rh->node_queue_head,
-                               rh->node_queue_tail,
-                               rtn);
+  if (NULL != rtn)
+    GNUNET_CONTAINER_DLL_remove (rh->node_queue_head,
+                                 rh->node_queue_tail,
+                                 rtn);
   if (NULL == rh->node_queue_head)
   {
     //No luck
@@ -264,6 +292,16 @@
                                 rh);
 }
 
+/**
+ * Reverse lookup of a specific zone
+ * calls RecordLookupProcessor on result or timeout
+ *
+ * @param target the zone to perform the lookup in
+ * @param authority the authority
+ * @param proc the processor to call
+ * @param proc_cls the closure to pass to @a proc
+ * @return handle to cancel operation
+ */
 struct GNS_ReverserHandle *
 GNS_reverse_lookup (const struct GNUNET_CRYPTO_EcdsaPublicKey *target,
                     const struct GNUNET_CRYPTO_EcdsaPublicKey *authority,
@@ -309,10 +347,15 @@
   return;
 }
 
-void
+/********************************************
+ * Reverse iterator
+ * ******************************************/
+
+
+static void
 next_it (void *cls);
 
-void
+static void
 handle_gns_result_iter (void *cls,
                         uint32_t rd_count,
                         const struct GNUNET_GNSRECORD_Data *rd)
@@ -319,37 +362,47 @@
 {
   struct IteratorHandle *ith = cls;
   struct ReverseRecordEntry *rr;
+  gns_lookup_reverse = NULL;
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+              "GNS for REVERSE (%s)\n", mynick);
+
+
   if ((rd_count != 1) ||
       (GNUNET_GNSRECORD_TYPE_PKEY != rd->record_type))
   {
+    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+                "GNS invalid REVERSE (%s)\n", mynick);
     gns_lookup_reverse = NULL;
-    GNUNET_SCHEDULER_add_now (&next_it, NULL);
+    it_task = GNUNET_SCHEDULER_add_now (&next_it, ith);
     return;
   }
 
 
   rr = GNUNET_new (struct ReverseRecordEntry);
-  rr->record = GNUNET_malloc (sizeof (struct GNUNET_GNSRECORD_ReverseRecord)
-                              + strlen (ith->mynick) + 1);
+  rr->record_len = sizeof (struct GNUNET_GNSRECORD_ReverseRecord)
+    + strlen (mynick) + 1;
+  rr->record = GNUNET_malloc (rr->record_len);
   rr->record->pkey = ith->target;
   rr->record->expiration.abs_value_us = rd->expiration_time;
   GNUNET_memcpy ((char*)&rr->record[1],
-                 ith->mynick,
-                 strlen (ith->mynick));
+                 mynick,
+                 strlen (mynick));
   GNUNET_CONTAINER_DLL_insert (ith->records_head,
                                ith->records_tail,
                                rr);
-  GNUNET_SCHEDULER_add_now (&next_it, NULL);
+  ith->record_count++;
+  it_task = GNUNET_SCHEDULER_add_now (&next_it, ith);
 }
 
-void
+static void
 next_it (void *cls)
 {
+  it_task = NULL;
   GNUNET_assert (NULL != namestore_iter);
   GNUNET_NAMESTORE_zone_iterator_next (namestore_iter);
 }
 
-void
+static void
 iterator_cb (void *cls,
              const struct GNUNET_CRYPTO_EcdsaPrivateKey *key,
              const char *label,
@@ -357,42 +410,68 @@
              const struct GNUNET_GNSRECORD_Data *rd)
 {
   struct IteratorHandle *ith = cls;
-  struct GNUNET_CRYPTO_EcdsaPublicKey *target;
   struct GNUNET_CRYPTO_EcdsaPublicKey zone;
+  char *name;
 
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+              "iterating for REVERSE (%s / %s)\n",
+              label,
+              mynick);
+
+
   if ((rd_count != 1) ||
       (GNUNET_GNSRECORD_TYPE_PKEY != rd->record_type))
   {
-    GNUNET_SCHEDULER_add_now (&next_it, NULL);
+    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+                "wrong format (%s)\n", mynick);
+
+
+    it_task = GNUNET_SCHEDULER_add_now (&next_it, ith);
     return;
   }
   GNUNET_CRYPTO_ecdsa_key_get_public (key,
                                       &zone);
-  if (0 != memcmp (&zone, &ith->myzone,
+  if (0 != memcmp (&zone, &myzone,
                    sizeof (struct GNUNET_CRYPTO_EcdsaPublicKey)))
   {
-    GNUNET_SCHEDULER_add_now (&next_it, NULL);
+    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+                "wrong zone (%s)\n", mynick);
+
+
+    it_task = GNUNET_SCHEDULER_add_now (&next_it, ith);
     return;
   }
-  target = (struct GNUNET_CRYPTO_EcdsaPublicKey *) rd->data;
-  gns_lookup_reverse = GNS_resolver_lookup (target,
+  ith->target = *((struct GNUNET_CRYPTO_EcdsaPublicKey *) rd->data);
+  GNUNET_asprintf (&name,
+                  "%s.gnu",
+                  mynick);
+  gns_lookup_reverse = GNS_resolver_lookup (&ith->target,
                                             GNUNET_GNSRECORD_TYPE_PKEY,
-                                            ith->mynick,
+                                            name,
                                             NULL,
                                             GNUNET_GNS_LO_DEFAULT,
                                             &handle_gns_result_iter,
                                             ith);
+  GNUNET_free (name);
 }
 
-void check_reverse_records (void *cls);
+static void check_reverse_records (void *cls);
 
-void
-finished_cb (void *cls)
+static void
+store_reverse (void *cls,
+               int32_t success,
+               const char *emsg)
 {
   struct IteratorHandle *ith = cls;
   struct ReverseRecordEntry *rr;
 
-  //TODO add results to namestore!
+  if (GNUNET_SYSERR == success)
+  {
+    GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+                emsg);
+  }
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stored records (%s)\n", mynick);
+
   for (rr = ith->records_head; NULL != rr; rr = ith->records_head)
   {
     GNUNET_CONTAINER_DLL_remove (ith->records_head,
@@ -404,19 +483,60 @@
   reverse_record_check_task = GNUNET_SCHEDULER_add_delayed 
(GNUNET_TIME_UNIT_DAYS,
                                                             
&check_reverse_records,
                                                             NULL);
+  GNUNET_free (ith);
+}
 
+static void
+finished_cb (void *cls)
+{
+  struct IteratorHandle *ith = cls;
+  struct ReverseRecordEntry *rr;
+  struct GNUNET_GNSRECORD_Data rd[ith->record_count];
+
+  memset (rd, 0, sizeof (struct GNUNET_GNSRECORD_Data) * ith->record_count);
+
+  rr = ith->records_head;
+  for (int i = 0; i < ith->record_count; i++)
+  {
+    rd[i].data_size = rr->record_len;
+    rd[i].data = GNUNET_malloc (rr->record_len);
+    rd[i].record_type = GNUNET_GNSRECORD_TYPE_REVERSE;
+    rd[i].expiration_time = rr->record->expiration.abs_value_us;
+    GNUNET_memcpy ((char*) rd[i].data,
+                   rr->record,
+                   rr->record_len);
+    rr = rr->next;
+  }
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+              "Finished iterating for REVERSE\n");
+
+  ith->ns_qe = GNUNET_NAMESTORE_records_store (ns,
+                                               &pzone,
+                                               "+",
+                                               ith->record_count,
+                                               rd,
+                                               &store_reverse,
+                                               ith);
+  namestore_iter = NULL;
+
 }
 
-void
+static void
 it_error (void *cls)
 {
-  finished_cb (cls);
+  GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
+              "Error iterating for REVERSE\n");
 }
 
-void
+static void
 check_reverse_records (void *cls)
 {
-  struct IteratorHandle *ith = cls;
+  struct IteratorHandle *ith;
+  ith = GNUNET_new (struct IteratorHandle);
+  ith->record_count = 0;
+  reverse_record_check_task = NULL;
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+              "Start iterating for REVERSE (%s)\n", mynick);
   namestore_iter = GNUNET_NAMESTORE_zone_iteration_start (ns,
                                                           NULL,
                                                           &it_error,
@@ -427,20 +547,48 @@
                                                           ith);
 }
 
+
+/**
+ * Initialize reverser
+ *
+ * @param nh handle to a namestore
+ * @param key the private key of the gns-reverse zone
+ * @param name the name of the gns-reverse zone
+ * @return GNUNET_OK
+ */
+int
+GNS_reverse_init (struct GNUNET_NAMESTORE_Handle *nh,
+                  const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone,
+                  const char *nick)
+{
+  GNUNET_asprintf (&mynick,
+                   "%s",
+                   nick);
+  GNUNET_CRYPTO_ecdsa_key_get_public (zone,
+                                      &myzone);
+  GNUNET_memcpy (&pzone,
+                 zone,
+                 sizeof (struct GNUNET_CRYPTO_EcdsaPrivateKey));
+  ns = nh;
+  reverse_record_check_task = GNUNET_SCHEDULER_add_now (&check_reverse_records,
+                                                        NULL);
+  return GNUNET_OK;
+}
+
+/**
+ * Cleanup reverser
+ */
 void
-GNS_reverse_init (const struct GNUNET_CONFIGURATION_Handle *c,
-                  const struct GNUNET_NAMESTORE_Handle *nh,
-                  const struct GNUNET_CRYPTO_EcdsaPublicKey *myzone,
-                  const char *mynick)
+GNS_reverse_done ()
 {
-  struct IteratorHandle *ith;
-
-  ns = ns;
-  ith = GNUNET_new (struct IteratorHandle);
-  ith->mynick = GNUNET_strdup (mynick);
-  ith->myzone = *myzone;
-  reverse_record_check_task = GNUNET_SCHEDULER_add_delayed 
(GNUNET_TIME_UNIT_DAYS,
-                                                            
&check_reverse_records,
-                                                            NULL);
+  GNUNET_free (mynick);
+  if (NULL != it_task)
+    GNUNET_SCHEDULER_cancel (it_task);
+  if (NULL != reverse_record_check_task)
+    GNUNET_SCHEDULER_cancel (reverse_record_check_task);
+  if (NULL != gns_lookup_reverse)
+    GNS_resolver_lookup_cancel (gns_lookup_reverse);
+  if (NULL != namestore_iter)
+    GNUNET_NAMESTORE_zone_iteration_stop (namestore_iter);
 }
 

Modified: gnunet/src/gns/gnunet-service-gns_reverser.h
===================================================================
--- gnunet/src/gns/gnunet-service-gns_reverser.h        2016-10-06 22:39:05 UTC 
(rev 38078)
+++ gnunet/src/gns/gnunet-service-gns_reverser.h        2016-10-07 09:43:32 UTC 
(rev 38079)
@@ -69,4 +69,23 @@
 void
 GNS_reverse_lookup_cancel (struct GNS_ReverserHandle *rh);
 
+/**
+ * Initialize reverser
+ *
+ * @param nh handle to a namestore
+ * @param key the private key of the gns-reverse zone
+ * @param name the name of the gns-reverse zone
+ * @return GNUNET_OK
+ */
+int
+GNS_reverse_init (struct GNUNET_NAMESTORE_Handle *nh,
+                  const struct GNUNET_CRYPTO_EcdsaPrivateKey *key,
+                  const char *name);
+
+/**
+ * Cleanup reverser
+ */
+void
+GNS_reverse_done ();
+
 #endif

Modified: gnunet/src/gns/test_gns_reverse_lookup.sh
===================================================================
--- gnunet/src/gns/test_gns_reverse_lookup.sh   2016-10-06 22:39:05 UTC (rev 
38078)
+++ gnunet/src/gns/test_gns_reverse_lookup.sh   2016-10-07 09:43:32 UTC (rev 
38079)
@@ -16,7 +16,7 @@
 
 TEST_NAME="dave.bob.alice.gnu"
 gnunet-arm -s -c test_gns_lookup.conf
-gnunet-identity -C bobego -c test_gns_lookup.conf
+gnunet-identity -C bob -c test_gns_lookup.conf
 BOB_PKEY=$(gnunet-identity -d -c test_gns_lookup.conf | grep bob | awk '{print 
$3}')
 gnunet-identity -C daveego -c test_gns_lookup.conf
 DAVE_PKEY=$(gnunet-identity -d -c test_gns_lookup.conf | grep dave | awk 
'{print $3}')
@@ -24,14 +24,22 @@
 ALICE_PKEY=$(gnunet-identity -d -c test_gns_lookup.conf | grep alice | awk 
'{print $3}')
 gnunet-identity -C testego -c test_gns_lookup.conf
 ROOT_PKEY=$(gnunet-identity -d -c test_gns_lookup.conf | grep testego | awk 
'{print $3}')
+
+gnunet-identity -s gns-reverse -e bob -c test_gns_lookup.conf
+
 gnunet-namestore -p -z testego -a -n alice -t PKEY -V $ALICE_PKEY -e never -c 
test_gns_lookup.conf
 gnunet-namestore -p -z aliceego -a -n bob -t PKEY -V $BOB_PKEY -e never -c 
test_gns_lookup.conf
 gnunet-namestore -p -z aliceego -a -n + -t REVERSE -V "alice $ROOT_PKEY 0" -e 
never -c test_gns_lookup.conf
-gnunet-namestore -p -z bobego -a -n dave -t PKEY -V $DAVE_PKEY -e never -c 
test_gns_lookup.conf
-gnunet-namestore -p -z bobego -a -n + -t REVERSE -V "bob $ALICE_PKEY 0" -e 
never -c test_gns_lookup.conf
+gnunet-namestore -p -z bob -a -n dave -t PKEY -V $DAVE_PKEY -e never -c 
test_gns_lookup.conf
+gnunet-namestore -p -z bob -a -n alice -t PKEY -V $ALICE_PKEY -e never -c 
test_gns_lookup.conf
+#gnunet-namestore -p -z bob -a -n + -t REVERSE -V "bob $ALICE_PKEY 0" -e never 
-c test_gns_lookup.conf
 gnunet-namestore -p -z daveego -a -n + -t REVERSE -V "dave $BOB_PKEY 0" -e 
never -c test_gns_lookup.conf
+gnunet-namestore -p -z daveego -a -n bob -t PKEY -V $BOB_PKEY -e never -c 
test_gns_lookup.conf
 gnunet-arm -i gns -c test_gns_lookup.conf
-sleep 0.5
+$DO_TIMEOUT gnunet-gns --raw -z aliceego -u bob.gnu -t PKEY -c 
test_gns_lookup.conf
+sleep 10
+gnunet-namestore -z bob -D -c test_gns_lookup.conf
+gnunet-namestore -z daveego -D -c test_gns_lookup.conf
 RES_NAME=`$DO_TIMEOUT gnunet-gns --raw -z testego -R $DAVE_PKEY -c 
test_gns_lookup.conf`
 gnunet-arm -e -c test_gns_lookup.conf
 rm -rf /tmp/test-gnunet-gns-peer-1/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]