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

推荐订阅源

量子位
WordPress大学
WordPress大学
小众软件
小众软件
云风的 BLOG
云风的 BLOG
IT之家
IT之家
人人都是产品经理
人人都是产品经理
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Last Week in AI
Last Week in AI
博客园 - 【当耐特】
T
Tailwind CSS Blog
阮一峰的网络日志
阮一峰的网络日志
V
V2EX
宝玉的分享
宝玉的分享
博客园 - Franky
F
Fortinet All Blogs
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
GbyAI
GbyAI
Hugging Face - Blog
Hugging Face - Blog
Jina AI
Jina AI
D
Docker
博客园 - 聂微东
C
Check Point Blog
H
Help Net Security

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(openshell): pin local mirror fs mutations · openclaw/...
joshavant · 2026-06-25 · via Recent Commits to openclaw:main

@@ -8,16 +8,18 @@ import type {

88

SandboxResolvedPath,

99

} from "openclaw/plugin-sdk/sandbox";

1010

import { createWritableRenameTargetResolver } from "openclaw/plugin-sdk/sandbox";

11-

import { isPathInside } from "openclaw/plugin-sdk/security-runtime";

11+

import { FsSafeError, isPathInside } from "openclaw/plugin-sdk/security-runtime";

1212

import type { OpenShellFsBridgeContext, OpenShellSandboxBackend } from "./backend.types.js";

13-

import { movePathWithCopyFallback } from "./mirror.js";

14131514

type ResolvedMountPath = SandboxResolvedPath & {

1615

mountHostRoot: string;

1716

writable: boolean;

1817

source: "workspace" | "agent" | "protectedSkill";

1918

};

201920+

type FsSafeRoot = Awaited<ReturnType<typeof fsRoot>>;

21+

type FsSafeStat = Awaited<ReturnType<FsSafeRoot["stat"]>>;

22+2123

const MATERIALIZED_SKILLS_CONTAINER_PARTS = [".openclaw", "sandbox-skills", "skills"] as const;

22242325

export function createOpenShellFsBridge(params: {

@@ -117,7 +119,7 @@ class OpenShellFsBridge implements SandboxFsBridge {

117119

allowFinalSymlinkForUnlink: false,

118120

});

119121

await this.backend.mkdirpRemotePath(target.containerPath, params.signal);

120-

await fsPromises.mkdir(hostPath, { recursive: true });

122+

await mkdirLocalRootPath({ hostPath, target });

121123

}

122124123125

async remove(params: {

@@ -141,9 +143,11 @@ class OpenShellFsBridge implements SandboxFsBridge {

141143

signal: params.signal,

142144

ignoreMissing: params.force !== false,

143145

});

144-

await fsPromises.rm(hostPath, {

145-

recursive: params.recursive ?? false,

146-

force: params.force !== false,

146+

await removeLocalRootPath({

147+

force: params.force,

148+

hostPath,

149+

recursive: params.recursive,

150+

target,

147151

});

148152

}

149153

@@ -168,9 +172,17 @@ class OpenShellFsBridge implements SandboxFsBridge {

168172

allowMissingLeaf: true,

169173

allowFinalSymlinkForUnlink: false,

170174

});

175+

await assertRenameSourceSupported(fromHostPath);

176+

if (from.mountHostRoot !== to.mountHostRoot) {

177+

throw new Error("OpenShell cross-root mirror renames require pinned fs-safe support");

178+

}

179+

await assertSameDeviceRenameSupported({

180+

fromHostPath,

181+

root: from.mountHostRoot,

182+

toHostPath,

183+

});

171184

await this.backend.renameRemotePath(from.containerPath, to.containerPath, params.signal);

172-

await fsPromises.mkdir(path.dirname(toHostPath), { recursive: true });

173-

await movePathWithCopyFallback({ from: fromHostPath, to: toHostPath });

185+

await moveLocalRootPath({ from, fromHostPath, to, toHostPath });

174186

}

175187176188

async stat(params: {

@@ -343,6 +355,162 @@ class OpenShellFsBridge implements SandboxFsBridge {

343355

}

344356

}

345357358+

async function mkdirLocalRootPath(params: {

359+

target: ResolvedMountPath;

360+

hostPath: string;

361+

}): Promise<void> {

362+

const relativePath = relativeToRoot(params.target, params.hostPath);

363+

if (!relativePath) {

364+

return;

365+

}

366+

const root = await fsRoot(params.target.mountHostRoot);

367+

await root.mkdir(relativePath);

368+

}

369+370+

async function removeLocalRootPath(params: {

371+

target: ResolvedMountPath;

372+

hostPath: string;

373+

recursive?: boolean;

374+

force?: boolean;

375+

}): Promise<void> {

376+

const root = await fsRoot(params.target.mountHostRoot);

377+

const relativePath = relativeToRoot(params.target, params.hostPath);

378+

try {

379+

if (params.force === false) {

380+

await fsPromises.lstat(params.hostPath);

381+

}

382+

if (params.recursive) {

383+

const stats = await fsPromises.lstat(params.hostPath).catch((err: unknown) => {

384+

if (isNotFoundError(err)) {

385+

return null;

386+

}

387+

throw err;

388+

});

389+

if (stats?.isSymbolicLink()) {

390+

await root.remove(relativePath);

391+

return;

392+

}

393+

await removeRootTree(root, relativePath);

394+

return;

395+

}

396+

await root.remove(relativePath);

397+

} catch (err) {

398+

if (params.force !== false && isNotFoundError(err)) {

399+

return;

400+

}

401+

throw err;

402+

}

403+

}

404+405+

async function removeRootTree(

406+

root: FsSafeRoot,

407+

relativePath: string,

408+

knownStats?: FsSafeStat,

409+

): Promise<void> {

410+

const stats = knownStats ?? (await root.stat(relativePath));

411+

if (stats.isDirectory && !stats.isSymbolicLink) {

412+

const entries = await root.list(relativePath, { withFileTypes: true });

413+

for (const entry of entries) {

414+

await removeRootTree(root, path.join(relativePath, entry.name), entry);

415+

}

416+

if (!relativePath) {

417+

return;

418+

}

419+

}

420+

await root.remove(relativePath);

421+

}

422+423+

async function moveLocalRootPath(params: {

424+

from: ResolvedMountPath;

425+

fromHostPath: string;

426+

to: ResolvedMountPath;

427+

toHostPath: string;

428+

}): Promise<void> {

429+

const root = await fsRoot(params.from.mountHostRoot);

430+

const fromRelativePath = relativeToRoot(params.from, params.fromHostPath);

431+

const toRelativePath = relativeToRoot(params.to, params.toHostPath);

432+

await mkdirParentPath(root, toRelativePath);

433+

await root.move(fromRelativePath, toRelativePath, { overwrite: true });

434+

}

435+436+

async function mkdirParentPath(root: FsSafeRoot, relativePath: string): Promise<void> {

437+

const parentPath = path.dirname(relativePath);

438+

if (parentPath === "." || parentPath === "") {

439+

return;

440+

}

441+

await root.mkdir(parentPath);

442+

}

443+444+

function relativeToRoot(target: ResolvedMountPath, hostPath: string): string {

445+

const relativePath = path.relative(target.mountHostRoot, hostPath);

446+

return relativePath === "." ? "" : relativePath;

447+

}

448+449+

async function assertRenameSourceSupported(fromHostPath: string): Promise<void> {

450+

const stats = await fsPromises.lstat(fromHostPath);

451+

if (stats.isSymbolicLink()) {

452+

throw new Error("Sandbox symlink rename sources are not supported by the local mirror bridge");

453+

}

454+

if (stats.isFile() && stats.nlink > 1) {

455+

throw new Error(

456+

"Sandbox hardlinked rename sources are not supported by the local mirror bridge",

457+

);

458+

}

459+

}

460+461+

async function assertSameDeviceRenameSupported(params: {

462+

fromHostPath: string;

463+

root: string;

464+

toHostPath: string;

465+

}): Promise<void> {

466+

const sourceStats = await fsPromises.lstat(params.fromHostPath);

467+

const destinationParentStats = await nearestExistingDirectoryStats({

468+

root: params.root,

469+

targetPath: path.dirname(params.toHostPath),

470+

});

471+

if (sourceStats.dev !== destinationParentStats.dev) {

472+

throw new Error("OpenShell cross-device mirror renames require pinned fs-safe support");

473+

}

474+

}

475+476+

async function nearestExistingDirectoryStats(params: {

477+

root: string;

478+

targetPath: string;

479+

}): Promise<Awaited<ReturnType<typeof fsPromises.lstat>>> {

480+

const rootPath = path.resolve(params.root);

481+

let cursor = path.resolve(params.targetPath);

482+

while (isPathInside(rootPath, cursor)) {

483+

const stats = await fsPromises.lstat(cursor).catch((err: unknown) => {

484+

if (isNotFoundError(err)) {

485+

return null;

486+

}

487+

throw err;

488+

});

489+

if (stats) {

490+

if (!stats.isDirectory()) {

491+

throw new Error(`Sandbox rename destination parent is not a directory: ${cursor}`);

492+

}

493+

return stats;

494+

}

495+

const next = path.dirname(cursor);

496+

if (next === cursor) {

497+

break;

498+

}

499+

cursor = next;

500+

}

501+

return await fsPromises.lstat(rootPath);

502+

}

503+504+

function isNotFoundError(err: unknown): boolean {

505+

return (

506+

(err instanceof FsSafeError && err.code === "not-found") ||

507+

(typeof err === "object" &&

508+

err !== null &&

509+

"code" in err &&

510+

(err as { code?: unknown }).code === "ENOENT")

511+

);

512+

}

513+346514

function resolveProtectedSkillTarget(params: {

347515

input: string;

348516

skillsRoot: string;

@@ -421,7 +589,11 @@ async function assertLocalPathSafety(params: {

421589

const canonicalRoot = await fsPromises

422590

.realpath(params.root)

423591

.catch(() => path.resolve(params.root));

424-

const candidate = await resolveCanonicalCandidate(params.target.hostPath);

592+

const targetStats = await fsPromises.lstat(params.target.hostPath).catch(() => null);

593+

const candidate =

594+

params.allowFinalSymlinkForUnlink && targetStats?.isSymbolicLink()

595+

? path.resolve(canonicalRoot, path.relative(params.root, params.target.hostPath))

596+

: await resolveCanonicalCandidate(params.target.hostPath);

425597

if (!isPathInside(canonicalRoot, candidate)) {

426598

throw new Error(

427599

`Sandbox path escapes allowed mounts; cannot access: ${params.target.containerPath}`,