2015-09-28 11:33:33 +05:30
|
|
|
'use strict';
|
|
|
|
|
2016-05-30 01:45:20 +02:00
|
|
|
const common = require('../common');
|
2017-07-01 02:29:09 +03:00
|
|
|
if (!common.hasCrypto)
|
2016-05-30 01:45:20 +02:00
|
|
|
common.skip('missing crypto');
|
|
|
|
|
2015-09-28 11:33:33 +05:30
|
|
|
const assert = require('assert');
|
|
|
|
const tls = require('tls');
|
|
|
|
|
2019-12-25 18:02:16 +01:00
|
|
|
assert.throws(
|
2018-04-16 22:58:19 +08:00
|
|
|
() => tls.createSecureContext({ ciphers: 1 }),
|
|
|
|
{
|
|
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
2019-12-25 18:02:16 +01:00
|
|
|
name: 'TypeError',
|
tls: support TLSv1.3
This introduces TLS1.3 support and makes it the default max protocol,
but also supports CLI/NODE_OPTIONS switches to disable it if necessary.
TLS1.3 is a major update to the TLS protocol, with many security
enhancements. It should be preferred over TLS1.2 whenever possible.
TLS1.3 is different enough that even though the OpenSSL APIs are
technically API/ABI compatible, that when TLS1.3 is negotiated, the
timing of protocol records and of callbacks broke assumptions hard-coded
into the 'tls' module.
This change introduces no API incompatibilities when TLS1.2 is
negotiated. It is the intention that it be backported to current and LTS
release lines with the default maximum TLS protocol reset to 'TLSv1.2'.
This will allow users of those lines to explicitly enable TLS1.3 if they
want.
API incompatibilities between TLS1.2 and TLS1.3 are:
- Renegotiation is not supported by TLS1.3 protocol, attempts to call
`.renegotiate()` will always fail.
- Compiling against a system OpenSSL lower than 1.1.1 is no longer
supported (OpenSSL-1.1.0 used to be supported with configure flags).
- Variations of `conn.write('data'); conn.destroy()` have undefined
behaviour according to the streams API. They may or may not send the
'data', and may or may not cause a ERR_STREAM_DESTROYED error to be
emitted. This has always been true, but conditions under which the write
suceeds is slightly but observably different when TLS1.3 is negotiated
vs when TLS1.2 or below is negotiated.
- If TLS1.3 is negotiated, and a server calls `conn.end()` in its
'secureConnection' listener without any data being written, the client
will not receive session tickets (no 'session' events will be emitted,
and `conn.getSession()` will never return a resumable session).
- The return value of `conn.getSession()` API may not return a resumable
session if called right after the handshake. The effect will be that
clients using the legacy `getSession()` API will resume sessions if
TLS1.2 is negotiated, but will do full handshakes if TLS1.3 is
negotiated. See https://github.com/nodejs/node/pull/25831 for more
information.
PR-URL: https://github.com/nodejs/node/pull/26209
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
2018-11-28 17:58:08 -08:00
|
|
|
message: 'The "options.ciphers" property must be of type string.' +
|
2019-09-23 08:17:25 +02:00
|
|
|
' Received type number (1)'
|
2018-04-16 22:58:19 +08:00
|
|
|
});
|
2015-09-28 11:33:33 +05:30
|
|
|
|
2019-12-25 18:02:16 +01:00
|
|
|
assert.throws(
|
2018-04-16 22:58:19 +08:00
|
|
|
() => tls.createServer({ ciphers: 1 }),
|
|
|
|
{
|
|
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
2019-12-25 18:02:16 +01:00
|
|
|
name: 'TypeError',
|
tls: support TLSv1.3
This introduces TLS1.3 support and makes it the default max protocol,
but also supports CLI/NODE_OPTIONS switches to disable it if necessary.
TLS1.3 is a major update to the TLS protocol, with many security
enhancements. It should be preferred over TLS1.2 whenever possible.
TLS1.3 is different enough that even though the OpenSSL APIs are
technically API/ABI compatible, that when TLS1.3 is negotiated, the
timing of protocol records and of callbacks broke assumptions hard-coded
into the 'tls' module.
This change introduces no API incompatibilities when TLS1.2 is
negotiated. It is the intention that it be backported to current and LTS
release lines with the default maximum TLS protocol reset to 'TLSv1.2'.
This will allow users of those lines to explicitly enable TLS1.3 if they
want.
API incompatibilities between TLS1.2 and TLS1.3 are:
- Renegotiation is not supported by TLS1.3 protocol, attempts to call
`.renegotiate()` will always fail.
- Compiling against a system OpenSSL lower than 1.1.1 is no longer
supported (OpenSSL-1.1.0 used to be supported with configure flags).
- Variations of `conn.write('data'); conn.destroy()` have undefined
behaviour according to the streams API. They may or may not send the
'data', and may or may not cause a ERR_STREAM_DESTROYED error to be
emitted. This has always been true, but conditions under which the write
suceeds is slightly but observably different when TLS1.3 is negotiated
vs when TLS1.2 or below is negotiated.
- If TLS1.3 is negotiated, and a server calls `conn.end()` in its
'secureConnection' listener without any data being written, the client
will not receive session tickets (no 'session' events will be emitted,
and `conn.getSession()` will never return a resumable session).
- The return value of `conn.getSession()` API may not return a resumable
session if called right after the handshake. The effect will be that
clients using the legacy `getSession()` API will resume sessions if
TLS1.2 is negotiated, but will do full handshakes if TLS1.3 is
negotiated. See https://github.com/nodejs/node/pull/25831 for more
information.
PR-URL: https://github.com/nodejs/node/pull/26209
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
2018-11-28 17:58:08 -08:00
|
|
|
message: 'The "options.ciphers" property must be of type string.' +
|
2019-09-23 08:17:25 +02:00
|
|
|
' Received type number (1)'
|
2018-04-16 22:58:19 +08:00
|
|
|
});
|
2015-09-28 11:33:33 +05:30
|
|
|
|
2019-12-25 18:02:16 +01:00
|
|
|
assert.throws(
|
2018-04-16 22:58:19 +08:00
|
|
|
() => tls.createSecureContext({ key: 'dummykey', passphrase: 1 }),
|
|
|
|
{
|
|
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
2019-12-25 18:02:16 +01:00
|
|
|
name: 'TypeError',
|
2020-10-15 13:01:59 -07:00
|
|
|
message: /The "options\.passphrase" property must be of type string/
|
2018-04-16 22:58:19 +08:00
|
|
|
});
|
2015-09-28 11:33:33 +05:30
|
|
|
|
2019-12-25 18:02:16 +01:00
|
|
|
assert.throws(
|
2018-04-16 22:58:19 +08:00
|
|
|
() => tls.createServer({ key: 'dummykey', passphrase: 1 }),
|
|
|
|
{
|
|
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
2019-12-25 18:02:16 +01:00
|
|
|
name: 'TypeError',
|
2020-10-15 13:01:59 -07:00
|
|
|
message: /The "options\.passphrase" property must be of type string/
|
2018-04-16 22:58:19 +08:00
|
|
|
});
|
2015-09-28 11:33:33 +05:30
|
|
|
|
2019-12-25 18:02:16 +01:00
|
|
|
assert.throws(
|
2018-04-16 22:58:19 +08:00
|
|
|
() => tls.createServer({ ecdhCurve: 1 }),
|
|
|
|
{
|
|
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
2019-12-25 18:02:16 +01:00
|
|
|
name: 'TypeError',
|
2020-10-15 13:01:59 -07:00
|
|
|
message: /The "options\.ecdhCurve" property must be of type string/
|
2018-04-16 22:58:19 +08:00
|
|
|
});
|
2015-09-28 11:33:33 +05:30
|
|
|
|
2019-12-25 18:02:16 +01:00
|
|
|
assert.throws(
|
2018-04-16 22:58:19 +08:00
|
|
|
() => tls.createServer({ handshakeTimeout: 'abcd' }),
|
|
|
|
{
|
|
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
2019-12-25 18:02:16 +01:00
|
|
|
name: 'TypeError',
|
2019-09-23 08:17:25 +02:00
|
|
|
message: 'The "options.handshakeTimeout" property must be of type number.' +
|
|
|
|
" Received type string ('abcd')"
|
2018-04-16 22:58:19 +08:00
|
|
|
}
|
2017-07-25 10:37:08 -07:00
|
|
|
);
|
2015-09-28 11:33:33 +05:30
|
|
|
|
2019-12-25 18:02:16 +01:00
|
|
|
assert.throws(
|
2018-04-16 22:58:19 +08:00
|
|
|
() => tls.createServer({ sessionTimeout: 'abcd' }),
|
|
|
|
{
|
|
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
2019-12-25 18:02:16 +01:00
|
|
|
name: 'TypeError',
|
2020-10-15 13:01:59 -07:00
|
|
|
message: /The "options\.sessionTimeout" property must be of type number/
|
2018-04-16 22:58:19 +08:00
|
|
|
});
|
2015-09-28 11:33:33 +05:30
|
|
|
|
2019-12-25 18:02:16 +01:00
|
|
|
assert.throws(
|
2018-04-16 22:58:19 +08:00
|
|
|
() => tls.createServer({ ticketKeys: 'abcd' }),
|
|
|
|
{
|
|
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
2019-12-25 18:02:16 +01:00
|
|
|
name: 'TypeError',
|
2020-10-15 13:01:59 -07:00
|
|
|
message: /The "options\.ticketKeys" property must be an instance of/
|
2018-04-16 22:58:19 +08:00
|
|
|
});
|
2015-09-28 11:33:33 +05:30
|
|
|
|
2020-10-15 13:01:59 -07:00
|
|
|
assert.throws(() => tls.createServer({ ticketKeys: Buffer.alloc(0) }), {
|
|
|
|
code: 'ERR_INVALID_ARG_VALUE',
|
|
|
|
message: /The property 'options\.ticketKeys' must be exactly 48 bytes/
|
|
|
|
});
|
2015-09-28 11:33:33 +05:30
|
|
|
|
2016-08-11 00:46:06 +05:30
|
|
|
{
|
|
|
|
const buffer = Buffer.from('abcd');
|
|
|
|
const out = {};
|
|
|
|
tls.convertALPNProtocols(buffer, out);
|
|
|
|
out.ALPNProtocols.write('efgh');
|
|
|
|
assert(buffer.equals(Buffer.from('abcd')));
|
|
|
|
assert(out.ALPNProtocols.equals(Buffer.from('efgh')));
|
|
|
|
}
|
|
|
|
|
2017-03-22 07:42:04 +01:00
|
|
|
{
|
2018-10-01 22:52:30 -04:00
|
|
|
const arrayBufferViewStr = 'abcd';
|
|
|
|
const inputBuffer = Buffer.from(arrayBufferViewStr.repeat(8), 'utf8');
|
|
|
|
for (const expectView of common.getArrayBufferViews(inputBuffer)) {
|
|
|
|
const out = {};
|
2022-05-26 15:02:28 +08:00
|
|
|
const expected = Buffer.from(expectView.buffer.slice(),
|
|
|
|
expectView.byteOffset,
|
|
|
|
expectView.byteLength);
|
2018-10-01 22:52:30 -04:00
|
|
|
tls.convertALPNProtocols(expectView, out);
|
2022-05-26 15:02:28 +08:00
|
|
|
assert(out.ALPNProtocols.equals(expected));
|
2018-10-01 22:52:30 -04:00
|
|
|
}
|
2017-03-22 07:42:04 +01:00
|
|
|
}
|
2018-10-12 14:44:10 -04:00
|
|
|
|
|
|
|
{
|
|
|
|
const protocols = [(new String('a')).repeat(500)];
|
|
|
|
const out = {};
|
2019-12-25 18:02:16 +01:00
|
|
|
assert.throws(
|
2018-10-12 14:44:10 -04:00
|
|
|
() => tls.convertALPNProtocols(protocols, out),
|
|
|
|
{
|
|
|
|
code: 'ERR_OUT_OF_RANGE',
|
|
|
|
message: 'The byte length of the protocol at index 0 exceeds the ' +
|
|
|
|
'maximum length. It must be <= 255. Received 500'
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2019-11-30 11:28:38 -08:00
|
|
|
|
|
|
|
assert.throws(() => { tls.createSecureContext({ minVersion: 'fhqwhgads' }); },
|
|
|
|
{
|
|
|
|
code: 'ERR_TLS_INVALID_PROTOCOL_VERSION',
|
|
|
|
name: 'TypeError'
|
|
|
|
});
|
|
|
|
|
|
|
|
assert.throws(() => { tls.createSecureContext({ maxVersion: 'fhqwhgads' }); },
|
|
|
|
{
|
|
|
|
code: 'ERR_TLS_INVALID_PROTOCOL_VERSION',
|
|
|
|
name: 'TypeError'
|
|
|
|
});
|
2023-10-01 07:38:10 +09:00
|
|
|
|
|
|
|
for (const checkServerIdentity of [undefined, null, 1, true]) {
|
|
|
|
assert.throws(() => {
|
|
|
|
tls.connect({ checkServerIdentity });
|
|
|
|
}, {
|
|
|
|
code: 'ERR_INVALID_ARG_TYPE',
|
|
|
|
name: 'TypeError',
|
|
|
|
});
|
|
|
|
}
|