gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r31845 - gnunet/src/testing


From: gnunet
Subject: [GNUnet-SVN] r31845 - gnunet/src/testing
Date: Wed, 8 Jan 2014 22:29:32 +0100

Author: harsha
Date: 2014-01-08 22:29:32 +0100 (Wed, 08 Jan 2014)
New Revision: 31845

Added:
   gnunet/src/testing/list-keys.c
Modified:
   gnunet/src/testing/
   gnunet/src/testing/Makefile.am
Log:
- utility to list peer ids from a given hostkeys file


Index: gnunet/src/testing
===================================================================
--- gnunet/src/testing  2014-01-08 21:29:00 UTC (rev 31844)
+++ gnunet/src/testing  2014-01-08 21:29:32 UTC (rev 31845)

Property changes on: gnunet/src/testing
___________________________________________________________________
Modified: svn:ignore
## -11,6 +11,7 ##
 test_testing_peerstartup2
 gnunet-testing
 gnunet-testing-run-service
+list-keys
 Makefile.in
 Makefile
 .deps
Modified: gnunet/src/testing/Makefile.am
===================================================================
--- gnunet/src/testing/Makefile.am      2014-01-08 21:29:00 UTC (rev 31844)
+++ gnunet/src/testing/Makefile.am      2014-01-08 21:29:32 UTC (rev 31845)
@@ -30,6 +30,9 @@
 bin_PROGRAMS = \
  gnunet-testing
 
+noinst_PROGRAMS = \
+ list-keys
+
 gnunet_testing_SOURCES = \
  gnunet-testing.c         
 gnunet_testing_LDADD = \
@@ -39,7 +42,13 @@
 gnunet_testing_DEPENDENCIES = \
  libgnunettesting.la
 
+list_keys_SOURCES = \
+ list-keys.c
+list_keys_LDADD = \
+ $(top_builddir)/src/util/libgnunetutil.la \
+ $(GN_LIBINTL)
 
+
 check_PROGRAMS = \
  test_testing_portreservation \
  test_testing_servicestartup \

Added: gnunet/src/testing/list-keys.c
===================================================================
--- gnunet/src/testing/list-keys.c                              (rev 0)
+++ gnunet/src/testing/list-keys.c      2014-01-08 21:29:32 UTC (rev 31845)
@@ -0,0 +1,109 @@
+#include "platform.h"
+#include "gnunet_util_lib.h"
+#include "gnunet_testing_lib.h"
+
+static unsigned int nkeys;
+static unsigned int nskip;
+static int result;
+
+
+
+
+
+/**
+ * Main run function.
+ *
+ * @param cls NULL
+ * @param args arguments passed to GNUNET_PROGRAM_run
+ * @param cfgfile the path to configuration file
+ * @param cfg the configuration file handle
+ */
+static void
+run (void *cls, char *const *args, const char *cfgfile,
+     const struct GNUNET_CONFIGURATION_Handle *config)
+{
+  char *idfile;
+  struct GNUNET_DISK_FileHandle *f;
+  void *data;
+  struct GNUNET_DISK_MapHandle *map;
+  struct GNUNET_CRYPTO_EddsaPrivateKey pkey;
+  struct GNUNET_PeerIdentity id;
+  unsigned int cnt;
+  uint64_t fsize;
+  unsigned int nmax;
+
+  if ((NULL == args) || (NULL == args[0]))
+  {
+    FPRINTF (stderr, "Need the hostkey file\n");
+    return;
+  }
+  idfile = args[0];
+  if (GNUNET_OK !=
+      GNUNET_DISK_file_size (idfile, &fsize, GNUNET_YES, GNUNET_YES))
+  {
+    GNUNET_break (0);
+    return;
+  }
+  if (0 != (fsize % GNUNET_TESTING_HOSTKEYFILESIZE))
+  {
+    FPRINTF (stderr,
+             _("Incorrect hostkey file format: %s\n"), idfile);
+    return;
+  }
+  f = GNUNET_DISK_file_open (idfile, GNUNET_DISK_OPEN_READ,
+                             GNUNET_DISK_PERM_NONE);
+  if (NULL == f)
+  {
+    GNUNET_break (0);
+    return;
+  }
+  data = GNUNET_DISK_file_map (f, &map, GNUNET_DISK_MAP_TYPE_READ, fsize);
+  if (NULL == data)
+  {
+    GNUNET_break (0);
+    GNUNET_DISK_file_close (f);
+    return;
+  }
+  nmax = fsize / GNUNET_TESTING_HOSTKEYFILESIZE;
+  for (cnt = nskip; cnt < (nskip + nkeys); cnt++)
+  {
+    if (nskip + cnt >= nmax)
+    {
+      PRINTF ("Max keys %u reached\n", nmax);
+      break;
+    }
+    (void) memcpy (&pkey, data + (cnt * GNUNET_TESTING_HOSTKEYFILESIZE),
+                   GNUNET_TESTING_HOSTKEYFILESIZE);
+    GNUNET_CRYPTO_eddsa_key_get_public (&pkey, &id.public_key);
+    PRINTF ("Key %u: %s\n", cnt, GNUNET_i2s_full (&id));
+  }
+  result = GNUNET_OK;
+  GNUNET_DISK_file_unmap (map);
+  GNUNET_DISK_file_close (f);
+}
+
+
+int main (int argc, char *argv[])
+{
+  struct GNUNET_GETOPT_CommandLineOption option[] = {
+    {'n', "num-keys", "COUNT",
+     gettext_noop ("list COUNT number of keys"),
+     GNUNET_YES, &GNUNET_GETOPT_set_uint, &nkeys},
+    {'s', "skip", "COUNT",
+     gettext_noop ("skip COUNT number of keys in the beginning"),
+     GNUNET_YES, &GNUNET_GETOPT_set_uint, &nskip},
+    GNUNET_GETOPT_OPTION_END
+  };
+  int ret;
+
+  result = GNUNET_SYSERR;
+  nkeys = 10;
+  ret = 
+      GNUNET_PROGRAM_run (argc, argv, "list-keys", "Lists the peer IDs 
corresponding to the given keys file\n",
+                          option, &run, NULL);
+  if (GNUNET_OK != ret)
+    return 1;
+  if (GNUNET_SYSERR == result)
+    return 1;
+  return 0;
+}




reply via email to

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