X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=src%2Fverify.c;h=5248dd6cd243dff33609066f3da00c0c3a6bf5ce;hb=64bfebde76d568808b6fa8a8d09b4b5afe13dc15;hp=4cd9d503d791ae3c427c7ffe3e845037897747cd;hpb=cb291e5cd62b9bd9a740e86b85bd4ae84595b3d3;p=tlsproxy%2Ftlsproxy.git diff --git a/src/verify.c b/src/verify.c index 4cd9d50..5248dd6 100644 --- a/src/verify.c +++ b/src/verify.c @@ -111,6 +111,7 @@ int verify_tls_connection(gnutls_session_t session, const char *hostname) { /* Open stored server certificate file. */ if (0 != server_certificate_path(&file, hostname, path, sizeof(path))) { + LOG(LOG_DEBUG, "server certificate:\n%s", server_cert); return -1; } @@ -121,9 +122,10 @@ int verify_tls_connection(gnutls_session_t session, const char *hostname) { size += strlen(buffer); /* Make sure the buffer is big enough. */ if (sizeof(stored_cert) <= size) { - LOG(LOG_WARNING, "verify_tls_connection(): '%s' too big", - path); + LOG(LOG_WARNING, "verify_tls_connection(): '%s' too big", path); fclose(file); + + LOG(LOG_DEBUG, "server certificate:\n%s", server_cert); return -1; } @@ -134,6 +136,8 @@ int verify_tls_connection(gnutls_session_t session, const char *hostname) { LOG(LOG_WARNING, "verify_tls_connection(): failed to read from '%s': %s", path, strerror(errno)); + + LOG(LOG_DEBUG, "server certificate:\n%s", server_cert); return -1; } fclose(file); @@ -143,13 +147,16 @@ int verify_tls_connection(gnutls_session_t session, const char *hostname) { LOG(LOG_ERROR, "verify_tls_connection(): server certificate changed!", path, strerror(errno)); + + LOG(LOG_WARNING, "server certificate:\n%s", server_cert); return -2; } return 0; } -int server_certificate_path(FILE **file, const char *hostname, char *path, size_t size) { +int server_certificate_path(FILE **file, const char *hostname, + char *path, size_t size) { /* Hostname too long. */ if (size - strlen(STORED_SERVER_CERT_FORMAT) <= strlen(hostname)) { LOG(LOG_WARNING, @@ -169,9 +176,15 @@ int server_certificate_path(FILE **file, const char *hostname, char *path, size_ /* Open the stored certificate file. */ *file = fopen(path, "rb"); if (NULL == *file) { - LOG(global_passthrough_unknown ? LOG_DEBUG : LOG_WARNING, - "server_certificate_path(): failed to open '%s': %s", - path, strerror(errno)); + if (global_passthrough_unknown) { + LOG(LOG_DEBUG, + "server_certificate_path(): failed to open '%s': %s", + path, strerror(errno)); + } else { + LOG(LOG_WARNING, + "server_certificate_path(): failed to open '%s': %s", + path, strerror(errno)); + } /* Couldn't open the file, special case. */ return -2; }