aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Steffen <andreas@strongswan.org>2009-09-14 19:28:25 +0200
committerAndreas Steffen <andreas@strongswan.org>2009-09-14 19:29:05 +0200
commit5a4dee6dc4899cbcfd7eb0da927c4491633da34a (patch)
treecf54aea98625df2530b212fc152da613ec200816
parentaf0dfe49878cedde523b9f6db7c6e08c5e1ac405 (diff)
downloadstrongswan-5a4dee6dc4899cbcfd7eb0da927c4491633da34a.tar.bz2
strongswan-5a4dee6dc4899cbcfd7eb0da927c4491633da34a.tar.xz
enable debug level setting
-rw-r--r--src/pki/commands/gen.c4
-rw-r--r--src/pki/commands/issue.c12
-rw-r--r--src/pki/commands/keyid.c4
-rw-r--r--src/pki/commands/pub.c4
-rw-r--r--src/pki/commands/self.c4
-rw-r--r--src/pki/commands/verify.c4
-rw-r--r--src/pki/pki.c25
-rw-r--r--src/pki/pki.h5
8 files changed, 61 insertions, 1 deletions
diff --git a/src/pki/commands/gen.c b/src/pki/commands/gen.c
index 791c1353e..65b5f5ca6 100644
--- a/src/pki/commands/gen.c
+++ b/src/pki/commands/gen.c
@@ -32,6 +32,9 @@ static int gen(int argc, char *argv[])
{
case 'h':
return command_usage(NULL);
+ case 'v':
+ dbg_level = atoi(optarg);
+ continue;
case 't':
if (streq(optarg, "rsa"))
{
@@ -118,6 +121,7 @@ static void __attribute__ ((constructor))reg()
{"type", 't', 1, "type of key, default: rsa"},
{"size", 's', 1, "keylength in bits, default: rsa 2048, ecdsa 384"},
{"outform", 'f', 1, "encoding of generated private key"},
+ {"debug", 'v', 1, "set debug level, default: 1"},
}
});
}
diff --git a/src/pki/commands/issue.c b/src/pki/commands/issue.c
index 9953e32c6..ba0ead4b6 100644
--- a/src/pki/commands/issue.c
+++ b/src/pki/commands/issue.c
@@ -17,6 +17,7 @@
#include "pki.h"
+#include <debug.h>
#include <utils/linked_list.h>
#include <utils/optionsfrom.h>
#include <credentials/certificates/certificate.h>
@@ -56,6 +57,9 @@ static int issue(int argc, char *argv[])
{
case 'h':
goto usage;
+ case 'v':
+ dbg_level = atoi(optarg);
+ continue;
case '+':
if (!options->from(options, optarg, &argc, &argv, optind))
{
@@ -150,6 +154,8 @@ static int issue(int argc, char *argv[])
goto end;
}
}
+
+ DBG2("Reading ca certificate:");
ca = lib->creds->create(lib->creds, CRED_CERTIFICATE, CERT_X509,
BUILD_FROM_FILE, cacert, BUILD_END);
if (!ca)
@@ -163,13 +169,14 @@ static int issue(int argc, char *argv[])
error = "CA certificate misses CA basicConstraint";
goto end;
}
-
public = ca->get_public_key(ca);
if (!public)
{
error = "extracting CA certificate public key failed";
goto end;
}
+
+ DBG2("Reading ca private key:");
private = lib->creds->create(lib->creds, CRED_PRIVATE_KEY,
public->get_type(public),
BUILD_FROM_FILE, cakey, BUILD_END);
@@ -208,6 +215,7 @@ static int issue(int argc, char *argv[])
identification_t *subjectAltName;
pkcs10_t *req;
+ DBG2("Reading certificate request");
if (file)
{
cert_req = lib->creds->create(lib->creds, CRED_CERTIFICATE,
@@ -247,6 +255,7 @@ static int issue(int argc, char *argv[])
}
else
{
+ DBG2("Reading public key:");
if (file)
{
public = lib->creds->create(lib->creds, CRED_PUBLIC_KEY, KEY_ANY,
@@ -348,6 +357,7 @@ static void __attribute__ ((constructor))reg()
{"crl", 'u', 1, "CRL distribution point URI to include"},
{"ocsp", 'o', 1, "OCSP AuthorityInfoAccess URI to include"},
{"digest", 'g', 1, "digest for signature creation, default: sha1"},
+ {"debug", 'v', 1, "set debug level, default: 1"},
{"options", '+', 1, "read command line options from file"},
}
});
diff --git a/src/pki/commands/keyid.c b/src/pki/commands/keyid.c
index 128645ee0..49cc1cc58 100644
--- a/src/pki/commands/keyid.c
+++ b/src/pki/commands/keyid.c
@@ -38,6 +38,9 @@ static int keyid(int argc, char *argv[])
{
case 'h':
return command_usage(NULL);
+ case 'v':
+ dbg_level = atoi(optarg);
+ continue;
case 't':
if (streq(optarg, "rsa-priv"))
{
@@ -152,6 +155,7 @@ static void __attribute__ ((constructor))reg()
{"help", 'h', 0, "show usage information"},
{"in", 'i', 1, "input file, default: stdin"},
{"type", 't', 1, "type of key, default: rsa-priv"},
+ {"debug", 'v', 1, "set debug level, default: 1"},
}
});
}
diff --git a/src/pki/commands/pub.c b/src/pki/commands/pub.c
index 16bd0b049..9e4897b2a 100644
--- a/src/pki/commands/pub.c
+++ b/src/pki/commands/pub.c
@@ -39,6 +39,9 @@ static int pub(int argc, char *argv[])
{
case 'h':
return command_usage(NULL);
+ case 'v':
+ dbg_level = atoi(optarg);
+ continue;
case 't':
if (streq(optarg, "rsa"))
{
@@ -145,6 +148,7 @@ static void __attribute__ ((constructor))reg()
{"in", 'i', 1, "input file, default: stdin"},
{"type", 't', 1, "type of credential, default: rsa"},
{"outform", 'f', 1, "encoding of extracted public key"},
+ {"debug", 'v', 1, "set debug level, default: 1"},
}
});
}
diff --git a/src/pki/commands/self.c b/src/pki/commands/self.c
index 8da4952ca..54ef2399b 100644
--- a/src/pki/commands/self.c
+++ b/src/pki/commands/self.c
@@ -52,6 +52,9 @@ static int self(int argc, char *argv[])
{
case 'h':
goto usage;
+ case 'v':
+ dbg_level = atoi(optarg);
+ continue;
case '+':
if (!options->from(options, optarg, &argc, &argv, optind))
{
@@ -240,6 +243,7 @@ static void __attribute__ ((constructor))reg()
{"ca", 'b', 0, "include CA basicConstraint, default: no"},
{"ocsp", 'o', 1, "OCSP AuthorityInfoAccess URI to include"},
{"digest", 'g', 1, "digest for signature creation, default: sha1"},
+ {"debug", 'v', 1, "set debug level, default: 1"},
{"options", '+', 1, "read command line options from file"},
}
});
diff --git a/src/pki/commands/verify.c b/src/pki/commands/verify.c
index d089d3384..d070ce090 100644
--- a/src/pki/commands/verify.c
+++ b/src/pki/commands/verify.c
@@ -33,6 +33,9 @@ static int verify(int argc, char *argv[])
{
case 'h':
return command_usage(NULL);
+ case 'v':
+ dbg_level = atoi(optarg);
+ continue;
case 'i':
file = optarg;
continue;
@@ -129,6 +132,7 @@ static void __attribute__ ((constructor))reg()
{"help", 'h', 0, "show usage information"},
{"in", 'i', 1, "x509 certifcate to verify, default: stdin"},
{"cacert", 'c', 1, "CA certificate, default: verify self signed"},
+ {"debug", 'v', 1, "set debug level, default: 1"},
}
});
}
diff --git a/src/pki/pki.c b/src/pki/pki.c
index c1a070292..0642bedc3 100644
--- a/src/pki/pki.c
+++ b/src/pki/pki.c
@@ -16,6 +16,29 @@
#include "command.h"
#include "pki.h"
+#include <debug.h>
+
+/**
+ * Default debug level
+ */
+int dbg_level = 1;
+
+/**
+ * Logging to stderr with configurable debug level
+ */
+void dbg_pki(int level, char *fmt, ...)
+{
+ if (level <= dbg_level)
+ {
+ va_list args;
+
+ va_start(args, fmt);
+ vfprintf(stderr, fmt, args);
+ fprintf(stderr, "\n");
+ va_end(args);
+ }
+}
+
/**
* Convert a form string to a encoding type
*/
@@ -78,6 +101,8 @@ hash_algorithm_t get_digest(char *name)
*/
int main(int argc, char *argv[])
{
+ dbg = dbg_pki;
+
atexit(library_deinit);
if (!library_init(NULL))
{
diff --git a/src/pki/pki.h b/src/pki/pki.h
index 893ab52e2..135749d47 100644
--- a/src/pki/pki.h
+++ b/src/pki/pki.h
@@ -27,6 +27,11 @@
#include <credentials/keys/private_key.h>
/**
+ * Defines the settable debug level
+ */
+extern int dbg_level;
+
+/**
* Convert a form string to a encoding type
*/
bool get_form(char *form, key_encoding_type_t *type, bool pub);