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

推荐订阅源

酷 壳 – CoolShell
酷 壳 – CoolShell
G
Google Developers Blog
V
V2EX
美团技术团队
H
Help Net Security
月光博客
月光博客
爱范儿
爱范儿
Engineering at Meta
Engineering at Meta
The Cloudflare Blog
U
Unit 42
大猫的无限游戏
大猫的无限游戏
Recent Announcements
Recent Announcements
A
About on SuperTechFans
博客园 - Franky
The GitHub Blog
The GitHub Blog
N
Netflix TechBlog - Medium
人人都是产品经理
人人都是产品经理
博客园 - 司徒正美
MyScale Blog
MyScale Blog
B
Blog
雷峰网
雷峰网
Y
Y Combinator Blog
云风的 BLOG
云风的 BLOG
T
The Blog of Author Tim Ferriss

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(pairing): don't silently swallow unexpected stat erro...
franciscomae · 2026-05-01 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -59,6 +59,7 @@ Docs: https://docs.openclaw.ai

5959

- Gateway/config: include rejected validation paths in foreground and service last-known-good recovery logs plus main-agent notices, so unsupported direct edits explain which key caused restore instead of looking like silent reversion. Fixes #75060. Thanks @amknight.

6060

- Plugins/runtime-deps: hash the OS-canonical `packageRoot` via `fs.realpathSync.native` (with `path.resolve` fallback) when computing the bundled runtime-deps stage key, so loader and channel `bundled-root` callers no longer derive divergent stage directories under `~/.openclaw/plugin-runtime-deps/openclaw-<version>-<hash>/` and bundled channels stop failing with `ENOENT` on shared dist chunks under Windows npm symlinks, junctions, or PM2 multi-instance worker layouts. Fixes #74963. (#75048) Thanks @openperf and @vincentkoc.

6161

- fix(logging): add redaction patterns for Tencent Cloud, Alibaba Cloud, HuggingFace and Replicate API keys (#58162). Thanks @gavyngong

62+

- Pairing: surface unexpected allowlist filesystem stat errors instead of treating the allowlist as missing, so permission and I/O failures are visible during pairing authorization checks. (#63324) Thanks @franciscomaestre.

6263
6364

## 2026.4.29

6465
Original file line numberDiff line numberDiff line change

@@ -1,5 +1,7 @@

1-

import { describe, expect, it } from "vitest";

1+

import fs from "node:fs";

2+

import { describe, expect, it, vi } from "vitest";

23

import {

4+

readAllowFromFileSyncWithExists,

35

resolveAllowFromAccountId,

46

resolveAllowFromFilePath,

57

safeChannelKey,

@@ -25,6 +27,10 @@ function expectInvalidPairingKey(params: {

2527

throw new Error("expected invalid pairing key error");

2628

}

2729
30+

function fsError(message: string, code: string): NodeJS.ErrnoException {

31+

return Object.assign(new Error(message), { code });

32+

}

33+
2834

describe("allow-from store file keys", () => {

2935

it("formats invalid channel diagnostics without stringifying unsafe values", () => {

3036

const circular: Record<string, unknown> = { label: "private-channel-value" };

@@ -65,3 +71,24 @@ describe("allow-from store file keys", () => {

6571

});

6672

});

6773

});

74+
75+

describe("allow-from store file reads", () => {

76+

it("rethrows unexpected sync stat errors", () => {

77+

const error = fsError("permission denied", "EACCES");

78+

const statSpy = vi.spyOn(fs, "statSync").mockImplementation(() => {

79+

throw error;

80+

});

81+
82+

try {

83+

expect(() =>

84+

readAllowFromFileSyncWithExists({

85+

cacheNamespace: "test",

86+

filePath: "/tmp/openclaw-allowFrom.json",

87+

normalizeStore: () => [],

88+

}),

89+

).toThrow(error);

90+

} finally {

91+

statSpy.mockRestore();

92+

}

93+

});

94+

});

Original file line numberDiff line numberDiff line change

@@ -272,7 +272,7 @@ export function readAllowFromFileSyncWithExists(params: {

272272

} catch (err) {

273273

const code = (err as { code?: string }).code;

274274

if (code !== "ENOENT") {

275-

return { entries: [], exists: false };

275+

throw err;

276276

}

277277

}

278278
Original file line numberDiff line numberDiff line change

@@ -472,6 +472,32 @@ describe("pairing store", () => {

472472

});

473473

});

474474
475+

it("rethrows unexpected stat errors after allowFrom writes", async () => {

476+

await withTempStateDir(async (stateDir) => {

477+

const allowFromPath = resolveAllowFromFilePath(stateDir, "telegram", "yy");

478+

const error = Object.assign(new Error("stat failed"), { code: "EACCES" });

479+

const originalStat = fsSync.promises.stat.bind(fsSync.promises);

480+

const statSpy = vi.spyOn(fsSync.promises, "stat").mockImplementation(async (target) => {

481+

if (String(target) === allowFromPath) {

482+

throw error;

483+

}

484+

return await originalStat(target);

485+

});

486+
487+

try {

488+

await expect(

489+

addChannelAllowFromStoreEntry({

490+

channel: "telegram",

491+

accountId: "yy",

492+

entry: "12345",

493+

}),

494+

).rejects.toBe(error);

495+

} finally {

496+

statSpy.mockRestore();

497+

}

498+

});

499+

});

500+
475501

it("reads allowFrom variants with account-scoped isolation", async () => {

476502

await withTempStateDir(async (stateDir) => {

477503

for (const { setup, accountId, expected, expectedLegacy } of [

Original file line numberDiff line numberDiff line change

@@ -305,7 +305,12 @@ async function writeAllowFromState(filePath: string, allowFrom: string[]): Promi

305305

let stat: Awaited<ReturnType<typeof fs.promises.stat>> | null = null;

306306

try {

307307

stat = await fs.promises.stat(filePath);

308-

} catch {}

308+

} catch (err) {

309+

const code = (err as { code?: string }).code;

310+

if (code !== "ENOENT") {

311+

throw err;

312+

}

313+

}

309314

setAllowFromFileReadCache({

310315

cacheNamespace: PAIRING_ALLOW_FROM_CACHE_NAMESPACE,

311316

filePath,