XRootD
Loading...
Searching...
No Matches
XrdTlsNotaryUtils.icc File Reference
#include <openssl/x509v3.h>
#include <openssl/ssl.h>
Include dependency graph for XrdTlsNotaryUtils.icc:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define HOSTNAME_MAX_SIZE   255

Functions

static HostnameValidationResult matches_common_name (const char *hostname, const X509 *server_cert)
static HostnameValidationResult matches_subject_alternative_name (const char *hostname, const X509 *server_cert)
HostnameValidationResult validate_hostname (const char *hostname, const X509 *server_cert)

Macro Definition Documentation

◆ HOSTNAME_MAX_SIZE

#define HOSTNAME_MAX_SIZE   255

Definition at line 47 of file XrdTlsNotaryUtils.icc.

Function Documentation

◆ matches_common_name()

HostnameValidationResult matches_common_name ( const char * hostname,
const X509 * server_cert )
static

Tries to find a match for hostname in the certificate's Common Name field.

Returns MatchFound if a match was found. Returns MatchNotFound if no matches were found. Returns MalformedCertificate if the Common Name had a NUL character embedded in it. Returns Error if the Common Name could not be extracted.

Definition at line 57 of file XrdTlsNotaryUtils.icc.

57 {
58 int common_name_loc = -1;
59 X509_NAME_ENTRY *common_name_entry = NULL;
60 ASN1_STRING *common_name_asn1 = NULL;
61 char *common_name_str = NULL;
62
63 // Find the position of the CN field in the Subject field of the certificate
64 common_name_loc = X509_NAME_get_index_by_NID(X509_get_subject_name((X509 *) server_cert), NID_commonName, -1);
65 if (common_name_loc < 0) {
66 return Error;
67 }
68
69 // Extract the CN field
70 common_name_entry = X509_NAME_get_entry(X509_get_subject_name((X509 *) server_cert), common_name_loc);
71 if (common_name_entry == NULL) {
72 return Error;
73 }
74
75 // Convert the CN field to a C string
76 common_name_asn1 = X509_NAME_ENTRY_get_data(common_name_entry);
77 if (common_name_asn1 == NULL) {
78 return Error;
79 }
80 common_name_str = (char *) ASN1_STRING_get0_data(common_name_asn1);
81
82 // Make sure there isn't an embedded NUL character in the CN
83 if ((size_t)ASN1_STRING_length(common_name_asn1) != strlen(common_name_str)) {
85 }
86
87 // Compare expected hostname with the CN
88 if (Curl_cert_hostcheck(common_name_str, hostname) == CURL_HOST_MATCH) {
89 return MatchFound;
90 }
91 else {
92 return MatchNotFound;
93 }
94}
int Curl_cert_hostcheck(const char *match_pattern, const char *hostname)
#define CURL_HOST_MATCH
@ MatchNotFound
@ MalformedCertificate
@ MatchFound

References Curl_cert_hostcheck(), CURL_HOST_MATCH, Error, MalformedCertificate, MatchFound, and MatchNotFound.

Referenced by XrdTlsNotary::Validate(), and validate_hostname().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ matches_subject_alternative_name()

HostnameValidationResult matches_subject_alternative_name ( const char * hostname,
const X509 * server_cert )
static

Tries to find a match for hostname in the certificate's Subject Alternative Name extension.

Returns MatchFound if a match was found. Returns MatchNotFound if no matches were found. Returns MalformedCertificate if any of the hostnames had a NUL character embedded in it. Returns NoSANPresent if the SAN extension was not present in the certificate.

Definition at line 105 of file XrdTlsNotaryUtils.icc.

105 {
107 int i;
108 int san_names_nb = -1;
109 STACK_OF(GENERAL_NAME) *san_names = NULL;
110
111 // Try to extract the names within the SAN extension from the certificate
112 san_names = static_cast<GENERAL_NAMES *>(
113 X509_get_ext_d2i((X509 *) server_cert,
114 NID_subject_alt_name, NULL, NULL));
115 if (san_names == NULL) {
116 return NoSANPresent;
117 }
118 san_names_nb = sk_GENERAL_NAME_num(san_names);
119
120 // Check each name within the extension
121 for (i=0; i<san_names_nb; i++) {
122 const GENERAL_NAME *current_name = sk_GENERAL_NAME_value(san_names, i);
123
124 if (current_name->type == GEN_DNS) {
125 // Current name is a DNS name, let's check it
126 char *dns_name = (char *) ASN1_STRING_get0_data(current_name->d.dNSName);
127
128 // Make sure there isn't an embedded NUL character in the DNS name
129 if ((size_t)ASN1_STRING_length(current_name->d.dNSName) != strlen(dns_name)) {
130 result = MalformedCertificate;
131 break;
132 }
133 else { // Compare expected hostname with the DNS name
134 if (Curl_cert_hostcheck(dns_name, hostname)
135 == CURL_HOST_MATCH) {
136 result = MatchFound;
137 break;
138 }
139 }
140 }
141 }
142 sk_GENERAL_NAME_pop_free(san_names, GENERAL_NAME_free);
143
144 return result;
145}
HostnameValidationResult
@ NoSANPresent

References Curl_cert_hostcheck(), CURL_HOST_MATCH, MalformedCertificate, MatchFound, MatchNotFound, and NoSANPresent.

Referenced by XrdTlsNotary::Validate(), and validate_hostname().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ validate_hostname()

HostnameValidationResult validate_hostname ( const char * hostname,
const X509 * server_cert )

Validates the server's identity by looking for the expected hostname in the server's certificate. As described in RFC 6125, it first tries to find a match in the Subject Alternative Name extension. If the extension is not present in the certificate, it checks the Common Name instead.

Returns MatchFound if a match was found. Returns MatchNotFound if no matches were found. Returns MalformedCertificate if any of the hostnames had a NUL character embedded in it. Returns Error if there was an error.

Definition at line 159 of file XrdTlsNotaryUtils.icc.

159 {
161
162 if((hostname == NULL) || (server_cert == NULL))
163 return Error;
164
165 // First try the Subject Alternative Names extension
166 result = matches_subject_alternative_name(hostname, server_cert);
167 if (result == NoSANPresent) {
168 // Extension was not found: try the Common Name
169 result = matches_common_name(hostname, server_cert);
170 }
171
172 return result;
173}
static HostnameValidationResult matches_common_name(const char *hostname, const X509 *server_cert)
static HostnameValidationResult matches_subject_alternative_name(const char *hostname, const X509 *server_cert)

References Error, matches_common_name(), matches_subject_alternative_name(), and NoSANPresent.

Here is the call graph for this function: