-handle failure to load certs more nicely
[oweals/gnunet.git] / src / gns / gnunet-gns.c
index d58018d202798b2710e2d97cbae9ba05c813c148..0a6bcf66b4ffb7003c2aac5e3d5386d198a36160 100644 (file)
  * @file gnunet-gns.c
  * @brief command line tool to access distributed GNS
  * @author Christian Grothoff
- *
  */
 #include "platform.h"
 #include <gnunet_util_lib.h>
 #include <gnunet_dnsparser_lib.h>
+#include <gnunet_identity_service.h>
 #include <gnunet_namestore_service.h>
 #include <gnunet_gns_service.h>
 
+/**
+ * Configuration we are using.
+ */
+static const struct GNUNET_CONFIGURATION_Handle *cfg;
+
 /**
  * Handle to GNS service.
  */
@@ -44,6 +49,16 @@ static char *lookup_name;
  */
 static char *lookup_type;
 
+/**
+ * Identity of the zone to use for the lookup (-z option)
+ */
+static char *zone_ego_name;
+
+/**
+ * Public key of the zone to use for the lookup (-p option)
+ */
+static char *public_key;
+
 /**
  * raw output
  */
@@ -59,6 +74,21 @@ static int rtype;
  */
 static struct GNUNET_GNS_LookupRequest *lookup_request;
 
+/**
+ * Lookup an ego with the identity service.
+ */
+static struct GNUNET_IDENTITY_EgoLookup *el;
+
+/**
+ * Handle for identity service.
+ */
+static struct GNUNET_IDENTITY_Handle *identity;
+
+/**
+ * Active operation on identity service.
+ */
+static struct GNUNET_IDENTITY_Operation *id_op;
+
 
 /**
  * Task run on shutdown.  Cleans up everything.
@@ -70,11 +100,26 @@ static void
 do_shutdown (void *cls,
             const struct GNUNET_SCHEDULER_TaskContext *tc)
 {
+  if (NULL != el)
+  {
+    GNUNET_IDENTITY_ego_lookup_cancel (el);
+    el = NULL;
+  }
+  if (NULL != id_op)
+  {
+    GNUNET_IDENTITY_cancel (id_op);
+    id_op = NULL;
+  }
   if (NULL != lookup_request)
   {
     GNUNET_GNS_lookup_cancel (lookup_request);
     lookup_request = NULL;
   }
+  if (NULL != identity)
+  {
+    GNUNET_IDENTITY_disconnect (identity);
+    identity = NULL;
+  }
   if (NULL != gns)
   {
     GNUNET_GNS_disconnect (gns);
@@ -128,56 +173,16 @@ process_lookup_result (void *cls, uint32_t rd_count,
 
 
 /**
- * Main function that will be run.
+ * Perform the actual resolution, starting with the zone
+ * identified by the given public key and the shorten zone.
  *
- * @param cls closure
- * @param args remaining command-line arguments
- * @param cfgfile name of the configuration file used (for saving, can be NULL!)
- * @param cfg configuration
+ * @param pkey public key to use for the zone, can be NULL
+ * @param shorten_key private key used for shortening, can be NULL
  */
 static void
-run (void *cls, char *const *args, const char *cfgfile,
-     const struct GNUNET_CONFIGURATION_Handle *cfg)
+lookup_with_keys (const struct GNUNET_CRYPTO_EccPublicSignKey *pkey,
+                 const struct GNUNET_CRYPTO_EccPrivateKey *shorten_key)
 {
-  char *keyfile;
-  struct GNUNET_CRYPTO_EccPrivateKey *key;
-  struct GNUNET_CRYPTO_EccPublicKey pkey;
-  struct GNUNET_CRYPTO_EccPrivateKey *shorten_key;
-
-  gns = GNUNET_GNS_connect (cfg);
-  if (NULL == gns)
-  {
-    fprintf (stderr,
-            _("Failed to connect to GNS\n"));
-    return;
-  }
-  if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_filename (cfg, "gns",
-                                                           "ZONEKEY", &keyfile))
-  {
-    fprintf (stderr,
-            "Need zone to perform lookup in!\n");
-    GNUNET_SCHEDULER_shutdown ();
-    return;
-  }
-  /* FIXME: use identity service and/or allow user to specify public key! */
-  key = GNUNET_CRYPTO_ecc_key_create_from_file (keyfile);
-  GNUNET_CRYPTO_ecc_key_get_public (key, &pkey);
-  GNUNET_CRYPTO_ecc_key_free (key);  
-  GNUNET_free (keyfile);
-  
-  if (GNUNET_OK != 
-      GNUNET_CONFIGURATION_get_value_filename (cfg, "gns",
-                                              "SHORTEN_ZONEKEY", &keyfile))
-  {
-    shorten_key = NULL;
-  }
-  else
-  {
-    // FIXME: use identity service!
-    shorten_key = GNUNET_CRYPTO_ecc_key_create_from_file (keyfile);
-    GNUNET_free (keyfile);
-  }
-    
   if (NULL != lookup_type)
     rtype = GNUNET_NAMESTORE_typename_to_number (lookup_type);
   else
@@ -187,7 +192,7 @@ run (void *cls, char *const *args, const char *cfgfile,
   {
     lookup_request = GNUNET_GNS_lookup (gns, 
                                        lookup_name,
-                                       &pkey,
+                                       pkey,
                                        rtype,
                                        GNUNET_NO, /* Use DHT */
                                        shorten_key,
@@ -201,10 +206,196 @@ run (void *cls, char *const *args, const char *cfgfile,
     GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
     return;
   }
-  if (NULL != shorten_key)
-    GNUNET_CRYPTO_ecc_key_free (shorten_key);
+}
+
+
+/** 
+ * Method called to with the ego we are to use for shortening
+ * during the lookup.
+ *
+ * @param cls closure contains the public key to use
+ * @param ego ego handle, NULL if not found
+ * @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_shorten_cb (void *cls,
+                    struct GNUNET_IDENTITY_Ego *ego,
+                    void **ctx,
+                    const char *name)
+{
+  struct GNUNET_CRYPTO_EccPublicSignKey *pkeym = cls;
+
+  id_op = NULL;
+  if (NULL == ego) 
+    lookup_with_keys (pkeym, NULL);
+  else
+    lookup_with_keys (pkeym,
+                     GNUNET_IDENTITY_ego_get_private_key (ego));
+  GNUNET_free (pkeym);
+}
+
+
+/**
+ * Perform the actual resolution, starting with the zone
+ * identified by the given public key.
+ *
+ * @param pkey public key to use for the zone
+ */
+static void
+lookup_with_public_key (const struct GNUNET_CRYPTO_EccPublicSignKey *pkey)
+{
+  struct GNUNET_CRYPTO_EccPublicSignKey *pkeym;
+
+  GNUNET_assert (NULL != pkey);
+  pkeym = GNUNET_new (struct GNUNET_CRYPTO_EccPublicSignKey);
+  *pkeym = *pkey;
+  id_op = GNUNET_IDENTITY_get (identity,
+                              "shorten-zone",
+                              &identity_shorten_cb,
+                              pkeym);
+  if (NULL == id_op)
+  {
+    GNUNET_break (0);
+    lookup_with_keys (pkey, NULL);
+  }
+}
+
+
+/** 
+ * Method called to with the ego we are to use for the lookup,
+ * when the ego is determined by a name.
+ *
+ * @param cls closure (NULL, unused)
+ * @param ego ego handle, NULL if not found
+ */
+static void 
+identity_zone_cb (void *cls,
+                 const struct GNUNET_IDENTITY_Ego *ego)
+{
+  struct GNUNET_CRYPTO_EccPublicSignKey pkey;
+
+  el = NULL;
+  if (NULL == ego) 
+  {
+    fprintf (stderr,
+            _("Ego for `%s' not found, cannot perform lookup.\n"),
+            zone_ego_name);
+    GNUNET_SCHEDULER_shutdown ();
+  }
+  else
+  {
+    GNUNET_IDENTITY_ego_get_public_key (ego, &pkey);
+    lookup_with_public_key (&pkey);
+  }
+  GNUNET_free_non_null (zone_ego_name);
+  zone_ego_name = NULL;
+}
+
+
+/** 
+ * Method called to with the ego we are to use for the lookup,
+ * when the ego is the one for the default master zone.
+ *
+ * @param cls closure (NULL, unused)
+ * @param ego ego handle, NULL if not found
+ * @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_master_cb (void *cls,
+                   struct GNUNET_IDENTITY_Ego *ego,
+                   void **ctx,
+                   const char *name)
+{
+  struct GNUNET_CRYPTO_EccPublicSignKey pkey;
+
+  id_op = NULL;
+  if (NULL == ego) 
+  {
+    fprintf (stderr,
+            _("Ego for `master-zone' not found, cannot perform lookup.  Did you run gnunet-gns-import.sh?\n"));
+    GNUNET_SCHEDULER_shutdown ();
+    return;
+  }
+  GNUNET_IDENTITY_ego_get_public_key (ego, &pkey);
+  lookup_with_public_key (&pkey);
+}
+
+
+/**
+ * Main function that will be run.
+ *
+ * @param cls closure
+ * @param args remaining command-line arguments
+ * @param cfgfile name of the configuration file used (for saving, can be NULL!)
+ * @param c configuration
+ */
+static void
+run (void *cls, char *const *args, const char *cfgfile,
+     const struct GNUNET_CONFIGURATION_Handle *c)
+{
+  struct GNUNET_CRYPTO_EccPublicSignKey pkey;
+
+  cfg = c;
+  gns = GNUNET_GNS_connect (cfg);
+  identity = GNUNET_IDENTITY_connect (cfg, NULL, NULL);
+  if (NULL == gns)
+  {
+    fprintf (stderr,
+            _("Failed to connect to GNS\n"));
+    return;
+  }
   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
                                &do_shutdown, NULL);
+  if (NULL != public_key)
+  {
+    if (GNUNET_OK !=
+       GNUNET_CRYPTO_ecc_public_sign_key_from_string (public_key,
+                                                 strlen (public_key),
+                                                 &pkey))
+    {
+      fprintf (stderr, 
+              _("Public key `%s' is not well-formed\n"),
+              public_key);
+      GNUNET_SCHEDULER_shutdown ();
+      return;
+    }
+    lookup_with_public_key (&pkey);
+    return;
+  }
+  if (NULL != zone_ego_name)
+  {
+    el = GNUNET_IDENTITY_ego_lookup (cfg, 
+                                    zone_ego_name,
+                                    &identity_zone_cb,
+                                    NULL);
+    return;
+  }
+  if ( (NULL != lookup_name) &&
+       (strlen (lookup_name) > 4) &&
+       (0 == strcmp (".zkey",
+                    &lookup_name[strlen (lookup_name) - 4])) )
+  {
+    /* no zone required, use 'anonymous' zone */
+    GNUNET_CRYPTO_ecc_key_get_public_for_signature (GNUNET_CRYPTO_ecc_key_get_anonymous (),
+                                     &pkey);
+    lookup_with_public_key (&pkey);
+  }
+  else
+  {
+    id_op = GNUNET_IDENTITY_get (identity,
+                                "master-zone",
+                                &identity_master_cb,
+                                NULL);
+    GNUNET_assert (NULL != id_op);
+  }
 }
 
 
@@ -228,6 +419,12 @@ main (int argc, char *const *argv)
     {'r', "raw", NULL,
       gettext_noop ("No unneeded output"), 0,
       &GNUNET_GETOPT_set_one, &raw},
+    {'p', "public-key", "PKEY",
+      gettext_noop ("Specify the public key of the zone to lookup the record in"), 1,
+      &GNUNET_GETOPT_set_string, &public_key},
+    {'z', "zone", "NAME",
+      gettext_noop ("Specify the name of the ego of the zone to lookup the record in"), 1,
+      &GNUNET_GETOPT_set_string, &zone_ego_name},
     GNUNET_GETOPT_OPTION_END
   };
   int ret;