Files
OmniRoute/open-sse/services/browserPool.ts
opensource-elearning e2e330a058 perf(stream): compile hot-path regexes once, bound token caches, fix quadratic buffering (#12179)
Validado sobre o tip de `release/v3.8.51` após reconciliar quatro arquivos que driftaram. Em parte o tip já tinha absorvido a intenção deste branch por abstrações melhores, então mantive a forma do tip e trouxe os ganhos que ainda eram reais:

- **`sseCollect.ts`** — o tip extraiu `stripObfuscationZeroWidth()` para `utils/zeroWidth.ts`, o que supera o `ZERO_WIDTH_RE` local (removido). A içada de `TEXTUAL_TOOL_CALL_RE` foi mantida: essa regex ainda estava inline num caminho quente.
- **`resultMemo.ts`** — o `memoStore()` do tip devolve o clone armazenado para que o idiom comum `memoStore(k, r); return memoLookup(k)!` evite um segundo deep-clone de vários MB. Esse contrato foi preservado (o branch o revertia para `void`), e o round-trip `JSON.parse(JSON.stringify())` virou `structuredClone()` nas duas pontas — que era o ponto de performance real do branch.
- **`browserPool.ts`** — o tip agora tem caminho headed e o engine Obscura (#12286). Ambos preservados, mais a varredura de TTL do `pendingContexts` deste branch, adaptada ao nome `poolKey` do tip.
- **`executeAttempt.ts`** — mantido o comentário explicativo do tip.

Também corrigi **quatro erros de typecheck que o branch introduzia**: `hasUnsupportedSignal` estava tipado `boolean` mas avaliava para `string | boolean`, e o fast-path de `extractUsage()` indexava `c.response`/`c.message` como `unknown`.

`typecheck:core` limpo e **482/482** nos testes de antigravity + compressão na própria branch. Obrigado, @opensource-elearning.
2026-09-03 08:29:14 -03:00

673 lines
21 KiB
TypeScript

/**
* browserPool.ts — Shared stealth browser pool for web-cookie providers.
*
* The DuckDuckGo VQD challenge and Claude web's Cloudflare Turnstile both
* validate values that only a real browser can produce (DOM layout
* measurements like offsetWidth/Height, getBoundingClientRect,
* getComputedStyle, iframe contentWindow probes). Plain Node fetch + a
* VM-stubs solver structurally runs the JS but cannot match those values,
* so the server rejects the request.
*
* This pool keeps one Chromium instance warm and serves "browser contexts"
* (one per caller-defined isolation key) on demand. Each context owns one or more pages; the
* caller is expected to be polite (one page per request, close on done).
*
* The pool prefers `cloakbrowser` (npm) when available — its binary-level
* fingerprint patches (--fingerprint-timezone, --fingerprint-locale, and
* dozens more) are the only thing that gets past DuckDuckGo's anti-bot
* in this environment. Falls back to plain `playwright` if cloakbrowser
* is not installed; the fallback works for Claude web (which only needs
* valid cookies) but not for DDG's VQD challenge.
*
* Opt-in: pool only launches Chromium when an executor explicitly asks
* for a context, so users who never use the browser-backed path pay zero
* startup cost. Set OMNIROUTE_BROWSER_POOL=off to fully disable.
*/
import { Buffer } from "node:buffer";
import { connectObscuraBrowser } from "./obscura.ts";
type Browser = import("playwright").Browser;
type BrowserContext = import("playwright").BrowserContext;
type Page = import("playwright").Page;
export interface BrowserPoolContextOptions {
cookieDomain: string;
cookieString?: string | null;
storageState?: import("playwright").BrowserContextOptions["storageState"];
localStorage?: Record<string, string>;
localStorageOrigin?: string;
warmupUrl?: string | null;
userAgent?: string;
locale?: string;
timezone?: string;
preferCloakbrowser?: boolean;
proxyProviderKey?: string;
/** Some first-party anti-bot flows reject Chromium's headless mode even with valid cookies. */
headless?: boolean;
/** Optional system Chrome/Chromium path, primarily for headed contexts. */
executablePath?: string;
}
export interface PooledContext {
id: string;
context: BrowserContext;
warmupPage: Page | null;
lastUsed: number;
isStealth: boolean;
}
// #3368 PR7 — lightweight, cumulative browser-pool telemetry. Counters are
// incremented at lifecycle points and surfaced via getBrowserPoolMetrics()
// (and the omniroute_browser_pool_status MCP tool), giving the previously
// caller-less getBrowserPoolStatus() an observability home.
export interface BrowserPoolMetrics {
browserLaunches: number;
browserLaunchFailures: number;
contextsCreated: number;
contextsReused: number;
contextsEvicted: number;
contextsReleased: number;
contextCreateFailures: number;
shutdowns: number;
lastShutdownReason: string | null;
}
function createBrowserPoolMetrics(): BrowserPoolMetrics {
return {
browserLaunches: 0,
browserLaunchFailures: 0,
contextsCreated: 0,
contextsReused: 0,
contextsEvicted: 0,
contextsReleased: 0,
contextCreateFailures: 0,
shutdowns: 0,
lastShutdownReason: null,
};
}
type PoolEngine = "obscura" | "cloakbrowser" | "chromium";
interface PendingContextEntry {
promise: Promise<PooledContext>;
createdAt: number;
}
interface PoolState {
browser: Browser | null;
/** Engine backing the headless browser, for metrics and stealth detection. */
engine: PoolEngine | null;
headedBrowser: Browser | null;
contexts: Map<string, PooledContext>;
pendingContexts: Map<string, PendingContextEntry>;
launching: Promise<Browser> | null;
headedLaunching: Promise<Browser> | null;
generation: number;
lastActivity: number;
idleTimer: NodeJS.Timeout | null;
evictTimer: NodeJS.Timeout | null;
cloakLaunch: ((opts: unknown) => Promise<Browser>) | null;
cloakLaunchResolved: boolean;
metrics: BrowserPoolMetrics;
}
const POOL_IDLE_TIMEOUT_MS = 5 * 60 * 1000;
const CONTEXT_TTL_MS = 10 * 60 * 1000; // 10 min — evict stale contexts
const EVICT_INTERVAL_MS = 60 * 1000; // check every 60s
const DEFAULT_USER_AGENT =
"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36";
const state: PoolState = {
browser: null,
engine: null,
headedBrowser: null,
contexts: new Map(),
pendingContexts: new Map<string, { promise: Promise<PooledContext>; createdAt: number }>(),
launching: null,
headedLaunching: null,
generation: 0,
lastActivity: 0,
idleTimer: null,
evictTimer: null,
cloakLaunch: null,
cloakLaunchResolved: false,
metrics: createBrowserPoolMetrics(),
};
function getCloakbrowserModuleId(): string {
// Keep this computed: cloakbrowser is an optional runtime enhancer, and a literal
// dynamic import with the package name makes Turbopack resolve it during route compilation.
return ["cloak", "browser"].join("");
}
async function resolveCloakLaunch(): Promise<((opts: unknown) => Promise<Browser>) | null> {
if (state.cloakLaunchResolved) return state.cloakLaunch;
state.cloakLaunchResolved = true;
try {
const mod = (await import(
/* webpackIgnore: true */
getCloakbrowserModuleId()
)) as unknown as {
launch?: (opts: unknown) => Promise<Browser>;
};
state.cloakLaunch = mod.launch ?? null;
} catch {
state.cloakLaunch = null;
}
return state.cloakLaunch;
}
function isPoolEnabled(): boolean {
const flag = process.env.OMNIROUTE_BROWSER_POOL;
if (flag === undefined) return true;
return flag !== "off" && flag !== "0" && flag !== "false";
}
function resetIdleTimer(): void {
if (state.idleTimer) clearTimeout(state.idleTimer);
state.idleTimer = setTimeout(() => {
void shutdownPool("idle-timeout");
}, POOL_IDLE_TIMEOUT_MS);
state.idleTimer.unref?.();
}
function evictStaleContexts(): void {
const now = Date.now();
for (const [key, pooled] of state.contexts) {
if (now - pooled.lastUsed > CONTEXT_TTL_MS) {
console.log(
"[BrowserPool] Evicted stale context",
"(idle",
((now - pooled.lastUsed) / 1000).toFixed(0) + "s)"
);
state.contexts.delete(key);
state.metrics.contextsEvicted++;
pooled.context.close().catch(() => {});
}
}
// #12179: also evict pendingContexts entries that never resolved, so a hung
// launch cannot pin the map (and the pool) open forever.
const PENDING_TTL_MS = 5 * 60 * 1000;
for (const [key, pending] of state.pendingContexts) {
if (now - pending.createdAt > PENDING_TTL_MS) {
state.pendingContexts.delete(key);
state.metrics.contextsEvicted++;
}
}
if (
state.contexts.size === 0 &&
state.pendingContexts.size === 0 &&
!state.launching &&
!state.headedLaunching
) {
void shutdownPool("all-contexts-evicted");
}
}
function startEvictTimer(): void {
if (state.evictTimer) clearInterval(state.evictTimer);
state.evictTimer = setInterval(() => evictStaleContexts(), EVICT_INTERVAL_MS);
state.evictTimer.unref?.();
}
interface ProxyRecord {
type?: string;
host: string;
port: number;
username?: string | null;
password?: string | null;
}
interface ResolvePlaywrightProxyDeps {
resolveProxy?: (providerId: string) => Promise<ProxyRecord | null | undefined>;
}
// Exported for tests (deps injection avoids mock.module()).
export async function resolvePlaywrightProxy(
providerKey: string,
deps?: ResolvePlaywrightProxyDeps
): Promise<import("playwright").LaunchOptions["proxy"] | undefined> {
try {
const resolver =
deps?.resolveProxy ??
(async (id: string) => {
const { resolveProxyForProvider } = await import("../../src/lib/db/proxies");
return resolveProxyForProvider(id);
});
const p = await resolver(providerKey);
if (!p?.host) return undefined;
const scheme = p.type === "socks5" ? "socks5" : "http";
// Build explicitly instead of a conditional object spread: the spread form
// widens username/password to `{}` under the LaunchOptions["proxy"] type,
// tripping typecheck once browserPool.ts is pulled into typecheck-core scope.
const proxy: NonNullable<import("playwright").LaunchOptions["proxy"]> = {
server: `${scheme}://${p.host}:${p.port}`,
};
if (p.username) {
proxy.username = String(p.username);
proxy.password = p.password == null ? "" : String(p.password);
}
return proxy;
} catch (err) {
console.warn("[BrowserPool] Failed to resolve proxy from DB:", err);
return undefined;
}
}
export async function resolveBrowserContextProxy(
contextKey: string,
options: Pick<BrowserPoolContextOptions, "proxyProviderKey">,
deps?: ResolvePlaywrightProxyDeps
): Promise<import("playwright").LaunchOptions["proxy"] | undefined> {
return resolvePlaywrightProxy(options.proxyProviderKey ?? contextKey, deps);
}
function currentBrowser(headless: boolean): Browser | null {
const browser = headless ? state.browser : state.headedBrowser;
if (browser?.isConnected()) return browser;
if (browser) setCurrentBrowser(headless, null);
return null;
}
function setCurrentBrowser(headless: boolean, browser: Browser | null): void {
if (headless) state.browser = browser;
else state.headedBrowser = browser;
}
function currentBrowserLaunch(headless: boolean): Promise<Browser> | null {
return headless ? state.launching : state.headedLaunching;
}
function setBrowserLaunch(headless: boolean, launch: Promise<Browser> | null): void {
if (headless) state.launching = launch;
else state.headedLaunching = launch;
}
function clearBrowserLaunch(headless: boolean, launch: Promise<Browser>): void {
if (currentBrowserLaunch(headless) === launch) setBrowserLaunch(headless, null);
}
export function resolvePlainBrowserLaunchOptions(
options: Pick<BrowserPoolContextOptions, "headless" | "executablePath">
): import("playwright").LaunchOptions {
const headless = options.headless !== false;
return {
headless,
...(!headless && options.executablePath ? { executablePath: options.executablePath } : {}),
args: [
"--no-sandbox",
"--disable-dev-shm-usage",
"--disable-blink-features=AutomationControlled",
...(!headless ? ["--window-position=-32000,-32000"] : []),
],
};
}
async function launchBrowserInstance(
options: BrowserPoolContextOptions,
headless: boolean
): Promise<Browser> {
// A headed browser must be a real windowed Chromium, so the engine
// preference below applies to the headless path only.
if (!headless) {
const { chromium } = await import("playwright");
return chromium.launch(resolvePlainBrowserLaunchOptions(options));
}
// #12274: prefer Obscura (lightweight, browser-grade CDP) over a full
// Chromium; fall back to cloakbrowser, then plain Chromium. Obscura's
// lifecycle (one shared `obscura serve` per process) lives in ./obscura.ts,
// so executors like cloudflare-playground reuse the same server.
const obscura = await connectObscuraBrowser();
if (obscura) {
state.engine = "obscura";
return obscura.browser;
}
const cloakLaunch = await resolveCloakLaunch();
if (cloakLaunch) {
state.engine = "cloakbrowser";
return cloakLaunch({
headless: true,
args: ["--no-sandbox", "--disable-dev-shm-usage"],
});
}
// Fallback: plain Playwright. Works for Claude web (cookie-only auth) but
// DDG's VQD challenge will detect this Chromium build.
state.engine = "chromium";
const { chromium } = await import("playwright");
return chromium.launch(resolvePlainBrowserLaunchOptions(options));
}
async function launchBrowser(options: BrowserPoolContextOptions): Promise<Browser> {
const headless = options.headless !== false;
const existing = currentBrowser(headless);
if (existing) return existing;
const pending = currentBrowserLaunch(headless);
if (pending) return pending;
const generation = state.generation;
const launch = (async () => {
const browser = await launchBrowserInstance(options, headless);
if (state.generation !== generation) {
await browser.close().catch(() => {});
throw new Error("Pool shut down during browser launch");
}
setCurrentBrowser(headless, browser);
state.metrics.browserLaunches++;
return browser;
})();
setBrowserLaunch(headless, launch);
try {
const browser = await launch;
clearBrowserLaunch(headless, launch);
return browser;
} catch (err) {
clearBrowserLaunch(headless, launch);
state.metrics.browserLaunchFailures++;
throw err;
}
}
function parseCookieString(
raw: string,
domain: string
): Array<{
name: string;
value: string;
domain: string;
path: string;
expires: number;
httpOnly: boolean;
secure: boolean;
sameSite: "Lax" | "Strict" | "None";
}> {
return raw
.split(";")
.map((p) => p.trim())
.filter(Boolean)
.map((pair) => {
const eq = pair.indexOf("=");
if (eq < 0) return null;
const name = pair.slice(0, eq).trim();
const value = pair.slice(eq + 1).trim();
if (!name || !value) return null;
return {
name,
value,
domain: domain.startsWith(".") ? domain : `.${domain}`,
path: "/",
expires: -1,
httpOnly: false,
secure: true,
sameSite: "Lax" as const,
};
})
.filter(Boolean) as Array<{
name: string;
value: string;
domain: string;
path: string;
expires: number;
httpOnly: boolean;
secure: boolean;
sameSite: "Lax" | "Strict" | "None";
}>;
}
// Clear a key from the pending-creation map once its promise settles, counting
// failures. Kept as a leaf helper so acquireBrowserContext stays under the
// function-length ceiling (#3368 PR7 metrics).
function settlePendingContext(key: string, failed: boolean): void {
if (failed) state.metrics.contextCreateFailures++;
state.pendingContexts.delete(key);
}
// Seed a freshly created context with whatever session material the caller
// supplied — cookies for cookie-auth providers, localStorage for the ones (zai-web)
// whose session is a Bearer JWT the page reads at boot. Kept as a leaf helper so
// the creation closure stays under the complexity ceiling.
async function seedContextSession(
context: BrowserContext,
options: BrowserPoolContextOptions
): Promise<void> {
if (options.cookieString) {
const cookies = parseCookieString(options.cookieString, options.cookieDomain);
if (cookies.length > 0) {
await context.addCookies(cookies);
}
}
if (!options.localStorage || Object.keys(options.localStorage).length === 0) return;
const origin = new URL(options.localStorageOrigin || options.warmupUrl || "").origin;
await context.addInitScript(
({ expectedOrigin, entries }) => {
if (window.location.origin !== expectedOrigin) return;
for (const [name, value] of entries) {
window.localStorage.setItem(name, value);
}
},
{
expectedOrigin: origin,
entries: Object.entries(options.localStorage),
}
);
}
async function createWarmupPage(
context: BrowserContext,
warmupUrl: string | null | undefined
): Promise<Page | null> {
if (!warmupUrl) return null;
let page: Page | null = null;
try {
page = await context.newPage();
await page.goto(warmupUrl, { waitUntil: "domcontentloaded", timeout: 30000 });
// Give the warmup a moment for upstream status/auth/country requests. The
// first chat request otherwise pays this cost on the hot path.
await new Promise((resolve) => setTimeout(resolve, 1500));
return page;
} catch {
await page?.close().catch(() => {});
return null;
}
}
export async function acquireBrowserContext(
key: string,
options: BrowserPoolContextOptions
): Promise<PooledContext> {
if (!isPoolEnabled()) {
throw new Error(
"browserPool: OMNIROUTE_BROWSER_POOL=off — context requested but pool is disabled"
);
}
const headless = options.headless !== false;
const poolKey = `${headless ? "headless" : "headed"}:${key}`;
const existing = state.contexts.get(poolKey);
if (existing) {
existing.lastUsed = Date.now();
state.lastActivity = Date.now();
state.metrics.contextsReused++;
resetIdleTimer();
return existing;
}
// Dedup concurrent creations for the same key
const pending = state.pendingContexts.get(poolKey);
if (pending) return pending.promise;
const createPromise = (async (): Promise<PooledContext> => {
const [browser, proxy] = await Promise.all([
launchBrowser(options),
resolveBrowserContextProxy(key, options),
]);
const isStealth = headless && (state.engine === "obscura" || state.cloakLaunch !== null);
const context = await browser.newContext({
userAgent: options.userAgent || DEFAULT_USER_AGENT,
locale: options.locale || "en-US",
timezoneId: options.timezone || "America/New_York",
viewport: { width: 1280, height: 800 },
...(options.storageState ? { storageState: options.storageState } : {}),
...(proxy ? { proxy } : {}),
});
await seedContextSession(context, options);
const warmupPage = await createWarmupPage(context, options.warmupUrl);
// Guard: if shutdownPool() ran while we were creating this context,
// the browser we obtained is now closed. Close our temp context and
// throw so the caller knows to retry.
if (currentBrowser(headless) !== browser) {
await context.close().catch(() => {});
if (warmupPage) {
await warmupPage.close().catch(() => {});
}
throw new Error("Pool shut down during context creation");
}
const pooled: PooledContext = {
id: poolKey,
context,
warmupPage,
lastUsed: Date.now(),
isStealth,
};
state.contexts.set(poolKey, pooled);
state.metrics.contextsCreated++;
state.lastActivity = Date.now();
resetIdleTimer();
startEvictTimer();
return pooled;
})();
state.pendingContexts.set(poolKey, { promise: createPromise, createdAt: Date.now() });
createPromise
.then(() => settlePendingContext(poolKey, false))
.catch(() => settlePendingContext(poolKey, true));
return createPromise;
}
export async function openPage(pooled: PooledContext): Promise<Page> {
return pooled.context.newPage();
}
export async function releaseBrowserContext(key: string): Promise<void> {
const resolvedKey = [key, `headless:${key}`, `headed:${key}`].find((candidate) =>
state.contexts.has(candidate)
);
if (!resolvedKey) return;
const pooled = state.contexts.get(resolvedKey);
if (!pooled) return;
state.contexts.delete(resolvedKey);
state.metrics.contextsReleased++;
try {
await pooled.context.close();
} catch {
/* ignore */
}
if (state.contexts.size === 0) {
await shutdownPool("last-context-closed");
}
}
export async function shutdownPool(reason: string): Promise<void> {
state.generation++;
state.metrics.shutdowns++;
state.metrics.lastShutdownReason = reason;
if (state.idleTimer) {
clearTimeout(state.idleTimer);
state.idleTimer = null;
}
if (state.evictTimer) {
clearInterval(state.evictTimer);
state.evictTimer = null;
}
state.pendingContexts.clear();
for (const [key, pooled] of state.contexts) {
try {
await pooled.context.close();
} catch {
/* ignore */
}
state.contexts.delete(key);
}
if (state.browser) {
try {
await state.browser.close();
} catch {
/* ignore */
}
state.browser = null;
}
if (state.headedBrowser) {
try {
await state.headedBrowser.close();
} catch {
/* ignore */
}
state.headedBrowser = null;
}
state.launching = null;
state.headedLaunching = null;
// #12274: the shared Obscura server is owned by ./obscura.ts and reused by
// executors (cloudflare-playground), so closing the pool's CDP connection is
// enough — never kill the server here.
state.engine = null;
state.lastActivity = Date.now();
// Avoid unused-parameter lint: log reason via debug if anyone hooks
// process.on('exit') and prints state.
void reason;
}
export function getBrowserPoolStatus(): {
enabled: boolean;
contexts: number;
browserRunning: boolean;
engine: PoolEngine | null;
stealthAvailable: boolean;
lastActivityAgoMs: number;
} {
return {
enabled: isPoolEnabled(),
contexts: state.contexts.size,
browserRunning: state.browser !== null || state.headedBrowser !== null,
engine: state.engine,
stealthAvailable: state.engine === "obscura" || state.cloakLaunch !== null,
lastActivityAgoMs: state.lastActivity === 0 ? -1 : Date.now() - state.lastActivity,
};
}
/**
* #3368 PR7 — browser-pool observability. Returns live status plus cumulative
* lifecycle telemetry (launches, context create/reuse/evict/release counts,
* failures, shutdowns). Surfaced via the omniroute_browser_pool_status MCP tool.
*/
export function getBrowserPoolMetrics(): {
status: ReturnType<typeof getBrowserPoolStatus>;
metrics: BrowserPoolMetrics;
} {
return { status: getBrowserPoolStatus(), metrics: { ...state.metrics } };
}
/** Test-only: reset cumulative metrics so assertions start from a clean slate. */
export function __resetBrowserPoolMetricsForTest(): void {
state.metrics = createBrowserPoolMetrics();
}
export async function readPageResponseBody(
response: import("playwright").Response
): Promise<{ status: number; headers: Record<string, string>; body: Buffer<ArrayBuffer> }> {
const headers: Record<string, string> = {};
for (const [name, value] of Object.entries(response.headers())) {
headers[name] = value;
}
const body = await response.body();
return { status: response.status(), headers, body: Buffer.from(body) };
}