summaryrefslogtreecommitdiffstats
path: root/src/net/tcp/https.c
diff options
context:
space:
mode:
authorMichael Brown2020-12-08 15:58:46 +0100
committerMichael Brown2020-12-08 16:04:28 +0100
commit39f5293492f351a274940d0ba2624ecb242b3c9b (patch)
treeead79747a5ab15d5db6dd4a236acdc9f224c7590 /src/net/tcp/https.c
parent[ocsp] Remove dummy OCSP certificate root (diff)
downloadipxe-39f5293492f351a274940d0ba2624ecb242b3c9b.tar.gz
ipxe-39f5293492f351a274940d0ba2624ecb242b3c9b.tar.xz
ipxe-39f5293492f351a274940d0ba2624ecb242b3c9b.zip
[x509] Record root of trust used when validating a certificate
Record the root of trust used at the point that a certificate is validated, redefine validation as checking a certificate against a specific root of trust, and pass an explicit root of trust when creating a TLS connection. This allows a custom TLS connection to be used with a custom root of trust, without causing any validated certificates to be treated as valid for normal purposes. Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/net/tcp/https.c')
-rw-r--r--src/net/tcp/https.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/tcp/https.c b/src/net/tcp/https.c
index 5a44bdebf..eae8ae5dc 100644
--- a/src/net/tcp/https.c
+++ b/src/net/tcp/https.c
@@ -46,7 +46,7 @@ FEATURE ( FEATURE_PROTOCOL, "HTTPS", DHCP_EB_FEATURE_HTTPS, 1 );
*/
static int https_filter ( struct http_connection *conn ) {
- return add_tls ( &conn->socket, conn->uri->host );
+ return add_tls ( &conn->socket, conn->uri->host, NULL );
}
/** HTTPS URI opener */