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

推荐订阅源

Vercel News
Vercel News
博客园 - 【当耐特】
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
aimingoo的专栏
aimingoo的专栏
WordPress大学
WordPress大学
G
Google Developers Blog
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
P
Proofpoint News Feed
J
Java Code Geeks
U
Unit 42
云风的 BLOG
云风的 BLOG
阮一峰的网络日志
阮一峰的网络日志
N
Netflix TechBlog - Medium
宝玉的分享
宝玉的分享
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
D
Docker
V
Visual Studio Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Help Net Security
V
V2EX
T
Tailwind CSS 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): require auth for exposed startup · openclaw...
steipete · 2026-05-17 · via Recent Commits to openclaw:main

@@ -40,9 +40,17 @@ const writeDiagnosticStabilityBundleForFailureSync = vi.fn((_reason: string, _er

4040

const controlUiState = vi.hoisted(() => ({

4141

root: "/tmp/openclaw-control-ui" as string | null,

4242

}));

43+

const netState = vi.hoisted(() => ({

44+

autoBindHost: "127.0.0.1",

45+

container: false,

46+

}));

4347

const withoutSupervisorEnv = Object.fromEntries(

4448

SUPERVISOR_HINT_ENV_VARS.map((key) => [key, undefined]),

4549

) as Record<string, string | undefined>;

50+

const withoutGatewayAuthEnv = {

51+

OPENCLAW_GATEWAY_TOKEN: undefined,

52+

OPENCLAW_GATEWAY_PASSWORD: undefined,

53+

};

46544755

const { runtimeErrors, defaultRuntime, resetRuntimeCapture } = createCliRuntimeCapture();

4856

@@ -85,6 +93,35 @@ vi.mock("../../gateway/auth.js", () => ({

8593

},

8694

}));

879596+

vi.mock("../../gateway/net.js", async (importOriginal) => {

97+

const actual = await importOriginal<typeof import("../../gateway/net.js")>();

98+

return {

99+

...actual,

100+

defaultGatewayBindMode: (tailscaleMode?: string) => {

101+

if (tailscaleMode && tailscaleMode !== "off") {

102+

return "loopback";

103+

}

104+

return netState.container ? "auto" : "loopback";

105+

},

106+

isContainerEnvironment: () => netState.container,

107+

resolveGatewayBindHost: async (bind?: string, customHost?: string) => {

108+

if (bind === "auto") {

109+

return netState.autoBindHost;

110+

}

111+

if (bind === "lan") {

112+

return "0.0.0.0";

113+

}

114+

if (bind === "custom") {

115+

return customHost?.trim() || "0.0.0.0";

116+

}

117+

if (bind === "tailnet") {

118+

return "100.64.0.1";

119+

}

120+

return "127.0.0.1";

121+

},

122+

};

123+

});

124+88125

vi.mock("../../gateway/server.js", () => ({

89126

startGatewayServer: (port: number, opts?: unknown) => startGatewayServer(port, opts),

90127

}));

@@ -177,6 +214,8 @@ describe("gateway run option collisions", () => {

177214

resetRuntimeCapture();

178215

configState.cfg = {};

179216

configState.snapshot = { exists: false };

217+

netState.autoBindHost = "127.0.0.1";

218+

netState.container = false;

180219

readBestEffortConfig.mockClear();

181220

readConfigFileSnapshotWithPluginMetadata.mockClear();

182221

controlUiState.root = "/tmp/openclaw-control-ui";

@@ -295,7 +334,9 @@ describe("gateway run option collisions", () => {

295334

});

296335297336

it("starts gateway when token mode has no configured token (startup bootstrap path)", async () => {

298-

await runGatewayCli(["gateway", "run", "--allow-unconfigured"]);

337+

await withEnvAsync(withoutGatewayAuthEnv, async () => {

338+

await runGatewayCli(["gateway", "run", "--allow-unconfigured"]);

339+

});

299340300341

expect(readConfigFileSnapshotWithPluginMetadata).toHaveBeenCalledTimes(1);

301342

expect(readBestEffortConfig).not.toHaveBeenCalled();

@@ -304,6 +345,56 @@ describe("gateway run option collisions", () => {

304345

expect(options.startupConfigSnapshotRead).toEqual({ snapshot: configState.snapshot });

305346

});

306347348+

it("allows authless auto startup when it resolves to loopback", async () => {

349+

await withEnvAsync(withoutGatewayAuthEnv, async () => {

350+

await runGatewayCli(["gateway", "run", "--bind", "auto", "--allow-unconfigured"]);

351+

});

352+353+

const options = gatewayStartOptions();

354+

expect(options.bind).toBe("auto");

355+

});

356+357+

it("blocks container auto startup without explicit gateway auth", async () => {

358+

netState.autoBindHost = "0.0.0.0";

359+

netState.container = true;

360+361+

await withEnvAsync(withoutGatewayAuthEnv, async () => {

362+

await expect(runGatewayCli(["gateway", "run", "--allow-unconfigured"])).rejects.toThrow(

363+

"__exit__:78",

364+

);

365+

});

366+367+

expect(runtimeErrors.join("\n")).toContain("Refusing to bind gateway to auto without auth.");

368+

expect(startGatewayServer).not.toHaveBeenCalled();

369+

});

370+371+

it("blocks non-loopback startup without explicit gateway auth", async () => {

372+

await withEnvAsync(withoutGatewayAuthEnv, async () => {

373+

await expect(

374+

runGatewayCli(["gateway", "run", "--bind", "lan", "--allow-unconfigured"]),

375+

).rejects.toThrow("__exit__:78");

376+

});

377+378+

expect(runtimeErrors.join("\n")).toContain("Refusing to bind gateway to lan without auth.");

379+

expect(startGatewayServer).not.toHaveBeenCalled();

380+

});

381+382+

it("allows non-loopback startup when token auth is explicit", async () => {

383+

await runGatewayCli([

384+

"gateway",

385+

"run",

386+

"--bind",

387+

"lan",

388+

"--token",

389+

"tok_run",

390+

"--allow-unconfigured",

391+

]);

392+393+

const options = gatewayStartOptions();

394+

expect(options.bind).toBe("lan");

395+

expect(options.auth?.token).toBe("tok_run");

396+

});

397+307398

it("uses the startup snapshot only for the first in-process gateway start", async () => {

308399

runGatewayLoop.mockImplementationOnce(async ({ start }: { start: GatewayLoopStart }) => {

309400

await start({ startupStartedAt: 1000 });