-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
src,permission: add multiple allow-fs-* flags #49047
Merged
nodejs-github-bot
merged 7 commits into
nodejs:main
from
Ceres6:permission-multiple-allows
Aug 17, 2023
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
432f90a
src,permission: add multiple allow-fs-* flags
Ceres6 81ec076
fix tests
Ceres6 a75b87d
Update doc/api/cli.md
Ceres6 10d1288
Update lib/internal/process/pre_execution.js
Ceres6 8a98195
Update lib/internal/process/pre_execution.js
Ceres6 1cba4a0
pr comments addressed
Ceres6 15fa16e
Update src/permission/fs_permission.cc
Ceres6 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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
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,83 @@ | ||
'use strict'; | ||
|
||
require('../common'); | ||
|
||
const { spawnSync } = require('child_process'); | ||
const assert = require('assert'); | ||
const path = require('path'); | ||
|
||
{ | ||
const tmpPath = path.resolve('/tmp/'); | ||
const otherPath = path.resolve('/other-path/'); | ||
const { status, stdout } = spawnSync( | ||
process.execPath, | ||
[ | ||
'--experimental-permission', | ||
'--allow-fs-write', tmpPath, '--allow-fs-write', otherPath, '-e', | ||
`console.log(process.permission.has("fs")); | ||
console.log(process.permission.has("fs.read")); | ||
console.log(process.permission.has("fs.write")); | ||
console.log(process.permission.has("fs.write", "/tmp/")); | ||
console.log(process.permission.has("fs.write", "/other-path/"));`, | ||
] | ||
); | ||
const [fs, fsIn, fsOut, fsOutAllowed1, fsOutAllowed2] = stdout.toString().split('\n'); | ||
assert.strictEqual(fs, 'false'); | ||
assert.strictEqual(fsIn, 'false'); | ||
assert.strictEqual(fsOut, 'false'); | ||
assert.strictEqual(fsOutAllowed1, 'true'); | ||
assert.strictEqual(fsOutAllowed2, 'true'); | ||
assert.strictEqual(status, 0); | ||
} | ||
|
||
{ | ||
const tmpPath = path.resolve('/tmp/'); | ||
const pathWithComma = path.resolve('/other,path/'); | ||
const { status, stdout } = spawnSync( | ||
process.execPath, | ||
[ | ||
'--experimental-permission', | ||
'--allow-fs-write', | ||
tmpPath, | ||
'--allow-fs-write', | ||
pathWithComma, | ||
'-e', | ||
`console.log(process.permission.has("fs")); | ||
console.log(process.permission.has("fs.read")); | ||
console.log(process.permission.has("fs.write")); | ||
console.log(process.permission.has("fs.write", "/tmp/")); | ||
console.log(process.permission.has("fs.write", "/other,path/"));`, | ||
] | ||
); | ||
const [fs, fsIn, fsOut, fsOutAllowed1, fsOutAllowed2] = stdout.toString().split('\n'); | ||
assert.strictEqual(fs, 'false'); | ||
assert.strictEqual(fsIn, 'false'); | ||
assert.strictEqual(fsOut, 'false'); | ||
assert.strictEqual(fsOutAllowed1, 'true'); | ||
assert.strictEqual(fsOutAllowed2, 'true'); | ||
assert.strictEqual(status, 0); | ||
} | ||
|
||
{ | ||
const filePath = path.resolve('/tmp/file,with,comma.txt'); | ||
const { status, stdout, stderr } = spawnSync( | ||
process.execPath, | ||
[ | ||
'--experimental-permission', | ||
'--allow-fs-read=*', | ||
`--allow-fs-write=${filePath}`, | ||
'-e', | ||
`console.log(process.permission.has("fs")); | ||
console.log(process.permission.has("fs.read")); | ||
console.log(process.permission.has("fs.write")); | ||
console.log(process.permission.has("fs.write", "/tmp/file,with,comma.txt"));`, | ||
] | ||
); | ||
const [fs, fsIn, fsOut, fsOutAllowed] = stdout.toString().split('\n'); | ||
assert.strictEqual(fs, 'false'); | ||
assert.strictEqual(fsIn, 'true'); | ||
assert.strictEqual(fsOut, 'false'); | ||
assert.strictEqual(fsOutAllowed, 'true'); | ||
assert.strictEqual(status, 0); | ||
assert.ok(stderr.toString().includes('Warning: The --allow-fs-write CLI flag has changed.')); | ||
} |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This could also be added as
changes
metadata in the YAML block above.