File size: 15,831 Bytes
bee6636 |
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 |
import BareClient, { BareResponseFetch } from "@mercuryworkshop/bare-mux";
import { ScramjetServiceWorker } from ".";
import { renderError } from "./error";
import { FakeServiceWorker } from "./fakesw";
import { CookieStore } from "../shared/cookie";
import { getSiteDirective } from "../shared/security/siteTests";
import {
initializeTracker,
updateTracker,
cleanTracker,
getMostRestrictiveSite,
storeReferrerPolicy,
getReferrerPolicy,
} from "../shared/security/forceReferrer";
import {
unrewriteBlob,
unrewriteUrl,
type URLMeta,
} from "../shared/rewriters/url";
import { rewriteJsWithMap } from "../shared/rewriters/js";
import { ScramjetHeaders } from "../shared/headers";
import { config, flagEnabled } from "../shared";
import { rewriteHeaders } from "../shared/rewriters/headers";
import { rewriteHtml } from "../shared/rewriters/html";
import { rewriteCss } from "../shared/rewriters/css";
import { rewriteWorkers } from "../shared/rewriters/worker";
export async function handleFetch(
this: ScramjetServiceWorker,
request: Request,
client: Client | null
) {
try {
const requestUrl = new URL(request.url);
if (requestUrl.pathname === this.config.files.wasm) {
return fetch(this.config.files.wasm).then(async (x) => {
const buf = await x.arrayBuffer();
const b64 = btoa(
new Uint8Array(buf)
.reduce(
(data, byte) => (data.push(String.fromCharCode(byte)), data),
[]
)
.join("")
);
let payload = "";
payload +=
"if ('document' in self && document.currentScript) { document.currentScript.remove(); }\n";
payload += `self.WASM = '${b64}';`;
return new Response(payload, {
headers: { "content-type": "text/javascript" },
});
});
}
let workerType = "";
if (requestUrl.searchParams.has("type")) {
workerType = requestUrl.searchParams.get("type") as string;
requestUrl.searchParams.delete("type");
}
if (requestUrl.searchParams.has("dest")) {
requestUrl.searchParams.delete("dest");
}
const url = new URL(unrewriteUrl(requestUrl));
const meta: URLMeta = {
origin: url,
base: url,
};
if (requestUrl.searchParams.has("topFrame")) {
meta.topFrameName = requestUrl.searchParams.get("topFrame");
}
if (requestUrl.searchParams.has("parentFrame")) {
meta.parentFrameName = requestUrl.searchParams.get("parentFrame");
}
if (
requestUrl.pathname.startsWith(`${this.config.prefix}blob:`) ||
requestUrl.pathname.startsWith(`${this.config.prefix}data:`)
) {
let dataUrl = requestUrl.pathname.substring(this.config.prefix.length);
if (dataUrl.startsWith("blob:")) {
dataUrl = unrewriteBlob(dataUrl);
}
const response: Partial<BareResponseFetch> = await fetch(dataUrl, {});
const url = dataUrl.startsWith("blob:") ? dataUrl : "(data url)";
response.finalURL = url;
let body: BodyType;
if (response.body) {
body = await rewriteBody(
response as BareResponseFetch,
meta,
request.destination,
workerType,
this.cookieStore
);
}
const headers = Object.fromEntries(response.headers.entries());
if (crossOriginIsolated) {
headers["Cross-Origin-Opener-Policy"] = "same-origin";
headers["Cross-Origin-Embedder-Policy"] = "require-corp";
}
return new Response(body, {
status: response.status,
statusText: response.statusText,
headers: headers,
});
}
const activeWorker: FakeServiceWorker | null = this.serviceWorkers.find(
(w) => w.origin === url.origin
);
if (
activeWorker?.connected &&
requestUrl.searchParams.get("from") !== "swruntime"
) {
// TODO: check scope
const r = await activeWorker.fetch(request);
if (r) return r;
}
if (url.origin === new URL(request.url).origin) {
throw new Error(
"attempted to fetch from same origin - this means the site has obtained a reference to the real origin, aborting"
);
}
const headers = new ScramjetHeaders();
for (const [key, value] of request.headers.entries()) {
headers.set(key, value);
}
if (client && new URL(client.url).pathname.startsWith(config.prefix)) {
// TODO: i was against cors emulation but we might actually break stuff if we send full origin/referrer always
const clientURL = new URL(unrewriteUrl(client.url));
if (clientURL.toString().includes("youtube.com")) {
// console.log(headers);
} else {
// Force referrer to unsafe-url for all requests
headers.set("Referer", clientURL.href);
headers.set("Origin", clientURL.origin);
}
}
const cookies = this.cookieStore.getCookies(url, false);
if (cookies.length) {
headers.set("Cookie", cookies);
}
// Check if we should emulate a top-level navigation
let isTopLevelProxyNavigation = false;
if (
request.destination === "iframe" &&
request.mode === "navigate" &&
request.referrer &&
request.referrer !== "no-referrer"
) {
// Trace back through the referrer chain, checking if each was an iframe navigation using the clients, until we find a non-iframe parent on a non-proxy page
let currentReferrer = request.referrer;
const allClients = await self.clients.matchAll({ type: "window" });
// Trace backwards
while (currentReferrer) {
if (!currentReferrer.includes(config.prefix)) {
isTopLevelProxyNavigation = true;
break;
}
// Find the parent for this iteration
const parentChainClient = allClients.find(
(c) => c.url === currentReferrer
);
// Get the next referrer policy that applies to this parent
// eslint-disable-next-line no-await-in-loop
const parentPolicyData = await getReferrerPolicy(currentReferrer);
if (!parentPolicyData || !parentPolicyData.referrer) {
// Check if this ends at the proxy origin
if (
parentChainClient &&
currentReferrer.startsWith(location.origin)
) {
isTopLevelProxyNavigation = true;
}
// Results are inclusive
break;
}
// Check if this was an iframe navigation by looking at the client
if (parentChainClient && parentChainClient.frameType === "nested") {
// Continue checking the chain
currentReferrer = parentPolicyData.referrer;
} else {
// Results are inclusive
break;
}
}
}
if (isTopLevelProxyNavigation) {
headers.set("Sec-Fetch-Dest", "document");
headers.set("Sec-Fetch-Mode", "navigate");
} else {
// Convert empty destination to "empty" string per spec
headers.set("Sec-Fetch-Dest", request.destination || "empty");
headers.set("Sec-Fetch-Mode", request.mode);
}
let siteDirective = "none";
if (
request.referrer &&
request.referrer !== "" &&
request.referrer !== "no-referrer"
) {
if (request.referrer.includes(config.prefix)) {
const unrewrittenReferrer = unrewriteUrl(request.referrer);
if (unrewrittenReferrer) {
const referrerUrl = new URL(unrewrittenReferrer);
siteDirective = await getSiteDirective(
meta,
referrerUrl,
this.client
);
}
}
}
await initializeTracker(
url.toString(),
request.referrer ? unrewriteUrl(request.referrer) : null,
siteDirective
);
headers.set(
"Sec-Fetch-Site",
await getMostRestrictiveSite(url.toString(), siteDirective)
);
const ev = new ScramjetRequestEvent(
url,
headers.headers,
request.body,
request.method,
request.destination,
client
);
this.dispatchEvent(ev);
const response: BareResponseFetch =
ev.response ||
(await this.client.fetch(ev.url, {
method: ev.method,
body: ev.body,
headers: ev.requestHeaders,
credentials: "omit",
mode: request.mode === "cors" ? request.mode : "same-origin",
cache: request.cache,
redirect: "manual",
// @ts-ignore why the fuck is this not typed microsoft
duplex: "half",
}));
return await handleResponse(
url,
meta,
workerType,
request.destination,
request.mode,
response,
this.cookieStore,
client,
this.client,
this,
request.referrer
);
} catch (err) {
const errorDetails = {
message: err.message,
url: request.url,
destination: request.destination,
};
if (err.stack) {
errorDetails["stack"] = err.stack;
}
console.error("ERROR FROM SERVICE WORKER FETCH: ", errorDetails);
console.error(err);
if (!["document", "iframe"].includes(request.destination))
return new Response(undefined, { status: 500 });
const formattedError = Object.entries(errorDetails)
.map(
([key, value]) =>
`${key.charAt(0).toUpperCase() + key.slice(1)}: ${value}`
)
.join("\n\n");
return renderError(formattedError, unrewriteUrl(request.url));
}
}
async function handleResponse(
url: URL,
meta: URLMeta,
workertype: string,
destination: RequestDestination,
mode: RequestMode,
response: BareResponseFetch,
cookieStore: CookieStore,
client: Client,
bareClient: BareClient,
swtarget: ScramjetServiceWorker,
referrer: string
): Promise<Response> {
let responseBody: BodyType;
const isNavigationRequest =
mode === "navigate" && ["document", "iframe"].includes(destination);
const responseHeaders = await rewriteHeaders(
response.rawHeaders,
meta,
bareClient,
{ get: getReferrerPolicy, set: storeReferrerPolicy }
);
// Store referrer policy from navigation responses for Force Referrer
if (isNavigationRequest && responseHeaders["referrer-policy"] && referrer) {
await storeReferrerPolicy(
url.href,
responseHeaders["referrer-policy"],
referrer
);
}
if (
response.status >= 300 &&
response.status < 400 &&
responseHeaders["location"]
) {
const redirectUrl = new URL(unrewriteUrl(responseHeaders["location"]));
await updateTracker(
url.toString(),
redirectUrl.toString(),
responseHeaders["referrer-policy"]
);
const redirectMeta = {
origin: redirectUrl,
base: redirectUrl,
};
const newSiteDirective = await getSiteDirective(
redirectMeta,
url,
bareClient
);
await getMostRestrictiveSite(redirectUrl.toString(), newSiteDirective);
}
const maybeHeaders = responseHeaders["set-cookie"] || [];
for (const cookie in maybeHeaders) {
if (client) {
const promise = swtarget.dispatch(client, {
scramjet$type: "cookie",
cookie,
url: url.href,
});
if (destination !== "document" && destination !== "iframe") {
await promise;
}
}
}
await cookieStore.setCookies(
maybeHeaders instanceof Array ? maybeHeaders : [maybeHeaders],
url
);
for (const header in responseHeaders) {
// flatten everything past here
if (Array.isArray(responseHeaders[header]))
responseHeaders[header] = responseHeaders[header][0];
}
if (response.body) {
responseBody = await rewriteBody(
response,
meta,
destination,
workertype,
cookieStore
);
}
// downloads
if (["document", "iframe"].includes(destination)) {
const header = responseHeaders["content-disposition"];
// validate header and test for filename
if (!/\s*?((inline|attachment);\s*?)filename=/i.test(header)) {
// if filename= wasn"t specified then maybe the remote specified to download this as an attachment?
// if it"s invalid then we can still possibly test for the attachment/inline type
const type = /^\s*?attachment/i.test(header) ? "attachment" : "inline";
// set the filename
const [filename] = new URL(response.finalURL).pathname
.split("/")
.slice(-1);
responseHeaders["content-disposition"] =
`${type}; filename=${JSON.stringify(filename)}`;
}
}
if (responseHeaders["accept"] === "text/event-stream") {
responseHeaders["content-type"] = "text/event-stream";
}
// scramjet runtime can use features that permissions-policy blocks
delete responseHeaders["permissions-policy"];
if (
crossOriginIsolated &&
[
"document",
"iframe",
"worker",
"sharedworker",
"style",
"script",
].includes(destination)
) {
responseHeaders["Cross-Origin-Embedder-Policy"] = "require-corp";
responseHeaders["Cross-Origin-Opener-Policy"] = "same-origin";
}
const ev = new ScramjetHandleResponseEvent(
responseBody,
responseHeaders,
response.status,
response.statusText,
destination,
url,
response,
client
);
swtarget.dispatchEvent(ev);
// Clean up tracker if not a redirect
if (!(response.status >= 300 && response.status < 400)) {
await cleanTracker(url.toString());
}
return new Response(ev.responseBody, {
headers: ev.responseHeaders as HeadersInit,
status: ev.status,
statusText: ev.statusText,
});
}
async function rewriteBody(
response: BareResponseFetch,
meta: URLMeta,
destination: RequestDestination,
workertype: string,
cookieStore: CookieStore
): Promise<BodyType> {
switch (destination) {
case "iframe":
case "document":
if (response.headers.get("content-type")?.startsWith("text/html")) {
// note from percs: i think this has the potential to be slow asf, but for right now its fine (we should probably look for a better solution)
// another note from percs: regex seems to be broken, gonna comment this out
/*
const buf = await response.arrayBuffer();
const decode = new TextDecoder("utf-8").decode(buf);
const charsetHeader = response.headers.get("content-type");
const charset =
charsetHeader?.split("charset=")[1] ||
decode.match(/charset=([^"]+)/)?.[1] ||
"utf-8";
const htmlContent = charset
? new TextDecoder(charset).decode(buf)
: decode;
*/
return rewriteHtml(await response.text(), cookieStore, meta, true);
} else {
return response.body;
}
case "script": {
let { js, tag, map } = rewriteJsWithMap(
new Uint8Array(await response.arrayBuffer()),
response.finalURL,
meta,
workertype === "module"
);
if (flagEnabled("sourcemaps", meta.base) && map) {
if (js instanceof Uint8Array) {
js = new TextDecoder().decode(js);
}
const sourcemapfn = `${config.globals.pushsourcemapfn}([${map.join(",")}], "${tag}");`;
const strictMode = /^\s*(['"])use strict\1;?/;
if (strictMode.test(js)) {
js = js.replace(strictMode, `$&\n${sourcemapfn}`);
} else {
js = `${sourcemapfn}\n${js}`;
}
}
return js as unknown as ArrayBuffer;
}
case "style":
return rewriteCss(await response.text(), meta);
case "sharedworker":
case "worker":
return rewriteWorkers(
new Uint8Array(await response.arrayBuffer()),
workertype,
response.finalURL,
meta
);
default:
return response.body;
}
}
type BodyType = string | ArrayBuffer | Blob | ReadableStream<any>;
export class ScramjetHandleResponseEvent extends Event {
constructor(
public responseBody: BodyType,
public responseHeaders: Record<string, string>,
public status: number,
public statusText: string,
public destination: string,
public url: URL,
public rawResponse: BareResponseFetch,
public client: Client
) {
super("handleResponse");
}
}
export class ScramjetRequestEvent extends Event {
constructor(
public url: URL,
public requestHeaders: Record<string, string>,
public body: BodyType,
public method: string,
public destination: string,
public client: Client
) {
super("request");
}
public response?: BareResponseFetch;
}
|