mirror of
https://github.com/denoland/deno.git
synced 2024-11-29 16:30:56 -05:00
18a235e608
This change: 1. Sets the removal version for `Deno.ListenTlsOptions.certFile`, `Deno.ListenTlsOptions.keyFile` and `Deno.ConnectTlsOptions.certFile` for Deno v2, in favour of the `cert`, `key` and `caCerts` options, respectively. 2. Replaces use of the deprecated options with the new recommended options. Towards #22021
126 lines
3 KiB
JavaScript
126 lines
3 KiB
JavaScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
import { core, internals, primordials } from "ext:core/mod.js";
|
|
const {
|
|
op_net_accept_tls,
|
|
op_net_connect_tls,
|
|
op_net_listen_tls,
|
|
op_tls_handshake,
|
|
op_tls_start,
|
|
} = core.ensureFastOps();
|
|
const {
|
|
Number,
|
|
TypeError,
|
|
} = primordials;
|
|
|
|
import { Conn, Listener } from "ext:deno_net/01_net.js";
|
|
|
|
function opStartTls(args) {
|
|
return op_tls_start(args);
|
|
}
|
|
|
|
function opTlsHandshake(rid) {
|
|
return op_tls_handshake(rid);
|
|
}
|
|
|
|
class TlsConn extends Conn {
|
|
handshake() {
|
|
return opTlsHandshake(this.rid);
|
|
}
|
|
}
|
|
|
|
async function connectTls({
|
|
port,
|
|
hostname = "127.0.0.1",
|
|
transport = "tcp",
|
|
certFile = undefined,
|
|
caCerts = [],
|
|
certChain = undefined,
|
|
privateKey = undefined,
|
|
alpnProtocols = undefined,
|
|
}) {
|
|
if (certFile !== undefined) {
|
|
internals.warnOnDeprecatedApi(
|
|
"Deno.ConnectTlsOptions.certFile",
|
|
new Error().stack,
|
|
"Pass the cert file contents to the `Deno.ConnectTlsOptions.certChain` option instead.",
|
|
);
|
|
}
|
|
if (transport !== "tcp") {
|
|
throw new TypeError(`Unsupported transport: '${transport}'`);
|
|
}
|
|
const { 0: rid, 1: localAddr, 2: remoteAddr } = await op_net_connect_tls(
|
|
{ hostname, port },
|
|
{ certFile, caCerts, certChain, privateKey, alpnProtocols },
|
|
);
|
|
localAddr.transport = "tcp";
|
|
remoteAddr.transport = "tcp";
|
|
return new TlsConn(rid, remoteAddr, localAddr);
|
|
}
|
|
|
|
class TlsListener extends Listener {
|
|
async accept() {
|
|
const { 0: rid, 1: localAddr, 2: remoteAddr } = await op_net_accept_tls(
|
|
this.rid,
|
|
);
|
|
localAddr.transport = "tcp";
|
|
remoteAddr.transport = "tcp";
|
|
return new TlsConn(rid, remoteAddr, localAddr);
|
|
}
|
|
}
|
|
|
|
function listenTls({
|
|
port,
|
|
cert,
|
|
certFile,
|
|
key,
|
|
keyFile,
|
|
hostname = "0.0.0.0",
|
|
transport = "tcp",
|
|
alpnProtocols = undefined,
|
|
reusePort = false,
|
|
}) {
|
|
if (transport !== "tcp") {
|
|
throw new TypeError(`Unsupported transport: '${transport}'`);
|
|
}
|
|
if (keyFile !== undefined) {
|
|
internals.warnOnDeprecatedApi(
|
|
"Deno.ListenTlsOptions.keyFile",
|
|
new Error().stack,
|
|
"Pass the key file contents to the `Deno.ListenTlsOptions.key` option instead.",
|
|
);
|
|
}
|
|
if (certFile !== undefined) {
|
|
internals.warnOnDeprecatedApi(
|
|
"Deno.ListenTlsOptions.certFile",
|
|
new Error().stack,
|
|
"Pass the cert file contents to the `Deno.ListenTlsOptions.cert` option instead.",
|
|
);
|
|
}
|
|
const { 0: rid, 1: localAddr } = op_net_listen_tls(
|
|
{ hostname, port: Number(port) },
|
|
{ cert, certFile, key, keyFile, alpnProtocols, reusePort },
|
|
);
|
|
return new TlsListener(rid, localAddr);
|
|
}
|
|
|
|
async function startTls(
|
|
conn,
|
|
{
|
|
hostname = "127.0.0.1",
|
|
certFile = undefined,
|
|
caCerts = [],
|
|
alpnProtocols = undefined,
|
|
} = {},
|
|
) {
|
|
const { 0: rid, 1: localAddr, 2: remoteAddr } = await opStartTls({
|
|
rid: conn.rid,
|
|
hostname,
|
|
certFile,
|
|
caCerts,
|
|
alpnProtocols,
|
|
});
|
|
return new TlsConn(rid, remoteAddr, localAddr);
|
|
}
|
|
|
|
export { connectTls, listenTls, startTls, TlsConn, TlsListener };
|