summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2004-07-21 17:59:24 +0000
committerNick Mathewson <nickm@torproject.org>2004-07-21 17:59:24 +0000
commitc83f0e948f1ae3eccd55f74a15f8b33749a8b283 (patch)
tree9ab89f5be823a1c8dc4bb9d12875e084eaa11d6a
parentfd0fcc89e98068643599fb79b299e62a9b07f924 (diff)
downloadtor-c83f0e948f1ae3eccd55f74a15f8b33749a8b283.tar.gz
tor-c83f0e948f1ae3eccd55f74a15f8b33749a8b283.zip
Log certificate lifetime on failure.
svn:r2083
-rw-r--r--src/common/tortls.c43
1 files changed, 41 insertions, 2 deletions
diff --git a/src/common/tortls.c b/src/common/tortls.c
index 60e6f19cab..461883538e 100644
--- a/src/common/tortls.c
+++ b/src/common/tortls.c
@@ -601,6 +601,45 @@ tor_tls_get_peer_cert_nickname(tor_tls *tls, char *buf, int buflen)
return -1;
}
+static void log_cert_lifetime(X509 *cert, const char *problem)
+{
+ BIO *bio = NULL;
+ BUF_MEM *buf;
+ char *s1=NULL, *s2=NULL;
+
+ if (problem)
+ log_fn(LOG_WARN,"Certificate %s: is your system clock set incorrectly?",
+ problem);
+
+ if (!(bio = BIO_new(BIO_s_mem()))) {
+ log_fn(LOG_WARN, "Couldn't allocate BIO!"); goto end;
+ }
+ if (!(ASN1_TIME_print(bio, X509_get_notBefore(cert)))) {
+ tls_log_errors(LOG_WARN, "printing certificate lifetime");
+ goto end;
+ }
+ BIO_get_mem_ptr(bio, &buf);
+ s1 = tor_strndup(buf->data, buf->length);
+
+ BIO_reset(bio);
+ if (!(ASN1_TIME_print(bio, X509_get_notAfter(cert)))) {
+ tls_log_errors(LOG_WARN, "printing certificate lifetime");
+ goto end;
+ }
+ BIO_get_mem_ptr(bio, &buf);
+ s2 = tor_strndup(buf->data, buf->length);
+
+ log_fn(LOG_WARN, " (certificate lifetime runs from %s through %s)",s1,s2);
+
+ end:
+ if (bio)
+ BIO_free(bio);
+ if (s1)
+ tor_free(s1);
+ if (s2)
+ tor_free(s2);
+}
+
/** If the provided tls connection is authenticated and has a
* certificate that is currently valid and signed, then set
* *<b>identity_key</b> to the identity certificate's key and return
@@ -640,12 +679,12 @@ tor_tls_verify(tor_tls *tls, crypto_pk_env_t **identity_key)
now = time(NULL);
t = now + CERT_ALLOW_SKEW;
if (X509_cmp_time(X509_get_notBefore(cert), &t) > 0) {
- log_fn(LOG_WARN,"Certificate becomes valid in the future: is your system clock set incorrectly?");
+ log_cert_lifetime(cert, "not yet valid");
goto done;
}
t = now - CERT_ALLOW_SKEW;
if (X509_cmp_time(X509_get_notAfter(cert), &t) < 0) {
- log_fn(LOG_WARN,"Certificate already expired; is your system clock set incorrectly?");
+ log_cert_lifetime(cert, "already expired");
goto done;
}