forked from vercel/next.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathencryption.ts
More file actions
183 lines (148 loc) · 5.68 KB
/
encryption.ts
File metadata and controls
183 lines (148 loc) · 5.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
/* eslint-disable import/no-extraneous-dependencies */
import 'server-only'
/* eslint-disable import/no-extraneous-dependencies */
import { renderToReadableStream } from 'react-server-dom-webpack/server.edge'
/* eslint-disable import/no-extraneous-dependencies */
import { createFromReadableStream } from 'react-server-dom-webpack/client.edge'
import { streamToString } from '../stream-utils/node-web-streams-helper'
import {
arrayBufferToString,
decrypt,
encrypt,
getActionEncryptionKey,
getClientReferenceManifestForRsc,
getServerModuleMap,
stringToUint8Array,
} from './encryption-utils'
import {
getPrerenderResumeDataCache,
getRenderResumeDataCache,
workUnitAsyncStorage,
} from './work-unit-async-storage.external'
const isEdgeRuntime = process.env.NEXT_RUNTIME === 'edge'
const textEncoder = new TextEncoder()
const textDecoder = new TextDecoder()
async function decodeActionBoundArg(actionId: string, arg: string) {
const key = await getActionEncryptionKey()
if (typeof key === 'undefined') {
throw new Error(
`Missing encryption key for Server Action. This is a bug in Next.js`
)
}
// Get the iv (16 bytes) and the payload from the arg.
const originalPayload = atob(arg)
const ivValue = originalPayload.slice(0, 16)
const payload = originalPayload.slice(16)
const decrypted = textDecoder.decode(
await decrypt(key, stringToUint8Array(ivValue), stringToUint8Array(payload))
)
if (!decrypted.startsWith(actionId)) {
throw new Error('Invalid Server Action payload: failed to decrypt.')
}
return decrypted.slice(actionId.length)
}
/**
* Encrypt the serialized string with the action id as the salt. Add a prefix to
* later ensure that the payload is correctly decrypted, similar to a checksum.
*/
async function encodeActionBoundArg(actionId: string, arg: string) {
const key = await getActionEncryptionKey()
if (key === undefined) {
throw new Error(
`Missing encryption key for Server Action. This is a bug in Next.js`
)
}
// Get 16 random bytes as iv.
const randomBytes = new Uint8Array(16)
workUnitAsyncStorage.exit(() => crypto.getRandomValues(randomBytes))
const ivValue = arrayBufferToString(randomBytes.buffer)
const encrypted = await encrypt(
key,
randomBytes,
textEncoder.encode(actionId + arg)
)
return btoa(ivValue + arrayBufferToString(encrypted))
}
// Encrypts the action's bound args into a string.
export async function encryptActionBoundArgs(actionId: string, args: any[]) {
const { clientModules } = getClientReferenceManifestForRsc()
// Create an error before any asynchrounous calls, to capture the original
// call stack in case we need it when the serialization errors.
const error = new Error()
Error.captureStackTrace(error, encryptActionBoundArgs)
let didCatchError = false
// Using Flight to serialize the args into a string.
const serialized = await streamToString(
renderToReadableStream(args, clientModules, {
onError(err) {
// We're only reporting one error at a time, starting with the first.
if (didCatchError) {
return
}
didCatchError = true
// Use the original error message together with the previously created
// stack, because err.stack is a useless Flight Server call stack.
error.message = err instanceof Error ? err.message : String(err)
},
})
)
if (didCatchError) {
if (process.env.NODE_ENV === 'development') {
// Logging the error is needed for server functions that are passed to the
// client where the decryption is not done during rendering. Console
// replaying allows us to still show the error dev overlay in this case.
console.error(error)
}
throw error
}
const workUnitStore = workUnitAsyncStorage.getStore()
if (!workUnitStore) {
return encodeActionBoundArg(actionId, serialized)
}
const prerenderResumeDataCache = getPrerenderResumeDataCache(workUnitStore)
const renderResumeDataCache = getRenderResumeDataCache(workUnitStore)
const cacheKey = actionId + serialized
const cachedEncrypted =
prerenderResumeDataCache?.encryptedBoundArgs.get(cacheKey) ??
renderResumeDataCache?.encryptedBoundArgs.get(cacheKey)
if (cachedEncrypted) {
return cachedEncrypted
}
const cacheSignal =
workUnitStore.type === 'prerender' ? workUnitStore.cacheSignal : undefined
cacheSignal?.beginRead()
const encrypted = await encodeActionBoundArg(actionId, serialized)
cacheSignal?.endRead()
prerenderResumeDataCache?.encryptedBoundArgs.set(cacheKey, encrypted)
return encrypted
}
// Decrypts the action's bound args from the encrypted string.
export async function decryptActionBoundArgs(
actionId: string,
encrypted: Promise<string>
) {
const { edgeRscModuleMapping, rscModuleMapping } =
getClientReferenceManifestForRsc()
// Decrypt the serialized string with the action id as the salt.
const decrypted = await decodeActionBoundArg(actionId, await encrypted)
// Using Flight to deserialize the args from the string.
const deserialized = await createFromReadableStream(
new ReadableStream({
start(controller) {
controller.enqueue(textEncoder.encode(decrypted))
controller.close()
},
}),
{
serverConsumerManifest: {
// moduleLoading must be null because we don't want to trigger preloads of ClientReferences
// to be added to the current execution. Instead, we'll wait for any ClientReference
// to be emitted which themselves will handle the preloading.
moduleLoading: null,
moduleMap: isEdgeRuntime ? edgeRscModuleMapping : rscModuleMapping,
serverModuleMap: getServerModuleMap(),
},
}
)
return deserialized
}