-
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.
src: add NODE_SECURITY_REVERT environment variable
Some vendors do not allow passing custom command-line flags to the node executable. There are concerns around allowing --security-revert in NODE_OPTIONS because it might be inherited by child processes unintentionally. This patch introduces a new environment variable that, if set, is unset immediately unless it ends with "+sticky". Aside from that optional suffix, its value is a comma-separated list of CVE identifiers for which the respective security patches should be reverted. Closes: #52017
- Loading branch information
Showing
5 changed files
with
149 additions
and
8 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 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 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,90 @@ | ||
'use strict'; | ||
|
||
require('../common'); | ||
|
||
const assert = require('node:assert'); | ||
const { spawnSync } = require('node:child_process'); | ||
const { writeFileSync } = require('node:fs'); | ||
|
||
const tmpdir = require('../common/tmpdir'); | ||
tmpdir.refresh(); | ||
|
||
const testCVE = 'CVE-2009-TEST'; | ||
const testVulnerabilityTitle = 'Non-existent vulnerability for testing'; | ||
const testCVEWarningMessage = `SECURITY WARNING: Reverting ${testCVE}: ${testVulnerabilityTitle}`; | ||
const testProcKey = `REVERT_${testCVE.replace(/-/g, '_')}`; | ||
const invalidCVE = 'CVE-2009-NOPE'; | ||
const invalidCVERegExp = new RegExp(`^.+: Error: Attempt to revert an unknown CVE \\[${invalidCVE}\\]$`); | ||
|
||
const node = process.execPath; | ||
|
||
function run({ env, dotenv }) { | ||
const dotenvPath = tmpdir.resolve('.env'); | ||
if (dotenv != null) { | ||
writeFileSync(dotenvPath, `NODE_SECURITY_REVERT=${dotenv}\n`); | ||
} | ||
|
||
return spawnSync(node, [ | ||
...(dotenv != null ? ['--env-file', dotenvPath] : []), | ||
'--print', `JSON.stringify([ | ||
process.env.NODE_SECURITY_REVERT, | ||
Object.entries(process).filter(([name]) => name.startsWith("REVERT_")), | ||
child_process.execFileSync(${JSON.stringify(node)}, [ | ||
'--print', 'process.env.NODE_SECURITY_REVERT' | ||
]).toString().trim().split('\\n'), | ||
])`, | ||
], { | ||
env: { | ||
...process.env, | ||
NODE_SECURITY_REVERT: env, | ||
}, | ||
encoding: 'utf8' | ||
}); | ||
} | ||
|
||
function expectSuccess(params) { | ||
const { status, stdout, stderr } = run(params); | ||
assert.strictEqual(status, 0, `${status} ${stderr}`); | ||
assert.strictEqual(stderr.length, 0, stderr); | ||
const lines = stdout.trim().split(/\r?\n/g); | ||
assert.notStrictEqual(lines.length, 0); | ||
const output = lines.pop(); | ||
return [lines, JSON.parse(output)]; | ||
} | ||
|
||
function expectError(params) { | ||
const { status, stdout, stderr } = run(params); | ||
assert.notStrictEqual(status, 0); | ||
return [stdout.trim(), stderr.trim()]; | ||
} | ||
|
||
for (const method of ['env', 'dotenv']) { | ||
// Default: no security revert. | ||
assert.deepStrictEqual(expectSuccess({}), [[], [null, [], ['undefined']]]); | ||
|
||
// Revert a single CVE patch without child processes inheriting this behavior. | ||
assert.deepStrictEqual(expectSuccess({ [method]: testCVE }), [ | ||
[testCVEWarningMessage], | ||
[null, [[testProcKey, true]], ['undefined']], | ||
]); | ||
|
||
// Revert a single CVE patch with child processes inheriting this behavior. | ||
assert.deepStrictEqual(expectSuccess({ [method]: `${testCVE}+sticky` }), [ | ||
[testCVEWarningMessage], | ||
[`${testCVE}+sticky`, [[testProcKey, true]], [testCVEWarningMessage, `${testCVE}+sticky`]], | ||
]); | ||
|
||
// Try to revert a CVE patch that does not exist. | ||
for (const suffix of ['', '+sticky']) { | ||
const [stdout, stderr] = expectError({ [method]: `${invalidCVE}${suffix}` }); | ||
assert.strictEqual(stdout, ''); | ||
assert.match(stderr, invalidCVERegExp); | ||
} | ||
|
||
// Try to revert two CVE patches, one of which does not exist. | ||
for (const suffix of ['', '+sticky']) { | ||
const [stdout, stderr] = expectError({ [method]: `${testCVE},${invalidCVE}${suffix}` }); | ||
assert.strictEqual(stdout, testCVEWarningMessage); | ||
assert.match(stderr, invalidCVERegExp); | ||
} | ||
} |