-
Notifications
You must be signed in to change notification settings - Fork 47.3k
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
Add nonce support to bootstrap scripts and external runtime #26738
Merged
Merged
Changes from 16 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
715fe00
Add nonce support for src and module scripts
danieltott 3eb1605
prettier
danieltott 1568a43
clarify test title
danieltott 1f96d21
update attribute order
danieltott 90a10e5
add nonce test to FizzServerBrowser test
danieltott 0031469
make sure to add nonce back to script if it exists
danieltott 2647b84
pass nonce prop to the runtime script
danieltott f3d98d3
add test for nonce support
danieltott 5b76f96
Update legacy typing
danieltott 89ce5ad
Add nonce for rendered scripts
danieltott afb6d38
reorder test
danieltott d5c6bd2
Update test to use async for some scripts
danieltott b1b1940
Fix inline script content
danieltott dc3ceba
use static-dynamic-static sandwich style 🥪
danieltott bb21ba7
Remove automatic nonce-adding to rendered scripts
danieltott ceb387b
Merge branch 'facebook:main' into nonce-scripts
danieltott d2d41c4
Update computation of script chunks
danieltott 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
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -130,6 +130,9 @@ export type ResponseState = { | |||||||||||||||||||||||||||||||||||||||||||||||
startInlineScript: PrecomputedChunk, | ||||||||||||||||||||||||||||||||||||||||||||||||
instructions: InstructionState, | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
// state for outputting CSP nonce | ||||||||||||||||||||||||||||||||||||||||||||||||
nonce: string | void, | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
// state for data streaming format | ||||||||||||||||||||||||||||||||||||||||||||||||
externalRuntimeConfig: BootstrapScriptDescriptor | null, | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -160,7 +163,14 @@ const startInlineScript = stringToPrecomputedChunk('<script>'); | |||||||||||||||||||||||||||||||||||||||||||||||
const endInlineScript = stringToPrecomputedChunk('</script>'); | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
const startScriptSrc = stringToPrecomputedChunk('<script src="'); | ||||||||||||||||||||||||||||||||||||||||||||||||
const startScriptSrcWithNonce = stringToPrecomputedChunk('<script nonce="'); | ||||||||||||||||||||||||||||||||||||||||||||||||
const middleScriptSrcWithNonce = stringToPrecomputedChunk('" src="'); | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
const startModuleSrc = stringToPrecomputedChunk('<script type="module" src="'); | ||||||||||||||||||||||||||||||||||||||||||||||||
const startModuleSrcWithNonce = stringToPrecomputedChunk('<script nonce="'); | ||||||||||||||||||||||||||||||||||||||||||||||||
const middleModuleSrcWithNonce = stringToPrecomputedChunk( | ||||||||||||||||||||||||||||||||||||||||||||||||
'" type="module" src="', | ||||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||||
const scriptIntegirty = stringToPrecomputedChunk('" integrity="'); | ||||||||||||||||||||||||||||||||||||||||||||||||
const endAsyncScript = stringToPrecomputedChunk('" async=""></script>'); | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -245,10 +255,19 @@ export function createResponseState( | |||||||||||||||||||||||||||||||||||||||||||||||
typeof scriptConfig === 'string' ? scriptConfig : scriptConfig.src; | ||||||||||||||||||||||||||||||||||||||||||||||||
const integrity = | ||||||||||||||||||||||||||||||||||||||||||||||||
typeof scriptConfig === 'string' ? undefined : scriptConfig.integrity; | ||||||||||||||||||||||||||||||||||||||||||||||||
bootstrapChunks.push( | ||||||||||||||||||||||||||||||||||||||||||||||||
startScriptSrc, | ||||||||||||||||||||||||||||||||||||||||||||||||
stringToChunk(escapeTextForBrowser(src)), | ||||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||||
if (nonce === undefined) { | ||||||||||||||||||||||||||||||||||||||||||||||||
bootstrapChunks.push( | ||||||||||||||||||||||||||||||||||||||||||||||||
startScriptSrc, | ||||||||||||||||||||||||||||||||||||||||||||||||
stringToChunk(escapeTextForBrowser(src)), | ||||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||||||||||||||||||||
bootstrapChunks.push( | ||||||||||||||||||||||||||||||||||||||||||||||||
startScriptSrcWithNonce, | ||||||||||||||||||||||||||||||||||||||||||||||||
stringToChunk(escapeTextForBrowser(nonce)), | ||||||||||||||||||||||||||||||||||||||||||||||||
middleScriptSrcWithNonce, | ||||||||||||||||||||||||||||||||||||||||||||||||
stringToChunk(escapeTextForBrowser(src)), | ||||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||
if (integrity) { | ||||||||||||||||||||||||||||||||||||||||||||||||
bootstrapChunks.push( | ||||||||||||||||||||||||||||||||||||||||||||||||
scriptIntegirty, | ||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -265,10 +284,19 @@ export function createResponseState( | |||||||||||||||||||||||||||||||||||||||||||||||
typeof scriptConfig === 'string' ? scriptConfig : scriptConfig.src; | ||||||||||||||||||||||||||||||||||||||||||||||||
const integrity = | ||||||||||||||||||||||||||||||||||||||||||||||||
typeof scriptConfig === 'string' ? undefined : scriptConfig.integrity; | ||||||||||||||||||||||||||||||||||||||||||||||||
bootstrapChunks.push( | ||||||||||||||||||||||||||||||||||||||||||||||||
startModuleSrc, | ||||||||||||||||||||||||||||||||||||||||||||||||
stringToChunk(escapeTextForBrowser(src)), | ||||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||||
if (nonce === undefined) { | ||||||||||||||||||||||||||||||||||||||||||||||||
bootstrapChunks.push( | ||||||||||||||||||||||||||||||||||||||||||||||||
startModuleSrc, | ||||||||||||||||||||||||||||||||||||||||||||||||
stringToChunk(escapeTextForBrowser(src)), | ||||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||||
} else { | ||||||||||||||||||||||||||||||||||||||||||||||||
bootstrapChunks.push( | ||||||||||||||||||||||||||||||||||||||||||||||||
startModuleSrcWithNonce, | ||||||||||||||||||||||||||||||||||||||||||||||||
stringToChunk(escapeTextForBrowser(nonce)), | ||||||||||||||||||||||||||||||||||||||||||||||||
middleModuleSrcWithNonce, | ||||||||||||||||||||||||||||||||||||||||||||||||
stringToChunk(escapeTextForBrowser(src)), | ||||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would maybe just do this like the integrity attribute
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||
if (integrity) { | ||||||||||||||||||||||||||||||||||||||||||||||||
bootstrapChunks.push( | ||||||||||||||||||||||||||||||||||||||||||||||||
scriptIntegirty, | ||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -297,6 +325,7 @@ export function createResponseState( | |||||||||||||||||||||||||||||||||||||||||||||||
preloadChunks: [], | ||||||||||||||||||||||||||||||||||||||||||||||||
hoistableChunks: [], | ||||||||||||||||||||||||||||||||||||||||||||||||
stylesToHoist: false, | ||||||||||||||||||||||||||||||||||||||||||||||||
nonce, | ||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -4066,7 +4095,7 @@ export function writePreamble( | |||||||||||||||||||||||||||||||||||||||||||||||
// (User code could choose to send this even earlier by calling | ||||||||||||||||||||||||||||||||||||||||||||||||
// preinit(...), if they know they will suspend). | ||||||||||||||||||||||||||||||||||||||||||||||||
const {src, integrity} = responseState.externalRuntimeConfig; | ||||||||||||||||||||||||||||||||||||||||||||||||
internalPreinitScript(resources, src, integrity); | ||||||||||||||||||||||||||||||||||||||||||||||||
internalPreinitScript(resources, src, integrity, responseState.nonce); | ||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||
const htmlChunks = responseState.htmlChunks; | ||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -5348,6 +5377,7 @@ function internalPreinitScript( | |||||||||||||||||||||||||||||||||||||||||||||||
resources: Resources, | ||||||||||||||||||||||||||||||||||||||||||||||||
src: string, | ||||||||||||||||||||||||||||||||||||||||||||||||
integrity: ?string, | ||||||||||||||||||||||||||||||||||||||||||||||||
nonce: ?string, | ||||||||||||||||||||||||||||||||||||||||||||||||
): void { | ||||||||||||||||||||||||||||||||||||||||||||||||
const key = getResourceKey('script', src); | ||||||||||||||||||||||||||||||||||||||||||||||||
let resource = resources.scriptsMap.get(key); | ||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -5364,6 +5394,7 @@ function internalPreinitScript( | |||||||||||||||||||||||||||||||||||||||||||||||
async: true, | ||||||||||||||||||||||||||||||||||||||||||||||||
src, | ||||||||||||||||||||||||||||||||||||||||||||||||
integrity, | ||||||||||||||||||||||||||||||||||||||||||||||||
nonce, | ||||||||||||||||||||||||||||||||||||||||||||||||
}); | ||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||
return; | ||||||||||||||||||||||||||||||||||||||||||||||||
|
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
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.
same recc as for modules