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

推荐订阅源

MyScale Blog
MyScale Blog
人人都是产品经理
人人都是产品经理
云风的 BLOG
云风的 BLOG
小众软件
小众软件
F
Fortinet All Blogs
爱范儿
爱范儿
WordPress大学
WordPress大学
N
Netflix TechBlog - Medium
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
C
Check Point Blog
博客园 - 聂微东
D
Docker
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
aimingoo的专栏
aimingoo的专栏
Vercel News
Vercel News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
A
About on SuperTechFans
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog
宝玉的分享
宝玉的分享
Jina AI
Jina AI
H
Hackread – Cybersecurity News, Data Breaches, AI and More

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(exec): avoid default approval store writes (#86964) ·...
vincentkoc · 2026-05-27 · via Recent Commits to openclaw:main

@@ -23,6 +23,7 @@ let readExecApprovalsSnapshot: ExecApprovalsModule["readExecApprovalsSnapshot"];

2323

let recordAllowlistMatchesUse: ExecApprovalsModule["recordAllowlistMatchesUse"];

2424

let recordAllowlistUse: ExecApprovalsModule["recordAllowlistUse"];

2525

let requestExecApprovalViaSocket: ExecApprovalsModule["requestExecApprovalViaSocket"];

26+

let resolveExecApprovals: ExecApprovalsModule["resolveExecApprovals"];

2627

let resolveExecApprovalsPath: ExecApprovalsModule["resolveExecApprovalsPath"];

2728

let resolveExecApprovalsSocketPath: ExecApprovalsModule["resolveExecApprovalsSocketPath"];

2829

let saveExecApprovals: ExecApprovalsModule["saveExecApprovals"];

@@ -42,6 +43,7 @@ beforeAll(async () => {

4243

recordAllowlistMatchesUse,

4344

recordAllowlistUse,

4445

requestExecApprovalViaSocket,

46+

resolveExecApprovals,

4547

resolveExecApprovalsPath,

4648

resolveExecApprovalsSocketPath,

4749

saveExecApprovals,

@@ -187,6 +189,143 @@ describe("exec approvals store helpers", () => {

187189

expect(readApprovalsFile(dir).socket).toEqual(ensured.socket);

188190

});

189191192+

it("does not create an approvals file when resolving the missing default no-prompt policy", () => {

193+

const dir = createHomeDir();

194+195+

const resolved = resolveExecApprovals("main", {

196+

security: "full",

197+

ask: "off",

198+

});

199+200+

expect(resolved.agent.security).toBe("full");

201+

expect(resolved.agent.ask).toBe("off");

202+

expect(resolved.socketPath).toBe(resolveExecApprovalsSocketPath());

203+

expect(resolved.token).toBe("");

204+

expect(fs.existsSync(approvalsFilePath(dir))).toBe(false);

205+

});

206+207+

it("does not rewrite an empty approvals file for the default no-prompt policy", () => {

208+

const dir = createHomeDir();

209+

const approvalsPath = approvalsFilePath(dir);

210+

fs.mkdirSync(path.dirname(approvalsPath), { recursive: true });

211+

fs.writeFileSync(approvalsPath, "", "utf8");

212+213+

const resolved = resolveExecApprovals("main", {

214+

security: "full",

215+

ask: "off",

216+

});

217+218+

expect(resolved.agent.security).toBe("full");

219+

expect(resolved.agent.ask).toBe("off");

220+

expect(resolved.token).toBe("");

221+

expect(fs.statSync(approvalsPath).size).toBe(0);

222+

});

223+224+

it.runIf(process.platform !== "win32")(

225+

"hardens existing token-bearing approvals files before resolving default no-prompt policy",

226+

() => {

227+

const dir = createHomeDir();

228+

const approvalsPath = approvalsFilePath(dir);

229+

fs.mkdirSync(path.dirname(approvalsPath), { recursive: true });

230+

fs.writeFileSync(

231+

approvalsPath,

232+

JSON.stringify({

233+

version: 1,

234+

socket: { path: resolveExecApprovalsSocketPath(), token: "existing-token" },

235+

defaults: { security: "full", ask: "off" },

236+

agents: {},

237+

}),

238+

{ mode: 0o644 },

239+

);

240+

fs.chmodSync(approvalsPath, 0o644);

241+242+

const resolved = resolveExecApprovals("main", {

243+

security: "full",

244+

ask: "off",

245+

});

246+247+

expect(resolved.agent.security).toBe("full");

248+

expect(resolved.agent.ask).toBe("off");

249+

expect(resolved.token).toBe("existing-token");

250+

expect(fs.statSync(approvalsPath).mode & 0o777).toBe(0o600);

251+

},

252+

);

253+254+

it.runIf(process.platform !== "win32")(

255+

"rejects symlinked approvals files before resolving the default no-prompt policy",

256+

() => {

257+

const dir = createHomeDir();

258+

const approvalsPath = approvalsFilePath(dir);

259+

const linkedPath = path.join(dir, "linked-approvals.json");

260+

fs.mkdirSync(path.dirname(approvalsPath), { recursive: true });

261+

fs.writeFileSync(

262+

linkedPath,

263+

JSON.stringify({

264+

version: 1,

265+

defaults: { security: "full", ask: "off" },

266+

agents: {},

267+

}),

268+

"utf8",

269+

);

270+

fs.symlinkSync(linkedPath, approvalsPath);

271+272+

expect(() =>

273+

resolveExecApprovals("main", {

274+

security: "deny",

275+

ask: "always",

276+

}),

277+

).toThrow("Refusing to write exec approvals via symlink");

278+

},

279+

);

280+281+

it("does not treat approvals path access errors as a missing default policy", () => {

282+

const dir = createHomeDir();

283+

const approvalsPath = approvalsFilePath(dir);

284+

const actualReadFileSync = fs.readFileSync.bind(fs);

285+

vi.spyOn(fs, "readFileSync").mockImplementation((target, options) => {

286+

if (String(target) === approvalsPath) {

287+

throw Object.assign(new Error("approval path blocked"), { code: "EACCES" });

288+

}

289+

return actualReadFileSync(target, options as never);

290+

});

291+292+

expect(() =>

293+

resolveExecApprovals("main", {

294+

security: "full",

295+

ask: "off",

296+

}),

297+

).toThrow("approval path blocked");

298+

});

299+300+

it("creates an approvals file when resolving a missing policy that may prompt", () => {

301+

const dir = createHomeDir();

302+303+

const resolved = resolveExecApprovals("main", {

304+

security: "allowlist",

305+

ask: "on-miss",

306+

});

307+308+

expect(resolved.agent.security).toBe("allowlist");

309+

expect(resolved.agent.ask).toBe("on-miss");

310+

expect(resolved.token).toMatch(/^[A-Za-z0-9_-]{32}$/);

311+

expect(readApprovalsFile(dir).socket).toEqual(resolved.file.socket);

312+

});

313+314+

it("creates an approvals file for default no-prompt policy when a socket is required", () => {

315+

const dir = createHomeDir();

316+317+

const resolved = resolveExecApprovals("main", {

318+

security: "full",

319+

ask: "off",

320+

requireSocket: true,

321+

});

322+323+

expect(resolved.agent.security).toBe("full");

324+

expect(resolved.agent.ask).toBe("off");

325+

expect(resolved.token).toMatch(/^[A-Za-z0-9_-]{32}$/);

326+

expect(readApprovalsFile(dir).socket).toEqual(resolved.file.socket);

327+

});

328+190329

it("atomically replaces existing approvals files instead of mutating linked inodes", () => {

191330

const dir = createHomeDir();

192331

const approvalsPath = approvalsFilePath(dir);

@@ -236,6 +375,24 @@ describe("exec approvals store helpers", () => {

236375

expect(fs.statSync(approvalsDir).mode & 0o777).toBe(0o700);

237376

});

238377378+

it.runIf(process.platform !== "win32")(

379+

"keeps exec approvals strict when directory chmod fails",

380+

() => {

381+

const dir = createHomeDir();

382+

const approvalsDir = path.dirname(approvalsFilePath(dir));

383+

const actualChmodSync = fs.chmodSync.bind(fs);

384+

vi.spyOn(fs, "chmodSync").mockImplementation((target, mode) => {

385+

if (String(target) === approvalsDir) {

386+

throw Object.assign(new Error("chmod denied"), { code: "EPERM" });

387+

}

388+

return actualChmodSync(target, mode);

389+

});

390+391+

expect(() => ensureExecApprovals()).toThrow("chmod denied");

392+

expect(fs.existsSync(approvalsFilePath(dir))).toBe(false);

393+

},

394+

);

395+239396

it("falls back to copying when rename cannot overwrite the approvals file", () => {

240397

const dir = createHomeDir();

241398

const approvalsPath = approvalsFilePath(dir);