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

推荐订阅源

Martin Fowler
Martin Fowler
Jina AI
Jina AI
J
Java Code Geeks
Microsoft Security Blog
Microsoft Security Blog
Recent Announcements
Recent Announcements
I
InfoQ
L
LangChain Blog
The Cloudflare Blog
IT之家
IT之家
博客园 - 叶小钗
Apple Machine Learning Research
Apple Machine Learning Research
B
Blog
A
About on SuperTechFans
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Last Week in AI
Last Week in AI
Blog — PlanetScale
Blog — PlanetScale
罗磊的独立博客
云风的 BLOG
云风的 BLOG
Microsoft Azure Blog
Microsoft Azure Blog
Engineering at Meta
Engineering at Meta
F
Fortinet All Blogs
博客园 - 聂微东
美团技术团队
博客园_首页

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(plugins): disambiguate runtime-deps lock owners by pr...
2026-04-29 · via Recent Commits to openclaw:main

@@ -456,8 +456,65 @@ function isProcessAlive(pid: number): boolean {

456456

}

457457

}

458458459+

// Approximate epoch-ms when the current process started, captured once per

460+

// Node lifetime so the lock owner record carries a value that is stable

461+

// across `Date.now()` clock skew within the running process.

462+

const CURRENT_PROCESS_START_TIME_MS = Math.round(Date.now() - process.uptime() * 1000);

463+464+

// Approximate epoch-ms when `pid` started running, or null when the platform

465+

// or runtime cannot determine it. Used to distinguish two different process

466+

// incarnations that happen to share the same numeric PID — most notably

467+

// inside Docker containers, where the gateway is always PID 1 (or PID 7

468+

// with `init: true`) in its container PID namespace, so a stale lock left

469+

// by a previous incarnation looks live to the new one if we only consult

470+

// `isAlive(pid)`.

471+

function readProcessStartTimeMs(pid: number): number | null {

472+

if (!Number.isInteger(pid) || pid <= 0) {

473+

return null;

474+

}

475+

if (process.platform !== "linux") {

476+

return null;

477+

}

478+

let stat: string;

479+

try {

480+

stat = fs.readFileSync(`/proc/${pid}/stat`, "utf8");

481+

} catch {

482+

return null;

483+

}

484+

// /proc/<pid>/stat: PID (comm) state ppid pgrp ... starttime ... where

485+

// `comm` may contain spaces and parens, so we anchor on the LAST `)` and

486+

// count whitespace-separated fields after it. Field index 22 (1-based) is

487+

// starttime, expressed in clock ticks since boot. After the `)` the next

488+

// field is `state` (1), then ppid (2), pgrp (3), session (4), tty_nr (5),

489+

// tpgid (6), flags (7), minflt (8), cminflt (9), majflt (10), cmajflt

490+

// (11), utime (12), stime (13), cutime (14), cstime (15), priority (16),

491+

// nice (17), num_threads (18), itrealvalue (19), starttime (20).

492+

const lastParen = stat.lastIndexOf(")");

493+

if (lastParen === -1) {

494+

return null;

495+

}

496+

const tail = stat

497+

.slice(lastParen + 1)

498+

.trim()

499+

.split(/\s+/);

500+

// tail[0] is `state`; starttime is therefore tail[19].

501+

const starttimeJiffies = Number(tail[19]);

502+

if (!Number.isFinite(starttimeJiffies)) {

503+

return null;

504+

}

505+

// sysconf(_SC_CLK_TCK) is universally 100 on Linux x86/arm targets. We

506+

// hard-code that here rather than spawning getconf — the exact tick rate

507+

// does not matter for our purposes as long as it is stable: the starttime

508+

// we capture for our own process and the starttime we read for the

509+

// lock-owner PID are converted with the same constant, so equality holds.

510+

const clockTicksPerSecond = 100;

511+

const bootTimeMs = Date.now() - os.uptime() * 1000;

512+

return Math.round(bootTimeMs + (starttimeJiffies * 1000) / clockTicksPerSecond);

513+

}

514+459515

type RuntimeDepsLockOwner = {

460516

pid?: number;

517+

pidStartTimeMs?: number;

461518

createdAtMs?: number;

462519

ownerFileState: "ok" | "missing" | "invalid";

463520

ownerFilePath: string;

@@ -501,6 +558,7 @@ function readRuntimeDepsLockOwner(lockDir: string): RuntimeDepsLockOwner {

501558

}

502559

return {

503560

pid: typeof owner?.pid === "number" ? owner.pid : undefined,

561+

pidStartTimeMs: typeof owner?.pidStartTimeMs === "number" ? owner.pidStartTimeMs : undefined,

504562

createdAtMs: typeof owner?.createdAtMs === "number" ? owner.createdAtMs : undefined,

505563

ownerFileState,

506564

ownerFilePath,

@@ -524,12 +582,32 @@ function latestFiniteMs(values: readonly (number | undefined)[]): number | undef

524582

}

525583526584

function shouldRemoveRuntimeDepsLock(

527-

owner: Pick<RuntimeDepsLockOwner, "pid" | "createdAtMs" | "lockDirMtimeMs" | "ownerFileMtimeMs">,

585+

owner: Pick<

586+

RuntimeDepsLockOwner,

587+

"pid" | "pidStartTimeMs" | "createdAtMs" | "lockDirMtimeMs" | "ownerFileMtimeMs"

588+

>,

528589

nowMs: number,

529590

isAlive: (pid: number) => boolean = isProcessAlive,

591+

readStartTimeMs: (pid: number) => number | null = readProcessStartTimeMs,

530592

): boolean {

531593

if (typeof owner.pid === "number") {

532-

return !isAlive(owner.pid);

594+

if (!isAlive(owner.pid)) {

595+

return true;

596+

}

597+

// PID is alive — but inside Docker the new process can share the same

598+

// PID as the dead writer. If we recorded the writer's start-time and we

599+

// can read the live PID's start-time, mismatch means a different

600+

// incarnation owns this PID now and the lock is stale. When start-time

601+

// evidence is unavailable on either side, fall through to the existing

602+

// PID-alive-means-fresh behavior so legacy locks keep working as

603+

// before.

604+

if (typeof owner.pidStartTimeMs === "number") {

605+

const liveStartTimeMs = readStartTimeMs(owner.pid);

606+

if (liveStartTimeMs !== null && liveStartTimeMs !== owner.pidStartTimeMs) {

607+

return true;

608+

}

609+

}

610+

return false;

533611

}

534612535613

if (typeof owner.createdAtMs === "number") {

@@ -614,7 +692,15 @@ export function withBundledRuntimeDepsFilesystemLock<T>(

614692

try {

615693

fs.writeFileSync(

616694

path.join(lockDir, BUNDLED_RUNTIME_DEPS_LOCK_OWNER_FILE),

617-

`${JSON.stringify({ pid: process.pid, createdAtMs: Date.now() }, null, 2)}\n`,

695+

`${JSON.stringify(

696+

{

697+

pid: process.pid,

698+

pidStartTimeMs: CURRENT_PROCESS_START_TIME_MS,

699+

createdAtMs: Date.now(),

700+

},

701+

null,

702+

2,

703+

)}\n`,

618704

"utf8",

619705

);

620706

} catch (ownerWriteError) {

@@ -2387,7 +2473,15 @@ async function withBundledRuntimeDepsInstallRootLockAsync<T>(

23872473

try {

23882474

fs.writeFileSync(

23892475

path.join(lockDir, BUNDLED_RUNTIME_DEPS_LOCK_OWNER_FILE),

2390-

`${JSON.stringify({ pid: process.pid, createdAtMs: Date.now() }, null, 2)}\n`,

2476+

`${JSON.stringify(

2477+

{

2478+

pid: process.pid,

2479+

pidStartTimeMs: CURRENT_PROCESS_START_TIME_MS,

2480+

createdAtMs: Date.now(),

2481+

},

2482+

null,

2483+

2,

2484+

)}\n`,

23912485

"utf8",

23922486

);

23932487

} catch (ownerWriteError) {