惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
G
Google Developers Blog
博客园 - 三生石上(FineUI控件)
B
Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Hugging Face - Blog
Hugging Face - Blog
C
Check Point Blog
V
V2EX
Vercel News
Vercel News
U
Unit 42
Recent Announcements
Recent Announcements
Last Week in AI
Last Week in AI
J
Java Code Geeks
WordPress大学
WordPress大学
罗磊的独立博客
I
InfoQ
阮一峰的网络日志
阮一峰的网络日志
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
小众软件
小众软件
M
MIT News - Artificial intelligence
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Apple Machine Learning Research
Apple Machine Learning Research
Martin Fowler
Martin Fowler
云风的 BLOG
云风的 BLOG

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(gateway): bypass proxies for localhost control plane ...
steipete · 2026-04-29 · via Recent Commits to openclaw:main

@@ -40,8 +40,19 @@ const ALL_PROXY_ENV_KEYS = [

4040

...NO_PROXY_ENV_KEYS,

4141

...PROXY_ACTIVE_KEYS,

4242

] as const;

43+

const GATEWAY_CONTROL_PLANE_PROXY_BYPASS_ENV_KEYS = [

44+

...ALL_PROXY_ENV_KEYS,

45+

"all_proxy",

46+

"ALL_PROXY",

47+

] as const;

4348

type ProxyEnvKey = (typeof ALL_PROXY_ENV_KEYS)[number];

4449

type ProxyEnvSnapshot = Record<ProxyEnvKey, string | undefined>;

50+

type GatewayControlPlaneProxyBypassEnvKey =

51+

(typeof GATEWAY_CONTROL_PLANE_PROXY_BYPASS_ENV_KEYS)[number];

52+

type GatewayControlPlaneProxyBypassEnvSnapshot = Record<

53+

GatewayControlPlaneProxyBypassEnvKey,

54+

string | undefined

55+

>;

4556

type NodeHttpStackSnapshot = {

4657

httpRequest: typeof http.request;

4758

httpGet: typeof http.get;

@@ -116,6 +127,39 @@ function restoreProxyEnv(snapshot: ProxyEnvSnapshot): void {

116127

}

117128

}

118129130+

function captureGatewayControlPlaneProxyBypassEnv(): GatewayControlPlaneProxyBypassEnvSnapshot {

131+

const snapshot = {} as GatewayControlPlaneProxyBypassEnvSnapshot;

132+

for (const key of GATEWAY_CONTROL_PLANE_PROXY_BYPASS_ENV_KEYS) {

133+

snapshot[key] = process.env[key];

134+

}

135+

return snapshot;

136+

}

137+138+

function restoreGatewayControlPlaneProxyBypassEnv(

139+

snapshot: GatewayControlPlaneProxyBypassEnvSnapshot,

140+

): void {

141+

for (const key of GATEWAY_CONTROL_PLANE_PROXY_BYPASS_ENV_KEYS) {

142+

const value = snapshot[key];

143+

if (value === undefined) {

144+

delete process.env[key];

145+

} else {

146+

process.env[key] = value;

147+

}

148+

}

149+

}

150+151+

function withoutGatewayControlPlaneProxyEnv<T>(run: () => T): T {

152+

const snapshot = captureGatewayControlPlaneProxyBypassEnv();

153+

for (const key of GATEWAY_CONTROL_PLANE_PROXY_BYPASS_ENV_KEYS) {

154+

delete process.env[key];

155+

}

156+

try {

157+

return run();

158+

} finally {

159+

restoreGatewayControlPlaneProxyBypassEnv(snapshot);

160+

}

161+

}

162+119163

function restoreGlobalAgentRuntime(snapshot: ProxyEnvSnapshot): void {

120164

if (

121165

typeof global === "undefined" ||

@@ -371,7 +415,12 @@ function isGatewayLoopbackControlPlaneUrl(value: string): boolean {

371415

) {

372416

return false;

373417

}

374-

return isLoopbackIpAddress(url.hostname);

418+

return isGatewayControlPlaneLoopbackHost(url.hostname);

419+

}

420+421+

function isGatewayControlPlaneLoopbackHost(hostname: string): boolean {

422+

const normalizedHost = hostname.trim().toLowerCase().replace(/\.+$/, "");

423+

return normalizedHost === "localhost" || isLoopbackIpAddress(hostname);

375424

}

376425377426

export function dangerouslyBypassManagedProxyForGatewayLoopbackControlPlane<T>(

@@ -384,38 +433,40 @@ export function dangerouslyBypassManagedProxyForGatewayLoopbackControlPlane<T>(

384433385434

const snapshot = nodeHttpStackSnapshot;

386435

if (!snapshot) {

387-

return run();

436+

return withoutGatewayControlPlaneProxyEnv(run);

388437

}

389438390439

// Security-sensitive: this temporarily removes managed proxy hooks for the

391440

// synchronous Gateway loopback WebSocket constructor only. Do not reuse this

392441

// helper for provider, plugin, user WebUI, model server, or arbitrary egress.

393-

const activeStack = captureNodeHttpStack();

394-

const globalRecord = global as Record<string, unknown>;

395-

try {

396-

http.request = snapshot.httpRequest;

397-

http.get = snapshot.httpGet;

398-

http.globalAgent = snapshot.httpGlobalAgent;

399-

https.request = snapshot.httpsRequest;

400-

https.get = snapshot.httpsGet;

401-

https.globalAgent = snapshot.httpsGlobalAgent;

402-

if (snapshot.hadGlobalAgent) {

403-

globalRecord["GLOBAL_AGENT"] = snapshot.globalAgent;

404-

} else {

405-

delete globalRecord["GLOBAL_AGENT"];

406-

}

407-

return run();

408-

} finally {

409-

http.request = activeStack.httpRequest;

410-

http.get = activeStack.httpGet;

411-

http.globalAgent = activeStack.httpGlobalAgent;

412-

https.request = activeStack.httpsRequest;

413-

https.get = activeStack.httpsGet;

414-

https.globalAgent = activeStack.httpsGlobalAgent;

415-

if (activeStack.hadGlobalAgent) {

416-

globalRecord["GLOBAL_AGENT"] = activeStack.globalAgent;

417-

} else {

418-

delete globalRecord["GLOBAL_AGENT"];

442+

return withoutGatewayControlPlaneProxyEnv(() => {

443+

const activeStack = captureNodeHttpStack();

444+

const globalRecord = global as Record<string, unknown>;

445+

try {

446+

http.request = snapshot.httpRequest;

447+

http.get = snapshot.httpGet;

448+

http.globalAgent = snapshot.httpGlobalAgent;

449+

https.request = snapshot.httpsRequest;

450+

https.get = snapshot.httpsGet;

451+

https.globalAgent = snapshot.httpsGlobalAgent;

452+

if (snapshot.hadGlobalAgent) {

453+

globalRecord["GLOBAL_AGENT"] = snapshot.globalAgent;

454+

} else {

455+

delete globalRecord["GLOBAL_AGENT"];

456+

}

457+

return run();

458+

} finally {

459+

http.request = activeStack.httpRequest;

460+

http.get = activeStack.httpGet;

461+

http.globalAgent = activeStack.httpGlobalAgent;

462+

https.request = activeStack.httpsRequest;

463+

https.get = activeStack.httpsGet;

464+

https.globalAgent = activeStack.httpsGlobalAgent;

465+

if (activeStack.hadGlobalAgent) {

466+

globalRecord["GLOBAL_AGENT"] = activeStack.globalAgent;

467+

} else {

468+

delete globalRecord["GLOBAL_AGENT"];

469+

}

419470

}

420-

}

471+

});

421472

}