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

推荐订阅源

博客园 - 叶小钗
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Security Blog
Microsoft Security Blog
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
美团技术团队
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
aimingoo的专栏
aimingoo的专栏
腾讯CDC
WordPress大学
WordPress大学
Apple Machine Learning Research
Apple Machine Learning Research
F
Fortinet All Blogs
G
Google Developers Blog
MongoDB | Blog
MongoDB | Blog
Microsoft Azure Blog
Microsoft Azure Blog
小众软件
小众软件
Engineering at Meta
Engineering at Meta
博客园_首页
B
Blog RSS Feed
D
Docker
M
MIT News - Artificial intelligence
爱范儿
爱范儿
I
InfoQ

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(postinstall): bound packaged dist scans · openclaw/op...
vincentkoc · 2026-06-16 · via Recent Commits to openclaw:main

@@ -8,6 +8,7 @@ import {

88

closeSync,

99

existsSync,

1010

lstatSync,

11+

opendirSync,

1112

openSync,

1213

readdirSync,

1314

readFileSync,

@@ -29,6 +30,7 @@ const DEFAULT_PACKAGE_ROOT = join(scriptDir, "..");

2930

const DISABLE_POSTINSTALL_ENV = "OPENCLAW_DISABLE_BUNDLED_PLUGIN_POSTINSTALL";

3031

const DISABLE_PLUGIN_REGISTRY_MIGRATION_ENV = "OPENCLAW_DISABLE_PLUGIN_REGISTRY_MIGRATION";

3132

const DIST_INVENTORY_PATH = "dist/postinstall-inventory.json";

33+

export const MAX_INSTALLED_DIST_SCAN_ENTRIES = 25_000;

3234

const LEGACY_PLUGIN_RUNTIME_DEPS_DIR = "plugin-runtime-deps";

3335

const BAILEYS_MEDIA_FILE = join("node_modules", "baileys", "lib", "Utils", "messages-media.js");

3436

const BAILEYS_MEDIA_HOTFIX_NEEDLE = [

@@ -107,6 +109,8 @@ const BAILEYS_MEDIA_ASYNC_CONTEXT_RE =

107109

/async\s+function\s+encryptedStream|encryptedStream\s*=\s*async/u;

108110

const NODE_COMPILE_CACHE_VERSION_DIR_RE = /^v\d+\.\d+\.\d+-/u;

109111112+

class InstalledDistScanLimitError extends Error {}

113+110114

function hasEnvFlag(env, key) {

111115

const value = env?.[key]?.trim().toLowerCase();

112116

return Boolean(value && value !== "0" && value !== "false" && value !== "no");

@@ -197,21 +201,72 @@ function assertSafeInstalledDistPath(relativePath, params) {

197201

return candidatePath;

198202

}

199203204+

function createInstalledDistScanBudget(params = {}) {

205+

return {

206+

entries: 0,

207+

limit: params.maxDistScanEntries ?? MAX_INSTALLED_DIST_SCAN_ENTRIES,

208+

};

209+

}

210+211+

function resolveInstalledDistScanBudget(params = {}) {

212+

return params.distScanBudget ?? createInstalledDistScanBudget(params);

213+

}

214+215+

function countInstalledDistScanEntry(budget) {

216+

budget.entries += 1;

217+

if (budget.entries > budget.limit) {

218+

throw new InstalledDistScanLimitError(

219+

`installed dist scan exceeded ${budget.limit} filesystem entries; refusing to scan unbounded package contents`,

220+

);

221+

}

222+

}

223+224+

function* iterateInstalledDistEntries(currentDir, params = {}) {

225+

if (params.readdirSync) {

226+

yield* params.readdirSync(currentDir, { withFileTypes: true });

227+

return;

228+

}

229+230+

const dir = opendirSync(currentDir);

231+

try {

232+

while (true) {

233+

const entry = dir.readSync();

234+

if (!entry) {

235+

break;

236+

}

237+

yield entry;

238+

}

239+

} finally {

240+

dir.closeSync();

241+

}

242+

}

243+244+

function* iterateOptionalInstalledDistEntries(currentDir, params = {}) {

245+

try {

246+

yield* iterateInstalledDistEntries(currentDir, params);

247+

} catch (error) {

248+

if (error instanceof InstalledDistScanLimitError) {

249+

throw error;

250+

}

251+

}

252+

}

253+200254

function listInstalledDistFiles(params = {}) {

201-

const readDir = params.readdirSync ?? readdirSync;

202255

const distRoot = resolveInstalledDistRoot(params);

203256

if (distRoot === null) {

204257

return [];

205258

}

206259

const packageRoot = params.packageRoot ?? DEFAULT_PACKAGE_ROOT;

207260

const pending = [distRoot.distDir];

208261

const files = [];

262+

const budget = resolveInstalledDistScanBudget(params);

209263

while (pending.length > 0) {

210264

const currentDir = pending.pop();

211265

if (!currentDir) {

212266

continue;

213267

}

214-

for (const entry of readDir(currentDir, { withFileTypes: true })) {

268+

for (const entry of iterateInstalledDistEntries(currentDir, params)) {

269+

countInstalledDistScanEntry(budget);

215270

const entryPath = join(currentDir, entry.name);

216271

if (entry.isSymbolicLink()) {

217272

throw new Error(

@@ -236,17 +291,28 @@ function listInstalledDistFiles(params = {}) {

236291

}

237292238293

function pruneEmptyDistDirectories(params = {}) {

239-

const readDir = params.readdirSync ?? readdirSync;

240294

const removeDirectory = params.rmdirSync ?? rmdirSync;

241295

const distRoot = resolveInstalledDistRoot(params);

242296

if (distRoot === null) {

243297

return;

244298

}

245299

const packageRoot = params.packageRoot ?? DEFAULT_PACKAGE_ROOT;

246300

const pathLstat = params.lstatSync ?? lstatSync;

301+

const budget = resolveInstalledDistScanBudget(params);

302+303+

function isDirectoryEmpty(currentDir) {

304+

for (const entry of iterateInstalledDistEntries(currentDir, params)) {

305+

void entry;

306+

countInstalledDistScanEntry(budget);

307+

return false;

308+

}

309+

return true;

310+

}

247311248312

function prune(currentDir) {

249-

for (const entry of readDir(currentDir, { withFileTypes: true })) {

313+

const childDirs = [];

314+

for (const entry of iterateInstalledDistEntries(currentDir, params)) {

315+

countInstalledDistScanEntry(budget);

250316

if (entry.isSymbolicLink()) {

251317

throw new Error(

252318

`unsafe dist entry: ${normalizeRelativePath(relative(packageRoot, join(currentDir, entry.name)))}`,

@@ -255,7 +321,10 @@ function pruneEmptyDistDirectories(params = {}) {

255321

if (!entry.isDirectory()) {

256322

continue;

257323

}

258-

prune(join(currentDir, entry.name));

324+

childDirs.push(join(currentDir, entry.name));

325+

}

326+

for (const childDir of childDirs) {

327+

prune(childDir);

259328

}

260329

if (currentDir === distRoot.distDir) {

261330

return;

@@ -266,7 +335,7 @@ function pruneEmptyDistDirectories(params = {}) {

266335

`unsafe dist directory: ${normalizeRelativePath(relative(packageRoot, currentDir))}`,

267336

);

268337

}

269-

if (readDir(currentDir).length === 0) {

338+

if (isDirectoryEmpty(currentDir)) {

270339

removeDirectory(

271340

assertSafeInstalledDistPath(normalizeRelativePath(relative(packageRoot, currentDir)), {

272341

packageRoot,

@@ -285,45 +354,42 @@ function isLegacyInstalledPluginDependencyDirName(name) {

285354

}

286355287356

function pruneLegacyInstalledPluginDependencyDirs(params) {

288-

const readDir = params.readdirSync ?? readdirSync;

289357

const removePath = params.rmSync ?? rmSync;

290358

const packageRoot = params.packageRoot ?? DEFAULT_PACKAGE_ROOT;

291359

const extensionsDir = join(packageRoot, "dist", "extensions");

360+

const budget = resolveInstalledDistScanBudget(params);

292361

const removed = [];

293-

let pluginEntries;

294-

try {

295-

pluginEntries = readDir(extensionsDir, { withFileTypes: true });

296-

} catch {

297-

return removed;

298-

}

299362300-

for (const pluginEntry of pluginEntries) {

363+

for (const pluginEntry of iterateOptionalInstalledDistEntries(extensionsDir, params)) {

364+

countInstalledDistScanEntry(budget);

301365

if (!pluginEntry.isDirectory() || pluginEntry.isSymbolicLink()) {

302366

continue;

303367

}

304368

const pluginDir = join(extensionsDir, pluginEntry.name);

305-

let pluginChildren;

306-

try {

307-

pluginChildren = readDir(pluginDir, { withFileTypes: true });

308-

} catch {

309-

continue;

310-

}

311-

for (const childEntry of pluginChildren) {

369+

const dependencyDirNames = [];

370+

for (const childEntry of iterateOptionalInstalledDistEntries(pluginDir, params)) {

371+

countInstalledDistScanEntry(budget);

312372

if (!isLegacyInstalledPluginDependencyDirName(childEntry.name)) {

313373

continue;

314374

}

315-

const safePluginDir = assertSafeInstalledDistPath(

316-

normalizeRelativePath(relative(packageRoot, pluginDir)),

317-

{

318-

packageRoot,

319-

distDirReal: params.distDirReal,

320-

realpathSync: params.realpathSync,

321-

},

322-

);

375+

dependencyDirNames.push(childEntry.name);

376+

}

377+

if (dependencyDirNames.length === 0) {

378+

continue;

379+

}

380+

const safePluginDir = assertSafeInstalledDistPath(

381+

normalizeRelativePath(relative(packageRoot, pluginDir)),

382+

{

383+

packageRoot,

384+

distDirReal: params.distDirReal,

385+

realpathSync: params.realpathSync,

386+

},

387+

);

388+

for (const dependencyDirName of dependencyDirNames) {

323389

const relativePath = normalizeRelativePath(

324-

relative(packageRoot, join(pluginDir, childEntry.name)),

390+

relative(packageRoot, join(pluginDir, dependencyDirName)),

325391

);

326-

removePath(join(safePluginDir, childEntry.name), { recursive: true, force: true });

392+

removePath(join(safePluginDir, dependencyDirName), { recursive: true, force: true });

327393

removed.push(relativePath);

328394

}

329395

}

@@ -502,11 +568,13 @@ export function pruneInstalledPackageDist(params = {}) {

502568

if (distRoot === null) {

503569

return [];

504570

}

571+

const distScanBudget = createInstalledDistScanBudget(params);

572+

const distScanParams = { ...params, distScanBudget };

505573

const removedLegacyDependencyDirs = pruneLegacyInstalledPluginDependencyDirs({

574+

...distScanParams,

506575

packageRoot,

507576

distDirReal: distRoot.distDirReal,

508577

realpathSync: params.realpathSync,

509-

readdirSync: params.readdirSync,

510578

rmSync: params.rmSync,

511579

});

512580

let expectedFiles = params.expectedFiles ?? null;

@@ -521,7 +589,7 @@ export function pruneInstalledPackageDist(params = {}) {

521589

return [];

522590

}

523591

}

524-

const installedFiles = listInstalledDistFiles(params);

592+

const installedFiles = listInstalledDistFiles(distScanParams);

525593

const readFile = params.readFileSync ?? readFileSync;

526594

expectedFiles = new Set(

527595

expandPackageDistImportClosure({

@@ -555,7 +623,7 @@ export function pruneInstalledPackageDist(params = {}) {

555623

removed.push(relativePath);

556624

}

557625558-

pruneEmptyDistDirectories(params);

626+

pruneEmptyDistDirectories(distScanParams);

559627560628

if (removed.length > 0) {

561629

log.log(`[postinstall] pruned stale dist files: ${removed.join(", ")}`);