File size: 30,812 Bytes
391c43e | 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 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 | /**
* Edge Function Executor using QuickJS WebAssembly Sandbox
*
* Executes user-defined JavaScript functions in a secure sandbox using QuickJS
* compiled to WebAssembly. This provides complete isolation from the Node.js
* host environment.
*
* Security features:
* - No access to Node.js APIs (process, require, fs, child_process, etc.)
* - Complete isolation via WebAssembly (different JS engine)
* - Memory limits enforced by WebAssembly (64MB default)
* - Execution time limits via interrupt handler
* - Controlled API surface (only db, secrets, Response helpers exposed)
*
* @see https://github.com/justjake/quickjs-emscripten
*/
import type { QuickJSContext, QuickJSHandle, QuickJSWASMModule } from 'quickjs-emscripten-core';
import { newQuickJSWASMModuleFromVariant } from 'quickjs-emscripten-core';
import variant from '@jitl/quickjs-wasmfile-release-sync';
import { EdgeFunction, ServerFunction } from '@/lib/vfs/types';
import {
FunctionRequest,
FunctionResponse,
ExecutionResult,
DatabaseAPI,
} from './types';
import { createDatabaseAPI } from './database-api';
import { RuntimeDatabase } from '@/lib/vfs/adapters/runtime-database';
import { decryptSecret, isEncryptionConfigured } from './secrets-crypto';
import { createHash, randomUUID } from 'crypto';
// Cache the QuickJS module to avoid re-initializing WASM on every request
let quickJSModulePromise: Promise<QuickJSWASMModule> | null = null;
/**
* Get or initialize the QuickJS WASM module
* Packages externalized via serverExternalPackages in next.config.ts
*/
async function getQuickJSModule(): Promise<QuickJSWASMModule> {
if (!quickJSModulePromise) {
quickJSModulePromise = newQuickJSWASMModuleFromVariant(variant);
}
return quickJSModulePromise;
}
/**
* Maximum execution time in milliseconds
*/
const MAX_EXECUTION_TIME_MS = 30000;
/**
* Maximum memory in bytes (64MB)
*/
const MAX_MEMORY_BYTES = 64 * 1024 * 1024;
/**
* Fetch security limits
*/
const MAX_FETCH_REQUESTS = 10;
const FETCH_TIMEOUT_MS = 10000;
const MAX_RESPONSE_SIZE = 5 * 1024 * 1024; // 5MB
/**
* Check if a URL targets a private/internal IP address
* Only enforced in production to allow local development
*/
function isPrivateUrl(urlString: string): boolean {
// Skip check in development
if (process.env.NODE_ENV !== 'production') {
return false;
}
try {
const url = new URL(urlString);
const hostname = url.hostname.toLowerCase();
// Block localhost variants
if (hostname === 'localhost' || hostname === '127.0.0.1' || hostname === '::1') {
return true;
}
// Block private IP ranges (simple check for common patterns)
// 10.x.x.x
if (/^10\.\d{1,3}\.\d{1,3}\.\d{1,3}$/.test(hostname)) {
return true;
}
// 172.16.x.x - 172.31.x.x
if (/^172\.(1[6-9]|2\d|3[0-1])\.\d{1,3}\.\d{1,3}$/.test(hostname)) {
return true;
}
// 192.168.x.x
if (/^192\.168\.\d{1,3}\.\d{1,3}$/.test(hostname)) {
return true;
}
// 169.254.x.x (link-local, includes cloud metadata)
if (/^169\.254\.\d{1,3}\.\d{1,3}$/.test(hostname)) {
return true;
}
return false;
} catch {
return true; // Invalid URL, block it
}
}
/**
* Execute an edge function in a secure QuickJS WebAssembly sandbox
*
* @param fn The edge function definition
* @param request The incoming request
* @param deploymentDb The deployment's database instance
* @returns Execution result including response, logs, and timing
*/
export async function executeFunction(
fn: EdgeFunction,
request: FunctionRequest,
deploymentDb: RuntimeDatabase
): Promise<ExecutionResult> {
const startTime = Date.now();
const logs: string[] = [];
// Track response
let responseSet = false;
let response: FunctionResponse = {
status: 200,
headers: {},
body: '',
};
// Create database API
const db = createDatabaseAPI(deploymentDb);
// Load enabled server functions
const serverFunctions = deploymentDb.listServerFunctions().filter(f => f.enabled);
// Load and decrypt secrets
const decryptedSecrets: Record<string, string> = {};
if (isEncryptionConfigured()) {
try {
const secretRecords = deploymentDb.listSecretsWithValues();
for (const record of secretRecords) {
try {
decryptedSecrets[record.name] = decryptSecret(
record.encryptedValue,
record.iv,
record.authTag
);
} catch {
logs.push(`[WARN] Failed to decrypt secret "${record.name}"`);
}
}
} catch (error) {
logs.push(`[WARN] Failed to load secrets: ${error instanceof Error ? error.message : String(error)}`);
}
}
// Get QuickJS instance (using dynamic import for Next.js compatibility)
const QuickJS = await getQuickJSModule();
// Create runtime with memory limit
const runtime = QuickJS.newRuntime();
runtime.setMemoryLimit(MAX_MEMORY_BYTES);
// Set up execution timeout
const timeout = Math.min(fn.timeoutMs || 5000, MAX_EXECUTION_TIME_MS);
const deadline = Date.now() + timeout;
// Interrupt handler for timeout
runtime.setInterruptHandler(() => {
if (Date.now() > deadline) {
return true; // Interrupt execution
}
return false;
});
// Create context
const context = runtime.newContext();
// Track fetch usage for this execution
const fetchState: FetchState = { requestCount: 0, pendingFetches: [] };
try {
// Inject globals into the sandbox
injectGlobals(context, {
request,
db,
logs,
decryptedSecrets,
serverFunctions,
setResponse: (newResponse: FunctionResponse) => {
if (!responseSet) {
responseSet = true;
response = newResponse;
} else {
logs.push('[WARN] Response already set, ignoring subsequent call');
}
},
fetchState,
});
// Build the code to execute
const wrappedCode = buildWrappedCode(fn.code);
// Execute the code
const result = context.evalCode(wrappedCode, `edge-function:${fn.name}`);
// Handle async execution
if (result.error) {
const errorStr = context.dump(result.error);
result.error.dispose();
const message = typeof errorStr === 'object' && errorStr !== null
? (errorStr as Record<string, unknown>).message as string || JSON.stringify(errorStr)
: String(errorStr);
throw new Error(message);
}
// If we got a promise, we need to execute pending jobs
const value = result.value;
// Execute any pending async operations (including fetch)
let executePending = true;
while (executePending) {
// Wait for any pending fetch operations
const incompleteFetches = fetchState.pendingFetches.filter(f => !f.completed && f.promise !== null);
if (incompleteFetches.length > 0) {
// Wait a small amount for fetches to complete, then check again
await Promise.race([
Promise.all(incompleteFetches.map(f => f.promise!)),
new Promise(resolve => setTimeout(resolve, 10)),
]);
}
// Execute QuickJS pending jobs
const pendingResult = runtime.executePendingJobs();
if (pendingResult.error) {
const errorStr = context.dump(pendingResult.error);
pendingResult.error.dispose();
const message = typeof errorStr === 'object' && errorStr !== null
? (errorStr as Record<string, unknown>).message as string || JSON.stringify(errorStr)
: String(errorStr);
throw new Error(message);
}
// Continue if there are more QuickJS jobs OR pending fetches
const hasMoreJobs = pendingResult.value > 0;
const hasPendingFetches = fetchState.pendingFetches.some(f => !f.completed);
executePending = hasMoreJobs || hasPendingFetches;
// Check timeout
if (Date.now() > deadline) {
throw new Error('Function execution timed out');
}
}
value.dispose();
// If no response was set, return 204 No Content
if (!responseSet) {
response = { status: 204, headers: {}, body: '' };
}
return {
response,
logs,
durationMs: Date.now() - startTime,
};
} catch (error) {
const errorMessage = formatError(error);
logs.push(`[ERROR] ${errorMessage}`);
return {
response: {
status: 500,
headers: { 'Content-Type': 'application/json' },
body: { error: errorMessage },
},
logs,
durationMs: Date.now() - startTime,
error: errorMessage,
};
} finally {
// Always clean up
context.dispose();
runtime.dispose();
}
}
/**
* Configuration for injecting globals into the sandbox
*/
interface GlobalsConfig {
request: FunctionRequest;
db: DatabaseAPI;
logs: string[];
decryptedSecrets: Record<string, string>;
serverFunctions: ServerFunction[];
setResponse: (response: FunctionResponse) => void;
fetchState: FetchState;
}
/**
* Tracks fetch usage within a single execution
*/
interface FetchState {
requestCount: number;
pendingFetches: Array<{
promise: Promise<void> | null;
completed: boolean;
}>;
}
/**
* Inject global objects and functions into the QuickJS context
*/
function injectGlobals(context: QuickJSContext, config: GlobalsConfig): void {
const { request, db, logs, decryptedSecrets, serverFunctions, setResponse, fetchState } = config;
// Inject request object (read-only data)
const requestHandle = jsonToHandle(context, request);
context.setProp(context.global, 'request', requestHandle);
requestHandle.dispose();
// Inject console object
injectConsole(context, logs);
// Inject Response helpers
injectResponseHelpers(context, setResponse);
// Inject database API
injectDatabaseAPI(context, db, logs);
// Inject secrets API
injectSecretsAPI(context, decryptedSecrets);
// Inject server functions namespace
injectServerFunctions(context, serverFunctions, logs);
// Inject fetch API
injectFetch(context, logs, fetchState);
// Inject base64 helpers (atob/btoa)
injectBase64Helpers(context);
// Inject crypto helpers (sha256, randomUUID)
injectCryptoHelpers(context);
}
/**
* Inject console object with log capture
*/
function injectConsole(context: QuickJSContext, logs: string[]): void {
const consoleObj = context.newObject();
const methods = ['log', 'error', 'warn', 'info'] as const;
const prefixes = {
log: '[LOG]',
error: '[ERROR]',
warn: '[WARN]',
info: '[INFO]',
};
for (const method of methods) {
const fn = context.newFunction(method, (...args: QuickJSHandle[]) => {
const parts = args.map(arg => {
const value = context.dump(arg);
return formatValue(value);
});
logs.push(`${prefixes[method]} ${parts.join(' ')}`);
});
context.setProp(consoleObj, method, fn);
fn.dispose();
}
context.setProp(context.global, 'console', consoleObj);
consoleObj.dispose();
}
/**
* Inject Response helper object
*/
function injectResponseHelpers(context: QuickJSContext, setResponse: (response: FunctionResponse) => void): void {
const responseObj = context.newObject();
// Response.json(data, status?, headers?)
const jsonFn = context.newFunction('json', (dataHandle: QuickJSHandle, statusHandle?: QuickJSHandle, headersHandle?: QuickJSHandle) => {
const data = context.dump(dataHandle);
const status = statusHandle ? (context.dump(statusHandle) as number) : 200;
const extraHeaders = headersHandle ? (context.dump(headersHandle) as Record<string, string>) : {};
setResponse({
status,
headers: { 'Content-Type': 'application/json', ...extraHeaders },
body: data as object,
});
});
context.setProp(responseObj, 'json', jsonFn);
jsonFn.dispose();
// Response.text(text, status?, headers?)
const textFn = context.newFunction('text', (textHandle: QuickJSHandle, statusHandle?: QuickJSHandle, headersHandle?: QuickJSHandle) => {
const text = context.dump(textHandle) as string;
const status = statusHandle ? (context.dump(statusHandle) as number) : 200;
const extraHeaders = headersHandle ? (context.dump(headersHandle) as Record<string, string>) : {};
setResponse({
status,
headers: { 'Content-Type': 'text/plain', ...extraHeaders },
body: text,
});
});
context.setProp(responseObj, 'text', textFn);
textFn.dispose();
// Response.error(message, status?, headers?)
const errorFn = context.newFunction('error', (msgHandle: QuickJSHandle, statusHandle?: QuickJSHandle, headersHandle?: QuickJSHandle) => {
const message = context.dump(msgHandle) as string;
const status = statusHandle ? (context.dump(statusHandle) as number) : 500;
const extraHeaders = headersHandle ? (context.dump(headersHandle) as Record<string, string>) : {};
setResponse({
status,
headers: { 'Content-Type': 'application/json', ...extraHeaders },
body: { error: message },
});
});
context.setProp(responseObj, 'error', errorFn);
errorFn.dispose();
context.setProp(context.global, 'Response', responseObj);
responseObj.dispose();
}
/**
* Inject database API
*/
function injectDatabaseAPI(context: QuickJSContext, db: DatabaseAPI, logs: string[]): void {
const dbObj = context.newObject();
// db.query(sql, params?)
const queryFn = context.newFunction('query', (sqlHandle: QuickJSHandle, paramsHandle?: QuickJSHandle) => {
try {
const sql = context.dump(sqlHandle) as string;
const params = paramsHandle ? (context.dump(paramsHandle) as unknown[]) : undefined;
const result = db.query(sql, params);
return jsonToHandle(context, result);
} catch (error) {
const msg = error instanceof Error ? error.message : String(error);
logs.push(`[ERROR] db.query failed: ${msg}`);
throw error;
}
});
context.setProp(dbObj, 'query', queryFn);
queryFn.dispose();
// db.run(sql, params?)
const runFn = context.newFunction('run', (sqlHandle: QuickJSHandle, paramsHandle?: QuickJSHandle) => {
try {
const sql = context.dump(sqlHandle) as string;
const params = paramsHandle ? (context.dump(paramsHandle) as unknown[]) : undefined;
const result = db.run(sql, params);
return jsonToHandle(context, result);
} catch (error) {
const msg = error instanceof Error ? error.message : String(error);
logs.push(`[ERROR] db.run failed: ${msg}`);
throw error;
}
});
context.setProp(dbObj, 'run', runFn);
runFn.dispose();
// db.all(sql, params?) - alias for query
const allFn = context.newFunction('all', (sqlHandle: QuickJSHandle, paramsHandle?: QuickJSHandle) => {
try {
const sql = context.dump(sqlHandle) as string;
const params = paramsHandle ? (context.dump(paramsHandle) as unknown[]) : undefined;
const result = db.all(sql, params);
return jsonToHandle(context, result);
} catch (error) {
const msg = error instanceof Error ? error.message : String(error);
logs.push(`[ERROR] db.all failed: ${msg}`);
throw error;
}
});
context.setProp(dbObj, 'all', allFn);
allFn.dispose();
context.setProp(context.global, 'db', dbObj);
dbObj.dispose();
}
/**
* Inject secrets API
*/
function injectSecretsAPI(context: QuickJSContext, secrets: Record<string, string>): void {
const secretsObj = context.newObject();
// secrets.get(name)
const getFn = context.newFunction('get', (nameHandle: QuickJSHandle) => {
const name = context.dump(nameHandle) as string;
const value = secrets[name];
if (value === undefined) {
return context.null;
}
return context.newString(value);
});
context.setProp(secretsObj, 'get', getFn);
getFn.dispose();
// secrets.has(name)
const hasFn = context.newFunction('has', (nameHandle: QuickJSHandle) => {
const name = context.dump(nameHandle) as string;
return name in secrets ? context.true : context.false;
});
context.setProp(secretsObj, 'has', hasFn);
hasFn.dispose();
// secrets.list()
const listFn = context.newFunction('list', () => {
return jsonToHandle(context, Object.keys(secrets));
});
context.setProp(secretsObj, 'list', listFn);
listFn.dispose();
context.setProp(context.global, 'secrets', secretsObj);
secretsObj.dispose();
}
/**
* Inject server functions namespace
*/
function injectServerFunctions(
context: QuickJSContext,
serverFunctions: ServerFunction[],
logs: string[]
): void {
const serverObj = context.newObject();
for (const serverFn of serverFunctions) {
const fn = context.newFunction(serverFn.name, (...args: QuickJSHandle[]) => {
try {
const jsArgs = args.map(arg => context.dump(arg));
const serverFnCode = `
(function(args, db) {
'use strict';
${serverFn.code}
})
`;
const evalResult = context.evalCode(serverFnCode, `server-function:${serverFn.name}`);
if (evalResult.error) {
const errorStr = context.dump(evalResult.error);
evalResult.error.dispose();
throw new Error(`Server function "${serverFn.name}" error: ${errorStr}`);
}
const fnHandle = evalResult.value;
const argsHandle = jsonToHandle(context, jsArgs);
const dbHandle = context.getProp(context.global, 'db');
const callResult = context.callFunction(fnHandle, context.undefined, argsHandle, dbHandle);
fnHandle.dispose();
argsHandle.dispose();
dbHandle.dispose();
if (callResult.error) {
const errorStr = context.dump(callResult.error);
callResult.error.dispose();
throw new Error(`Server function "${serverFn.name}" error: ${errorStr}`);
}
const result = callResult.value;
const resultValue = context.dump(result);
result.dispose();
return jsonToHandle(context, resultValue);
} catch (error) {
const msg = error instanceof Error ? error.message : String(error);
logs.push(`[ERROR] Server function "${serverFn.name}" failed: ${msg}`);
throw error;
}
});
context.setProp(serverObj, serverFn.name, fn);
fn.dispose();
}
context.setProp(context.global, 'server', serverObj);
serverObj.dispose();
}
/**
* Inject fetch API with security controls
*
* Since QuickJS is synchronous, we implement fetch by:
* 1. Creating a QuickJS promise that user code can await
* 2. Starting the real fetch on Node.js side
* 3. Resolving the QuickJS promise when fetch completes
* 4. The execution loop polls for pending fetches
*/
function injectFetch(context: QuickJSContext, logs: string[], fetchState: FetchState): void {
const fetchFn = context.newFunction('fetch', (urlHandle: QuickJSHandle, optionsHandle?: QuickJSHandle) => {
try {
const url = context.dump(urlHandle) as string;
const options = optionsHandle ? (context.dump(optionsHandle) as Record<string, unknown>) : {};
// Security checks
if (fetchState.requestCount >= MAX_FETCH_REQUESTS) {
throw new Error(`Maximum fetch requests (${MAX_FETCH_REQUESTS}) exceeded`);
}
// Validate URL and protocol
let protocol: string;
try {
const parsedUrl = new URL(url);
protocol = parsedUrl.protocol;
} catch {
throw new Error('Invalid URL');
}
if (!['http:', 'https:'].includes(protocol)) {
throw new Error('Only http and https protocols are allowed');
}
// Private IP check (production only)
if (isPrivateUrl(url)) {
throw new Error('Requests to private/internal addresses are not allowed');
}
fetchState.requestCount++;
logs.push(`[INFO] fetch: ${options.method || 'GET'} ${url}`);
// Create a deferred promise in QuickJS
const promiseCode = `
(function() {
let _resolve, _reject;
const promise = new Promise((resolve, reject) => {
_resolve = resolve;
_reject = reject;
});
promise._resolve = _resolve;
promise._reject = _reject;
return promise;
})()
`;
const promiseResult = context.evalCode(promiseCode, 'fetch-promise');
if (promiseResult.error) {
const errorStr = context.dump(promiseResult.error);
promiseResult.error.dispose();
throw new Error(`Failed to create promise: ${errorStr}`);
}
const promiseHandle = promiseResult.value;
// Track this fetch operation
const fetchEntry: { promise: Promise<void> | null; completed: boolean } = { promise: null, completed: false };
// Execute the actual fetch
fetchEntry.promise = (async () => {
try {
const controller = new AbortController();
const timeoutId = setTimeout(() => controller.abort(), FETCH_TIMEOUT_MS);
const fetchOptions: RequestInit = {
method: (options.method as string) || 'GET',
headers: options.headers as Record<string, string>,
body: options.body ? JSON.stringify(options.body) : undefined,
signal: controller.signal,
};
const response = await globalThis.fetch(url, fetchOptions);
clearTimeout(timeoutId);
// Check response size
const contentLength = response.headers.get('content-length');
if (contentLength && parseInt(contentLength) > MAX_RESPONSE_SIZE) {
throw new Error(`Response too large (max ${MAX_RESPONSE_SIZE / 1024 / 1024}MB)`);
}
// Read response body
const text = await response.text();
if (text.length > MAX_RESPONSE_SIZE) {
throw new Error(`Response too large (max ${MAX_RESPONSE_SIZE / 1024 / 1024}MB)`);
}
// Build response object for QuickJS
const headers: Record<string, string> = {};
response.headers.forEach((value, key) => {
headers[key] = value;
});
const responseObj = {
ok: response.ok,
status: response.status,
statusText: response.statusText,
headers,
url: response.url,
};
// Resolve the promise with the response object
const resolveHandle = context.getProp(promiseHandle, '_resolve');
const responseHandle = jsonToHandle(context, responseObj);
// Add json() and text() methods to the response
const jsonMethod = context.newFunction('json', () => {
try {
return jsonToHandle(context, JSON.parse(text));
} catch {
throw new Error('Failed to parse JSON');
}
});
context.setProp(responseHandle, 'json', jsonMethod);
jsonMethod.dispose();
const textMethod = context.newFunction('text', () => {
return context.newString(text);
});
context.setProp(responseHandle, 'text', textMethod);
textMethod.dispose();
context.callFunction(resolveHandle, context.undefined, responseHandle);
resolveHandle.dispose();
responseHandle.dispose();
} catch (error) {
const errorMsg = error instanceof Error ? error.message : String(error);
logs.push(`[ERROR] fetch failed: ${errorMsg}`);
// Reject the promise
const rejectHandle = context.getProp(promiseHandle, '_reject');
const errorHandle = context.newString(errorMsg);
context.callFunction(rejectHandle, context.undefined, errorHandle);
rejectHandle.dispose();
errorHandle.dispose();
} finally {
fetchEntry.completed = true;
}
})();
fetchState.pendingFetches.push(fetchEntry);
return promiseHandle;
} catch (error) {
const errorMsg = error instanceof Error ? error.message : String(error);
logs.push(`[ERROR] fetch failed: ${errorMsg}`);
throw context.newError(errorMsg);
}
});
context.setProp(context.global, 'fetch', fetchFn);
fetchFn.dispose();
}
/**
* Inject atob/btoa base64 encoding functions
*/
function injectBase64Helpers(context: QuickJSContext): void {
// btoa - binary to ASCII (encode)
const btoaFn = context.newFunction('btoa', (dataHandle: QuickJSHandle) => {
const data = context.dump(dataHandle) as string;
const encoded = Buffer.from(data, 'binary').toString('base64');
return context.newString(encoded);
});
context.setProp(context.global, 'btoa', btoaFn);
btoaFn.dispose();
// atob - ASCII to binary (decode)
const atobFn = context.newFunction('atob', (dataHandle: QuickJSHandle) => {
const data = context.dump(dataHandle) as string;
const decoded = Buffer.from(data, 'base64').toString('binary');
return context.newString(decoded);
});
context.setProp(context.global, 'atob', atobFn);
atobFn.dispose();
}
/**
* Inject crypto helpers (sha256, randomUUID)
* These run in the Node.js host and are exposed as sync functions to QuickJS.
*/
function injectCryptoHelpers(context: QuickJSContext): void {
const cryptoObj = context.newObject();
const sha256Fn = context.newFunction('sha256', (dataHandle: QuickJSHandle) => {
const data = context.dump(dataHandle) as string;
const hash = createHash('sha256').update(data).digest('hex');
return context.newString(hash);
});
context.setProp(cryptoObj, 'sha256', sha256Fn);
sha256Fn.dispose();
const uuidFn = context.newFunction('randomUUID', () => {
return context.newString(randomUUID());
});
context.setProp(cryptoObj, 'randomUUID', uuidFn);
uuidFn.dispose();
context.setProp(context.global, 'crypto', cryptoObj);
cryptoObj.dispose();
}
/**
* Build the wrapped code for execution
*/
function buildWrappedCode(code: string): string {
return `
(async function() {
'use strict';
try {
${code}
} catch (error) {
const msg = error instanceof Error ? error.message : String(error);
Response.error(msg, 500);
}
})();
`;
}
/**
* Convert a JavaScript value to a QuickJS handle
*/
function jsonToHandle(context: QuickJSContext, value: unknown): QuickJSHandle {
if (value === null) {
return context.null;
}
if (value === undefined) {
return context.undefined;
}
if (typeof value === 'boolean') {
return value ? context.true : context.false;
}
if (typeof value === 'number') {
return context.newNumber(value);
}
if (typeof value === 'string') {
return context.newString(value);
}
if (Array.isArray(value)) {
const arr = context.newArray();
for (let i = 0; i < value.length; i++) {
const itemHandle = jsonToHandle(context, value[i]);
context.setProp(arr, i, itemHandle);
itemHandle.dispose();
}
return arr;
}
if (typeof value === 'object') {
const obj = context.newObject();
for (const [key, val] of Object.entries(value)) {
const valHandle = jsonToHandle(context, val);
context.setProp(obj, key, valHandle);
valHandle.dispose();
}
return obj;
}
return context.newString(String(value));
}
/**
* Format a value for console output
*/
function formatValue(value: unknown): string {
if (value === null) return 'null';
if (value === undefined) return 'undefined';
if (typeof value === 'string') return value;
if (typeof value === 'number' || typeof value === 'boolean') return String(value);
try {
return JSON.stringify(value, null, 2);
} catch {
return String(value);
}
}
/**
* Format an error message
*/
function formatError(error: unknown): string {
if (error instanceof Error) {
if (error.message.includes('interrupted')) {
return 'Function execution timed out';
}
if (error.message.includes('memory')) {
return 'Function exceeded memory limit';
}
return error.message;
}
return String(error);
}
/**
* Validate function code before saving
* Returns an error message if invalid, null if valid
*/
export function validateFunctionCode(code: string): string | null {
if (!code || code.trim().length === 0) {
return 'Function code cannot be empty';
}
// Check for common mistakes
if (code.includes('import ')) {
return 'ES6 import statements are not supported. Use the provided APIs.';
}
if (code.includes('require(')) {
return 'require() is not available. Use the provided APIs.';
}
return null;
}
/**
* Validate function name (URL-safe)
* Returns an error message if invalid, null if valid
*/
export function validateFunctionName(name: string): string | null {
if (!name || name.trim().length === 0) {
return 'Function name cannot be empty';
}
if (name.length > 64) {
return 'Function name must be 64 characters or less';
}
// Must be URL-safe: lowercase letters, numbers, hyphens
if (!/^[a-z0-9][a-z0-9-]*[a-z0-9]$|^[a-z0-9]$/.test(name)) {
return 'Function name must be URL-safe (lowercase letters, numbers, hyphens only, cannot start or end with hyphen)';
}
// Reserved names
const reserved = ['health', 'status', 'ping', 'api', 'admin', 'static'];
if (reserved.includes(name)) {
return `Function name "${name}" is reserved`;
}
return null;
}
/**
* Validate server function name (valid JS identifier)
* Returns an error message if invalid, null if valid
*/
export function validateServerFunctionName(name: string): string | null {
if (!name || name.trim().length === 0) {
return 'Function name cannot be empty';
}
if (name.length > 64) {
return 'Function name must be 64 characters or less';
}
// Must be valid JavaScript identifier
if (!/^[a-zA-Z_][a-zA-Z0-9_]*$/.test(name)) {
return 'Function name must be a valid identifier (letters, numbers, underscores; cannot start with number)';
}
// Reserved JavaScript keywords
const jsReserved = [
'break', 'case', 'catch', 'continue', 'debugger', 'default', 'delete', 'do',
'else', 'finally', 'for', 'function', 'if', 'in', 'instanceof', 'new',
'return', 'switch', 'this', 'throw', 'try', 'typeof', 'var', 'void',
'while', 'with', 'class', 'const', 'enum', 'export', 'extends', 'import',
'super', 'implements', 'interface', 'let', 'package', 'private', 'protected',
'public', 'static', 'yield', 'await', 'async',
];
if (jsReserved.includes(name)) {
return `"${name}" is a reserved JavaScript keyword`;
}
// Reserved server function names
const reserved = ['db', 'fetch', 'console', 'args', 'request', 'Response', 'server', 'secrets', 'atob', 'btoa'];
if (reserved.includes(name)) {
return `"${name}" is reserved and cannot be used as a server function name`;
}
return null;
}
|