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

推荐订阅源

WordPress大学
WordPress大学
大猫的无限游戏
大猫的无限游戏
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 叶小钗
月光博客
月光博客
Last Week in AI
Last Week in AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理
阮一峰的网络日志
阮一峰的网络日志
罗磊的独立博客
IT之家
IT之家
美团技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Hugging Face - Blog
Hugging Face - Blog
博客园_首页
S
SegmentFault 最新的问题
宝玉的分享
宝玉的分享
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Jina AI
Jina AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Cloudflare 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(device-pairing): guard mergeRoles/mergeScopes against...
wangmiao0668 · 2026-06-16 · via Recent Commits to openclaw:main
1+

import { randomUUID } from "node:crypto";

2+

import fs from "node:fs/promises";

3+

import os from "node:os";

4+

import path from "node:path";

5+

import { WebSocket } from "ws";

6+

import { PROTOCOL_VERSION } from "../../packages/gateway-protocol/src/index.js";

7+

import { buildDeviceAuthPayloadV3 } from "../../src/gateway/device-auth.js";

8+

import { startGatewayServer } from "../../src/gateway/server.js";

9+

import {

10+

loadOrCreateDeviceIdentity,

11+

publicKeyRawBase64UrlFromPem,

12+

signDevicePayload,

13+

} from "../../src/infra/device-identity.js";

14+15+

async function getFreePort(): Promise<number> {

16+

const net = await import("node:net");

17+

return await new Promise((resolve, reject) => {

18+

const srv = net.createServer();

19+

srv.listen(0, "127.0.0.1", () => {

20+

const addr = srv.address();

21+

if (addr && typeof addr === "object") {

22+

const port = addr.port;

23+

srv.close(() => resolve(port));

24+

} else {

25+

srv.close(() => reject(new Error("could not determine free port")));

26+

}

27+

});

28+

srv.once("error", reject);

29+

});

30+

}

31+32+

async function main() {

33+

console.log("=== Reproduction for issue #90654 (WebSocket handshake) ===");

34+

const tmpDir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-repro-90654-ws-"));

35+

console.log("Temp state dir:", tmpDir);

36+

process.env.OPENCLAW_STATE_DIR = tmpDir;

37+

process.env.OPENCLAW_SKIP_CHANNELS = "1";

38+

process.env.OPENCLAW_SKIP_PROVIDERS = "1";

39+

process.env.OPENCLAW_TEST_MINIMAL_GATEWAY = "1";

40+

process.env.VITEST = "true";

41+42+

const config = {

43+

gateway: {

44+

auth: { mode: "none" },

45+

controlUi: { enabled: false },

46+

},

47+

};

48+

await fs.mkdir(path.join(tmpDir, "devices"), { recursive: true });

49+

await fs.writeFile(path.join(tmpDir, "openclaw.json"), JSON.stringify(config, null, 2));

50+51+

const identity = await loadOrCreateDeviceIdentity(path.join(tmpDir, "device-identity.json"));

52+

const publicKey = publicKeyRawBase64UrlFromPem(identity.publicKeyPem);

53+

const deviceId = identity.deviceId;

54+55+

const paired = {

56+

[deviceId]: {

57+

deviceId,

58+

publicKey,

59+

displayName: "Repro Device",

60+

platform: "test",

61+

deviceFamily: "test",

62+

clientId: "openclaw-test",

63+

clientMode: "test",

64+

roles: ["operator", undefined, null, 42],

65+

scopes: ["read", undefined, null, 42],

66+

approvedScopes: ["read", undefined, null, 42],

67+

tokens: {},

68+

createdAtMs: Date.now(),

69+

approvedAtMs: Date.now(),

70+

},

71+

};

72+

await fs.writeFile(path.join(tmpDir, "devices", "paired.json"), JSON.stringify(paired));

73+74+

const port = await getFreePort();

75+

console.log(`Starting gateway on port ${port}...`);

76+

const server = await startGatewayServer(port, {

77+

auth: { mode: "none" },

78+

bind: "loopback",

79+

controlUiEnabled: false,

80+

deferStartupSidecars: true,

81+

});

82+

console.log("Gateway started.");

83+84+

// Give the server a moment to finish post-ready setup before connecting.

85+

await new Promise<void>((resolve) => {

86+

setTimeout(resolve, 500);

87+

});

88+89+

console.log(`Connecting WebSocket to port ${port}...`);

90+

const ws = new WebSocket(`ws://127.0.0.1:${port}`);

91+

let connectChallengeNonce: string | undefined;

92+93+

ws.on("open", () => console.log("[ws] open"));

94+

ws.on("error", (err) => console.log("[ws] error:", err.message));

95+

ws.on("close", (code, reason) => console.log("[ws] close:", code, reason.toString()));

96+97+

const response = await new Promise<unknown>((resolve, reject) => {

98+

const timer = setTimeout(

99+

() => reject(new Error("timeout waiting for connect response")),

100+

15_000,

101+

);

102+103+

ws.on("message", (data) => {

104+

const text = data.toString();

105+

console.log("[ws] message:", text.slice(0, 500));

106+

let frame: unknown;

107+

try {

108+

frame = JSON.parse(text);

109+

} catch {

110+

return;

111+

}

112+

const rec = frame as Record<string, unknown>;

113+

const payload =

114+

rec.payload && typeof rec.payload === "object"

115+

? (rec.payload as Record<string, unknown>)

116+

: undefined;

117+

if (

118+

rec.type === "event" &&

119+

rec.event === "connect.challenge" &&

120+

payload &&

121+

typeof payload.nonce === "string"

122+

) {

123+

connectChallengeNonce = payload.nonce;

124+

console.log("Got challenge nonce:", connectChallengeNonce);

125+

sendConnect();

126+

return;

127+

}

128+

if (rec.type === "res") {

129+

resolved = true;

130+

clearTimeout(timer);

131+

resolve(frame);

132+

}

133+

});

134+

let resolved = false;

135+

ws.once("error", (err) => {

136+

clearTimeout(timer);

137+

reject(err);

138+

});

139+

ws.once("close", (code, reason) => {

140+

clearTimeout(timer);

141+

// Give any in-flight response frame a moment to be delivered before treating close as failure.

142+

setTimeout(() => {

143+

if (!resolved) {

144+

reject(new Error(`closed ${code}: ${reason.toString()}`));

145+

}

146+

}, 100);

147+

});

148+149+

async function sendConnect() {

150+

const id = randomUUID();

151+

const client = {

152+

id: "test",

153+

version: "1.0.0",

154+

platform: "test",

155+

deviceFamily: "test",

156+

mode: "test",

157+

};

158+

const role = "operator"; // paired role is "operator"; scope mismatch triggers scope-upgrade audit

159+

const scopes = ["write"]; // different from paired "read" to trigger scope-upgrade audit

160+

const signedAtMs = Date.now();

161+

console.log("Sending connect with role:", role, "scopes:", scopes);

162+

const payload = buildDeviceAuthPayloadV3({

163+

deviceId,

164+

clientId: client.id,

165+

clientMode: client.mode,

166+

role,

167+

scopes,

168+

signedAtMs,

169+

token: null,

170+

nonce: connectChallengeNonce!,

171+

platform: client.platform,

172+

deviceFamily: client.deviceFamily,

173+

});

174+

const signature = signDevicePayload(identity.privateKeyPem, payload);

175+

ws.send(

176+

JSON.stringify({

177+

type: "req",

178+

id,

179+

method: "connect",

180+

params: {

181+

minProtocol: PROTOCOL_VERSION,

182+

maxProtocol: PROTOCOL_VERSION,

183+

client,

184+

caps: [],

185+

commands: [],

186+

role,

187+

scopes,

188+

device: {

189+

id: deviceId,

190+

publicKey,

191+

signature,

192+

signedAt: signedAtMs,

193+

nonce: connectChallengeNonce,

194+

},

195+

},

196+

}),

197+

);

198+

}

199+

});

200+201+

console.log("Connect response:", JSON.stringify(response, null, 2));

202+

ws.close();

203+

await server.close();

204+

await fs.rm(tmpDir, { recursive: true, force: true });

205+

console.log("PASS: Gateway WebSocket handshake did not crash with malformed pairing state.");

206+

}

207+208+

main().catch((err: unknown) => {

209+

console.error("FAIL:", err);

210+

process.exitCode = 1;

211+

});