-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
crypto: include NODE_EXTRA_CA_CERTS in all secure contexts by default
Store loaded NODE_EXTRA_CA_CERTS into root_certs_vector, allowing them to be added to secure contexts when NewRootCertStore() is called, rather than losing them when unrelated options are provided. When NODE_EXTRA_CA_CERTS is specified, the root certificates (both bundled and extra) will no longer be preloaded at startup. This improves Node.js startup time and makes the behavior of NODE_EXTRA_CA_CERTS consistent with the default behavior when NODE_EXTRA_CA_CERTS is omitted. The original reason NODE_EXTRA_CA_CERTS were loaded at startup (issues #20432, #20434) was to prevent the environment variable from being changed at runtime. This change preserves the runtime consistency without actually having to load the certs at startup. Fixes: #32010 Refs: #40524 Refs: #23354 PR-URL: #44529 Reviewed-By: Tim Perry <pimterry@gmail.com>
- Loading branch information
Showing
4 changed files
with
141 additions
and
117 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 was deleted.
Oops, something went wrong.
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,82 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
|
||
if (!common.hasCrypto) | ||
common.skip('missing crypto'); | ||
|
||
const assert = require('node:assert'); | ||
const tls = require('node:tls'); | ||
const { fork } = require('node:child_process'); | ||
const fixtures = require('../common/fixtures'); | ||
|
||
const tests = [ | ||
{ | ||
get clientOptions() { | ||
const secureContext = tls.createSecureContext(); | ||
secureContext.context.addCACert( | ||
fixtures.readKey('ca1-cert.pem') | ||
); | ||
|
||
return { | ||
secureContext | ||
}; | ||
} | ||
}, | ||
{ | ||
clientOptions: { | ||
crl: fixtures.readKey('ca2-crl.pem') | ||
} | ||
}, | ||
{ | ||
clientOptions: { | ||
pfx: fixtures.readKey('agent1.pfx'), | ||
passphrase: 'sample' | ||
} | ||
}, | ||
]; | ||
|
||
if (process.argv[2]) { | ||
const testNumber = parseInt(process.argv[2], 10); | ||
assert(testNumber >= 0 && testNumber < tests.length); | ||
|
||
const test = tests[testNumber]; | ||
|
||
const clientOptions = { | ||
...test.clientOptions, | ||
port: process.argv[3], | ||
checkServerIdentity: common.mustCall() | ||
}; | ||
|
||
const client = tls.connect(clientOptions, common.mustCall(() => { | ||
client.end('hi'); | ||
})); | ||
} else { | ||
const serverOptions = { | ||
key: fixtures.readKey('agent3-key.pem'), | ||
cert: fixtures.readKey('agent3-cert.pem') | ||
}; | ||
|
||
for (const testNumber in tests) { | ||
const server = tls.createServer(serverOptions, common.mustCall((socket) => { | ||
socket.end('bye'); | ||
server.close(); | ||
})); | ||
|
||
server.listen(0, common.mustCall(() => { | ||
const env = { | ||
...process.env, | ||
NODE_EXTRA_CA_CERTS: fixtures.path('keys', 'ca2-cert.pem') | ||
}; | ||
|
||
const args = [ | ||
testNumber, | ||
server.address().port, | ||
]; | ||
|
||
fork(__filename, args, { env }).on('exit', common.mustCall((status) => { | ||
assert.strictEqual(status, 0); | ||
})); | ||
})); | ||
} | ||
} |