Some checks failed
ClawSweeper Dispatch / dispatch (push) Has been cancelled
CodeQL / Security High (actions) (push) Has been cancelled
CodeQL / Security High (channel-runtime-boundary) (push) Has been cancelled
CodeQL / Security High (core-auth-secrets) (push) Has been cancelled
CodeQL / Security High (mcp-process-tool-boundary) (push) Has been cancelled
CodeQL / Security High (network-ssrf-boundary) (push) Has been cancelled
CodeQL / Security High (plugin-trust-boundary) (push) Has been cancelled
CodeQL / Security High (process-exec-boundary) (push) Has been cancelled
Docs Sync Publish Repo / sync-publish-repo (push) Has been cancelled
Docs / docs (push) Has been cancelled
OpenClaw Stable Main Closeout / Resolve stable release closeout inputs (push) Has been cancelled
OpenClaw Stable Main Closeout / Verify stable main closeout (push) Has been cancelled
Workflow Sanity / no-tabs (push) Has been cancelled
Workflow Sanity / actionlint (push) Has been cancelled
Workflow Sanity / generated-doc-baselines (push) Has been cancelled
CI / runner-admission (push) Has been cancelled
CI / preflight (push) Has been cancelled
CI / security-fast (push) Has been cancelled
CI / pnpm-store-warmup (push) Has been cancelled
CI / build-artifacts (push) Has been cancelled
CI / native-i18n (push) Has been cancelled
CI / ${{ matrix.check_name }} (push) Has been cancelled
CI / ${{ matrix.checkName }} (push) Has been cancelled
CI / checks-node-compat-node22 (push) Has been cancelled
CI / check-bundled-channel-config-metadata (push) Has been cancelled
CI / check-dependencies (push) Has been cancelled
CI / check-guards (push) Has been cancelled
CI / check-lint (push) Has been cancelled
CI / check-prod-types (push) Has been cancelled
CI / check-shrinkwrap (push) Has been cancelled
CI / check-test-types (push) Has been cancelled
CI / check-additional-boundaries-a (push) Has been cancelled
CI / check-additional-boundaries-bcd (push) Has been cancelled
CI / check-additional-extension-bundled (push) Has been cancelled
CI / check-additional-extension-channels (push) Has been cancelled
CI / check-additional-extension-package-boundary (push) Has been cancelled
CI / check-additional-runtime-topology-architecture (push) Has been cancelled
CI / check-session-accessor-boundary (push) Has been cancelled
CI / check-session-transcript-reader-boundary (push) Has been cancelled
CI / check-docs (push) Has been cancelled
CI / skills-python (push) Has been cancelled
CI / macos-swift (push) Has been cancelled
CI / ios-build (push) Has been cancelled
CI / ci-timings-summary (push) Has been cancelled
Native App Locale Refresh / Refresh native fa (push) Has been cancelled
Native App Locale Refresh / Refresh native fr (push) Has been cancelled
Native App Locale Refresh / Refresh native hi (push) Has been cancelled
Native App Locale Refresh / Refresh native id (push) Has been cancelled
Native App Locale Refresh / Refresh native it (push) Has been cancelled
Native App Locale Refresh / Refresh native ja-JP (push) Has been cancelled
Control UI Locale Refresh / plan (push) Has been cancelled
Control UI Locale Refresh / Refresh ${{ matrix.locale }} (push) Has been cancelled
Control UI Locale Refresh / Commit control UI locale refresh (push) Has been cancelled
Live Media Runner Image / Build live media runner image (push) Has been cancelled
Native App Locale Refresh / Refresh native ar (push) Has been cancelled
Native App Locale Refresh / Refresh native de (push) Has been cancelled
Native App Locale Refresh / Refresh native es (push) Has been cancelled
Native App Locale Refresh / Refresh native ko (push) Has been cancelled
Native App Locale Refresh / Refresh native nl (push) Has been cancelled
Native App Locale Refresh / Refresh native pl (push) Has been cancelled
Native App Locale Refresh / Refresh native pt-BR (push) Has been cancelled
Native App Locale Refresh / Refresh native ru (push) Has been cancelled
Native App Locale Refresh / Refresh native sv (push) Has been cancelled
Native App Locale Refresh / Refresh native th (push) Has been cancelled
Native App Locale Refresh / Refresh native tr (push) Has been cancelled
Native App Locale Refresh / Refresh native uk (push) Has been cancelled
Native App Locale Refresh / Refresh native vi (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-CN (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-TW (push) Has been cancelled
Native App Locale Refresh / Commit native locale refresh (push) Has been cancelled
Plugin Init Scaffold Validation / Validate provider scaffold (push) Has been cancelled
Plugin NPM Release / preview_plugins_npm (push) Has been cancelled
Plugin NPM Release / Validate release publish approval (push) Has been cancelled
Plugin NPM Release / preview_plugin_pack (push) Has been cancelled
Plugin NPM Release / publish_plugins_npm (push) Has been cancelled
Sandbox Common Smoke / sandbox-common-smoke (push) Has been cancelled
Website Installer Sync / static (push) Has been cancelled
Website Installer Sync / linux-docker (push) Has been cancelled
Website Installer Sync / macos-installer (push) Has been cancelled
Website Installer Sync / windows-installer (push) Has been cancelled
Website Installer Sync / sync-website (push) Has been cancelled
Adolf is a fork/vendored clone of github.com/openclaw/openclaw (v2026.6.11), free to diverge. Tree copied sans upstream .git; upstream remote added for future syncs. Node pinned to 24 (.nvmrc); engines already require >=22.19. Preserves docs/ARCHITECTURE.md. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01LeqyaxJF2nbRXJtae2kNB2
309 lines
7.4 KiB
JavaScript
309 lines
7.4 KiB
JavaScript
// Runs child commands with process-group signal forwarding and Windows shell normalization.
|
|
import { spawn, spawnSync } from "node:child_process";
|
|
import { constants as osConstants } from "node:os";
|
|
import { buildCmdExeCommandLine, resolveWindowsCmdExePath } from "../windows-cmd-helpers.mjs";
|
|
import { resolveWindowsTaskkillPath } from "./windows-taskkill.mjs";
|
|
|
|
const FORWARDED_SIGNALS = ["SIGINT", "SIGTERM", "SIGHUP"];
|
|
const FORCE_KILL_DELAY_MS = 5_000;
|
|
const managedChildren = new Set();
|
|
const signalHandlers = new Map();
|
|
|
|
/**
|
|
* Return conventional shell exit code for a signal.
|
|
*
|
|
* @param {NodeJS.Signals} signal
|
|
* @returns {number}
|
|
*/
|
|
export function signalExitCode(signal) {
|
|
const signalNumber = signalNumberFor(signal);
|
|
return signalNumber ? 128 + signalNumber : 1;
|
|
}
|
|
|
|
/**
|
|
* @param {import("node:child_process").ChildProcess} child
|
|
* @param {NodeJS.Signals} [signal]
|
|
* @param {{ platform?: NodeJS.Platform; runTaskkill?: typeof spawnSync }} [options]
|
|
*/
|
|
export function terminateManagedChild(
|
|
child,
|
|
signal = "SIGTERM",
|
|
{ platform = process.platform, runTaskkill = spawnSync } = {},
|
|
) {
|
|
if (!child.pid) {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
if (platform !== "win32") {
|
|
process.kill(-child.pid, signal);
|
|
return;
|
|
}
|
|
} catch (error) {
|
|
if (!isMissingProcessError(error)) {
|
|
try {
|
|
child.kill(signal);
|
|
} catch {
|
|
// The process may have already exited between the group kill and fallback kill.
|
|
}
|
|
}
|
|
return;
|
|
}
|
|
|
|
if (platform === "win32") {
|
|
const taskkillPath = resolveWindowsTaskkillPath();
|
|
const args = ["/PID", String(child.pid), "/T"];
|
|
if (signal === "SIGKILL") {
|
|
args.push("/F");
|
|
}
|
|
const result = runTaskkill(taskkillPath, args, { stdio: "ignore" });
|
|
if (!result?.error && result?.status === 0) {
|
|
return;
|
|
}
|
|
if (signal !== "SIGKILL") {
|
|
const forceResult = runTaskkill(taskkillPath, [...args, "/F"], { stdio: "ignore" });
|
|
if (!forceResult?.error && forceResult?.status === 0) {
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
child.kill(signal);
|
|
}
|
|
|
|
/**
|
|
* Run a child command while forwarding termination signals to the managed process group.
|
|
*
|
|
* @param {{
|
|
* bin: string;
|
|
* args?: string[];
|
|
* cwd?: string;
|
|
* env?: NodeJS.ProcessEnv;
|
|
* stdio?: import("node:child_process").StdioOptions;
|
|
* shell?: boolean;
|
|
* windowsVerbatimArguments?: boolean;
|
|
* platform?: NodeJS.Platform;
|
|
* comSpec?: string;
|
|
* onReady?: (child: import("node:child_process").ChildProcess) => void;
|
|
* }} options
|
|
* @returns {Promise<number>}
|
|
*/
|
|
export async function runManagedCommand({
|
|
bin,
|
|
args = [],
|
|
cwd,
|
|
env,
|
|
stdio = "inherit",
|
|
platform = process.platform,
|
|
shell = platform === "win32",
|
|
windowsVerbatimArguments,
|
|
comSpec,
|
|
onReady,
|
|
}) {
|
|
const spawnSpec = createManagedCommandSpawnSpec({
|
|
bin,
|
|
args,
|
|
cwd,
|
|
env,
|
|
stdio,
|
|
shell,
|
|
windowsVerbatimArguments,
|
|
platform,
|
|
comSpec,
|
|
});
|
|
const child = spawn(spawnSpec.command, spawnSpec.args, spawnSpec.options);
|
|
const managedChild = {
|
|
child,
|
|
forceKillTimer: null,
|
|
receivedSignal: null,
|
|
};
|
|
addManagedChild(managedChild);
|
|
onReady?.(child);
|
|
|
|
try {
|
|
return await new Promise((resolve, reject) => {
|
|
child.once("error", reject);
|
|
child.once("close", (status, signal) => {
|
|
if (managedChild.forceKillTimer) {
|
|
clearTimeout(managedChild.forceKillTimer);
|
|
}
|
|
if (managedChild.receivedSignal) {
|
|
terminateManagedChild(child, "SIGKILL");
|
|
}
|
|
resolve(
|
|
managedChild.receivedSignal
|
|
? signalExitCode(managedChild.receivedSignal)
|
|
: signal
|
|
? signalExitCode(signal)
|
|
: (status ?? 1),
|
|
);
|
|
});
|
|
});
|
|
} finally {
|
|
removeManagedChild(managedChild);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Build the spawn command, args, and options used by managed command execution.
|
|
*
|
|
* @param {{
|
|
* child: import("node:child_process").ChildProcess;
|
|
* forceKillTimer: ReturnType<typeof setTimeout> | null;
|
|
* receivedSignal: string | null;
|
|
* }} managedChild
|
|
*/
|
|
function addManagedChild(managedChild) {
|
|
managedChildren.add(managedChild);
|
|
installSignalHandlers();
|
|
}
|
|
|
|
/**
|
|
* Build a normalized command invocation, including cmd.exe wrapping on Windows.
|
|
*
|
|
* @param {{
|
|
* child: import("node:child_process").ChildProcess;
|
|
* forceKillTimer: ReturnType<typeof setTimeout> | null;
|
|
* receivedSignal: string | null;
|
|
* }} managedChild
|
|
*/
|
|
function removeManagedChild(managedChild) {
|
|
managedChildren.delete(managedChild);
|
|
if (managedChildren.size === 0) {
|
|
removeSignalHandlers();
|
|
}
|
|
}
|
|
|
|
function installSignalHandlers() {
|
|
for (const signal of FORWARDED_SIGNALS) {
|
|
if (signalHandlers.has(signal)) {
|
|
continue;
|
|
}
|
|
const handler = () => forwardSignalToManagedChildren(signal);
|
|
signalHandlers.set(signal, handler);
|
|
process.on(signal, handler);
|
|
}
|
|
}
|
|
|
|
function removeSignalHandlers() {
|
|
for (const [signal, handler] of signalHandlers) {
|
|
process.off(signal, handler);
|
|
}
|
|
signalHandlers.clear();
|
|
}
|
|
|
|
/**
|
|
* @param {NodeJS.Signals} signal
|
|
*/
|
|
function forwardSignalToManagedChildren(signal) {
|
|
for (const managedChild of managedChildren) {
|
|
managedChild.receivedSignal ??= signal;
|
|
terminateManagedChild(managedChild.child, signal);
|
|
managedChild.forceKillTimer ??= setTimeout(() => {
|
|
terminateManagedChild(managedChild.child, "SIGKILL");
|
|
}, FORCE_KILL_DELAY_MS);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param {{
|
|
* bin: string;
|
|
* args?: string[];
|
|
* cwd?: string;
|
|
* env?: NodeJS.ProcessEnv;
|
|
* stdio?: import("node:child_process").StdioOptions;
|
|
* shell?: boolean;
|
|
* windowsVerbatimArguments?: boolean;
|
|
* platform?: NodeJS.Platform;
|
|
* comSpec?: string;
|
|
* }} options
|
|
*/
|
|
export function createManagedCommandSpawnSpec({
|
|
bin,
|
|
args = [],
|
|
cwd,
|
|
env,
|
|
stdio = "inherit",
|
|
platform = process.platform,
|
|
shell = platform === "win32",
|
|
windowsVerbatimArguments,
|
|
comSpec,
|
|
}) {
|
|
const invocation = createManagedCommandInvocation({
|
|
bin,
|
|
args,
|
|
env,
|
|
shell,
|
|
windowsVerbatimArguments,
|
|
platform,
|
|
comSpec,
|
|
});
|
|
|
|
return {
|
|
args: invocation.args,
|
|
command: invocation.command,
|
|
options: {
|
|
cwd,
|
|
env,
|
|
stdio,
|
|
shell: invocation.shell,
|
|
detached: platform !== "win32",
|
|
windowsVerbatimArguments: invocation.windowsVerbatimArguments,
|
|
},
|
|
};
|
|
}
|
|
|
|
/**
|
|
* @param {{
|
|
* bin: string;
|
|
* args?: string[];
|
|
* env?: NodeJS.ProcessEnv;
|
|
* shell?: boolean;
|
|
* windowsVerbatimArguments?: boolean;
|
|
* platform?: NodeJS.Platform;
|
|
* comSpec?: string;
|
|
* }} options
|
|
*/
|
|
export function createManagedCommandInvocation({
|
|
bin,
|
|
args = [],
|
|
env,
|
|
platform = process.platform,
|
|
shell = platform === "win32",
|
|
windowsVerbatimArguments,
|
|
comSpec,
|
|
}) {
|
|
if (platform === "win32" && shell && args.length > 0) {
|
|
return {
|
|
args: ["/d", "/s", "/c", buildCmdExeCommandLine(bin, args)],
|
|
command: comSpec ?? resolveWindowsCmdExePath(env ?? process.env),
|
|
shell: false,
|
|
windowsVerbatimArguments: true,
|
|
};
|
|
}
|
|
|
|
return {
|
|
args,
|
|
command: bin,
|
|
shell,
|
|
windowsVerbatimArguments,
|
|
};
|
|
}
|
|
|
|
function signalNumberFor(signal) {
|
|
switch (signal) {
|
|
case "SIGHUP":
|
|
return 1;
|
|
case "SIGINT":
|
|
return 2;
|
|
case "SIGTERM":
|
|
return 15;
|
|
default:
|
|
return osConstants.signals?.[signal] ?? 0;
|
|
}
|
|
}
|
|
|
|
function isMissingProcessError(error) {
|
|
return Boolean(error && typeof error === "object" && "code" in error && error.code === "ESRCH");
|
|
}
|