-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #128 from cgzones/tls
(D)TLS fixes, especially certificate verification
- Loading branch information
Showing
11 changed files
with
194 additions
and
158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
/* SPDX-License-Identifier: LGPL-2.1-or-later */ | ||
|
||
#include "netlog-ssl.h" | ||
|
||
#include "alloc-util.h" | ||
#include "openssl-util.h" | ||
#include "socket-util.h" | ||
|
||
#include "netlog-dtls.h" | ||
#include "netlog-tls.h" | ||
|
||
static_assert(offsetof(TLSManager, auth_mode) == offsetof(DTLSManager, auth_mode)); | ||
|
||
/* inspired by SSL_set_verify(3) */ | ||
int ssl_verify_certificate_validity(int preverify_ok, X509_STORE_CTX *store) { | ||
const SSL* ssl = X509_STORE_CTX_get_ex_data(store, SSL_get_ex_data_X509_STORE_CTX_idx()); | ||
const char *pretty = (const char *) SSL_get_ex_data(ssl, EX_DATA_PRETTYADDRESS); | ||
const TLSManager *m = (const TLSManager *) SSL_get_ex_data(ssl, EX_DATA_TLSMANAGER); | ||
const X509 *error_cert = X509_STORE_CTX_get_current_cert(store); | ||
int depth = X509_STORE_CTX_get_error_depth(store); | ||
int error = X509_STORE_CTX_get_error(store); | ||
char subject_buf[256]; | ||
char issuer_buf[256]; | ||
int log_level; | ||
|
||
assert(store); | ||
assert(pretty); | ||
assert(m); | ||
|
||
X509_NAME_oneline(X509_get_subject_name(error_cert), subject_buf, sizeof(subject_buf)); | ||
X509_NAME_oneline(X509_get_issuer_name(error_cert), issuer_buf, sizeof(issuer_buf)); | ||
|
||
log_debug("TLS: Verifying SSL certificates of server %s: certificate: subject='%s' issuer='%s' depth=%d preverify_ok=%d error=%d/%s ...", | ||
pretty, subject_buf, issuer_buf, depth, preverify_ok, error, X509_verify_cert_error_string(error)); | ||
|
||
if (depth > VERIFICATION_DEPTH) { | ||
/* | ||
* From man:SSL_set_verif(3): | ||
* | ||
* Catch a too long certificate chain. The depth limit set using | ||
* SSL_CTX_set_verify_depth() is by purpose set to "limit+1" so | ||
* that whenever the "depth>verify_depth" condition is met, we | ||
* have violated the limit and want to log this error condition. | ||
* We must do it here, because the CHAIN_TOO_LONG error would not | ||
* be found explicitly; only errors introduced by cutting off the | ||
* additional certificates would be logged. | ||
*/ | ||
preverify_ok = 0; | ||
error = X509_V_ERR_CERT_CHAIN_TOO_LONG; | ||
X509_STORE_CTX_set_error(store, error); | ||
} | ||
|
||
if (preverify_ok) { | ||
log_debug("TLS: Verified SSL certificate of server=%s (certificate: subject='%s' issuer='%s' depth=%d): %s", | ||
pretty, subject_buf, issuer_buf, depth, X509_verify_cert_error_string(error)); | ||
return preverify_ok; | ||
} | ||
|
||
switch (m->auth_mode) { | ||
case OPEN_SSL_CERTIFICATE_AUTH_MODE_DENY: | ||
log_level = LOG_ERR; | ||
break; | ||
case OPEN_SSL_CERTIFICATE_AUTH_MODE_WARN: | ||
log_level = LOG_WARNING; | ||
preverify_ok = 1; | ||
break; | ||
case OPEN_SSL_CERTIFICATE_AUTH_MODE_ALLOW: | ||
log_level = LOG_DEBUG; | ||
preverify_ok = 1; | ||
break; | ||
default: | ||
assert_not_reached("Invalid certificate authentication mode"); /* mode NO does not set this callback */ | ||
} | ||
|
||
log_full(log_level, "TLS: Failed to verify certificate of server=%s (certificate: subject='%s' issuer='%s' depth=%d)%s: %s", | ||
pretty, subject_buf, issuer_buf, depth, | ||
preverify_ok ? ", ignoring" : "", | ||
X509_verify_cert_error_string(error)); | ||
|
||
return preverify_ok; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* SPDX-License-Identifier: LGPL-2.1-or-later */ | ||
#pragma once | ||
|
||
#include <openssl/ssl.h> | ||
|
||
#include "macro.h" | ||
|
||
#define VERIFICATION_DEPTH 20 | ||
|
||
#define EX_DATA_TLSMANAGER 0 | ||
#define EX_DATA_PRETTYADDRESS 1 | ||
|
||
int ssl_verify_certificate_validity(int preverify_ok, X509_STORE_CTX *store); | ||
|
||
DEFINE_TRIVIAL_CLEANUP_FUNC(SSL_CTX*, SSL_CTX_free); |
Oops, something went wrong.