@openparachute/hub 0.7.4-rc.4 → 0.7.4-rc.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/__tests__/api-hub-upgrade.test.ts +59 -3
- package/src/__tests__/cloudflare-connector-service.test.ts +3 -1
- package/src/__tests__/managed-unit.test.ts +62 -0
- package/src/__tests__/supervisor.test.ts +25 -0
- package/src/api-hub-upgrade.ts +38 -3
- package/src/managed-unit.ts +30 -1
- package/src/supervisor.ts +46 -2
package/package.json
CHANGED
|
@@ -323,8 +323,15 @@ describe("POST /api/hub/upgrade — redeploy-required short-circuit (§5.3)", ()
|
|
|
323
323
|
});
|
|
324
324
|
|
|
325
325
|
describe("POST /api/hub/upgrade — 409 in-flight guard (concurrent-upgrade)", () => {
|
|
326
|
-
/** Seed the status file with a prior op in the given phase.
|
|
327
|
-
|
|
326
|
+
/** Seed the status file with a prior op in the given phase. `startedAt`
|
|
327
|
+
* defaults to now (a FRESH in-flight slot); pass an old ISO string to seed a
|
|
328
|
+
* stale / abandoned slot for the #506 TTL tests. */
|
|
329
|
+
function seedStatus(
|
|
330
|
+
dir: string,
|
|
331
|
+
phase: HubUpgradeStatus["phase"],
|
|
332
|
+
opId = "prior-op",
|
|
333
|
+
startedAt: string = new Date().toISOString(),
|
|
334
|
+
): void {
|
|
328
335
|
writeHubUpgradeStatus(dir, {
|
|
329
336
|
operation_id: opId,
|
|
330
337
|
phase,
|
|
@@ -333,7 +340,7 @@ describe("POST /api/hub/upgrade — 409 in-flight guard (concurrent-upgrade)", (
|
|
|
333
340
|
target_version: "0.6.3-rc.2",
|
|
334
341
|
channel: "rc",
|
|
335
342
|
log: [],
|
|
336
|
-
started_at:
|
|
343
|
+
started_at: startedAt,
|
|
337
344
|
});
|
|
338
345
|
}
|
|
339
346
|
|
|
@@ -385,6 +392,55 @@ describe("POST /api/hub/upgrade — 409 in-flight guard (concurrent-upgrade)", (
|
|
|
385
392
|
expect(res.status).toBe(202);
|
|
386
393
|
expect(spawned.length).toBe(1);
|
|
387
394
|
});
|
|
395
|
+
|
|
396
|
+
// #506: a crashed helper leaves an in-flight slot stuck forever — without a
|
|
397
|
+
// TTL it 409-deadlocks every future upgrade. A STALE in-flight slot must be
|
|
398
|
+
// treated as abandoned so the new request proceeds.
|
|
399
|
+
for (const phase of ["pending", "running", "restarting"] as const) {
|
|
400
|
+
test(`#506: STALE in-flight slot (phase=${phase}, started 30m ago) → proceeds, not 409`, async () => {
|
|
401
|
+
const bearer = await mintBearer(harness, ["parachute:host:admin"]);
|
|
402
|
+
const thirtyMinAgo = new Date(Date.now() - 30 * 60 * 1000).toISOString();
|
|
403
|
+
seedStatus(harness.dir, phase, "crashed-op", thirtyMinAgo);
|
|
404
|
+
const { deps, spawned } = baseDeps(harness);
|
|
405
|
+
const res = await handleHubUpgrade(
|
|
406
|
+
postReq({ authorization: `Bearer ${bearer}` }, { channel: "rc" }),
|
|
407
|
+
deps,
|
|
408
|
+
);
|
|
409
|
+
// Abandoned slot freed: a fresh op took over + spawned its helper.
|
|
410
|
+
expect(res.status).toBe(202);
|
|
411
|
+
expect(spawned.length).toBe(1);
|
|
412
|
+
const status = readHubUpgradeStatus(harness.dir);
|
|
413
|
+
expect(status?.operation_id).not.toBe("crashed-op");
|
|
414
|
+
expect(spawned[0]?.operationId).toBe(status?.operation_id);
|
|
415
|
+
});
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
test("#506: FRESH in-flight slot (started just now) → still 409", async () => {
|
|
419
|
+
const bearer = await mintBearer(harness, ["parachute:host:admin"]);
|
|
420
|
+
// Just-started (well within the 15m TTL) → a real, live upgrade → 409.
|
|
421
|
+
seedStatus(harness.dir, "running", "live-op", new Date().toISOString());
|
|
422
|
+
const { deps, spawned } = baseDeps(harness);
|
|
423
|
+
const res = await handleHubUpgrade(
|
|
424
|
+
postReq({ authorization: `Bearer ${bearer}` }, { channel: "rc" }),
|
|
425
|
+
deps,
|
|
426
|
+
);
|
|
427
|
+
expect(res.status).toBe(409);
|
|
428
|
+
expect(spawned.length).toBe(0);
|
|
429
|
+
expect(readHubUpgradeStatus(harness.dir)?.operation_id).toBe("live-op");
|
|
430
|
+
});
|
|
431
|
+
|
|
432
|
+
test("#506: in-flight slot with a malformed started_at → treated as stale, proceeds", async () => {
|
|
433
|
+
const bearer = await mintBearer(harness, ["parachute:host:admin"]);
|
|
434
|
+
seedStatus(harness.dir, "running", "garbage-op", "not-a-date");
|
|
435
|
+
const { deps, spawned } = baseDeps(harness);
|
|
436
|
+
const res = await handleHubUpgrade(
|
|
437
|
+
postReq({ authorization: `Bearer ${bearer}` }, { channel: "rc" }),
|
|
438
|
+
deps,
|
|
439
|
+
);
|
|
440
|
+
// An unparseable timestamp must not deadlock — treat as abandoned.
|
|
441
|
+
expect(res.status).toBe(202);
|
|
442
|
+
expect(spawned.length).toBe(1);
|
|
443
|
+
});
|
|
388
444
|
});
|
|
389
445
|
|
|
390
446
|
describe("appendHubUpgradeStatus — operation_id guard (stale-helper isolation)", () => {
|
|
@@ -258,8 +258,10 @@ describe("installConnectorService — Linux systemd", () => {
|
|
|
258
258
|
platform: "linux",
|
|
259
259
|
getuid: () => 1000,
|
|
260
260
|
userName: () => "op",
|
|
261
|
-
//
|
|
261
|
+
// #528 probe: show-user → Linger=no (off, so we proceed to enable);
|
|
262
|
+
// then enable-linger FAIL, daemon-reload OK, enable --now OK.
|
|
262
263
|
runResults: [
|
|
264
|
+
{ code: 0, stdout: "Linger=no\n", stderr: "" },
|
|
263
265
|
{ code: 1, stdout: "", stderr: "Failed to enable linger" },
|
|
264
266
|
{ code: 0, stdout: "", stderr: "" },
|
|
265
267
|
{ code: 0, stdout: "", stderr: "" },
|
|
@@ -398,6 +398,68 @@ describe("installManagedUnit — start:boolean (§7.1)", () => {
|
|
|
398
398
|
expect(f.calls).toContainEqual(["systemctl", "--user", "daemon-reload"]);
|
|
399
399
|
expect(f.calls.some((c) => c.includes("enable"))).toBe(false);
|
|
400
400
|
});
|
|
401
|
+
|
|
402
|
+
// #528: a per-command fake `run` so the linger probe + enable-linger can return
|
|
403
|
+
// distinct results. Non-linger commands (systemctl daemon-reload / enable) all
|
|
404
|
+
// succeed; only the linger sequence is scripted via `linger`.
|
|
405
|
+
function lingerDeps(linger: {
|
|
406
|
+
probe?: ServiceCommandResult;
|
|
407
|
+
enable?: ServiceCommandResult;
|
|
408
|
+
}): FakeDepsState {
|
|
409
|
+
const ok: ServiceCommandResult = { code: 0, stdout: "", stderr: "" };
|
|
410
|
+
return fakeDeps({
|
|
411
|
+
platform: "linux",
|
|
412
|
+
getuid: () => 1000,
|
|
413
|
+
userName: () => "op",
|
|
414
|
+
run: ((cmd: readonly string[]) => {
|
|
415
|
+
// `calls` is recorded by the default run; here we record into a closure
|
|
416
|
+
// list returned alongside via the returned FakeDepsState — but fakeDeps
|
|
417
|
+
// only records in its OWN default run. So push into a shared array.
|
|
418
|
+
recorded.push([...cmd]);
|
|
419
|
+
if (cmd[0] === "loginctl" && cmd[1] === "show-user") return linger.probe ?? ok;
|
|
420
|
+
if (cmd[0] === "loginctl" && cmd[1] === "enable-linger") return linger.enable ?? ok;
|
|
421
|
+
return ok;
|
|
422
|
+
}) as ManagedUnitDeps["run"],
|
|
423
|
+
});
|
|
424
|
+
}
|
|
425
|
+
// Shared recorder for the per-command run above (fakeDeps's own `calls` array
|
|
426
|
+
// isn't populated when we override `run`).
|
|
427
|
+
let recorded: string[][] = [];
|
|
428
|
+
|
|
429
|
+
test("#528: linger ALREADY on → no enable attempt, no warning (false-alarm fix)", () => {
|
|
430
|
+
recorded = [];
|
|
431
|
+
const f = lingerDeps({ probe: { code: 0, stdout: "Linger=yes\n", stderr: "" } });
|
|
432
|
+
const result = installManagedUnit({
|
|
433
|
+
unit: hubUnit(f.deps),
|
|
434
|
+
deps: f.deps,
|
|
435
|
+
messages: HUB_MESSAGES,
|
|
436
|
+
start: false,
|
|
437
|
+
});
|
|
438
|
+
// Probed current state...
|
|
439
|
+
expect(recorded).toContainEqual(["loginctl", "show-user", "op", "--property=Linger"]);
|
|
440
|
+
// ...and because it's already on, did NOT try to enable it.
|
|
441
|
+
expect(recorded.some((c) => c[0] === "loginctl" && c[1] === "enable-linger")).toBe(false);
|
|
442
|
+
// ...and emitted NO scary linger warning.
|
|
443
|
+
expect(result.messages).not.toContain(HUB_MESSAGES.lingerWarning);
|
|
444
|
+
});
|
|
445
|
+
|
|
446
|
+
test("#528: linger OFF + enable-linger fails → warning surfaces", () => {
|
|
447
|
+
recorded = [];
|
|
448
|
+
const f = lingerDeps({
|
|
449
|
+
probe: { code: 0, stdout: "Linger=no\n", stderr: "" },
|
|
450
|
+
enable: { code: 1, stdout: "", stderr: "operation not permitted" },
|
|
451
|
+
});
|
|
452
|
+
const result = installManagedUnit({
|
|
453
|
+
unit: hubUnit(f.deps),
|
|
454
|
+
deps: f.deps,
|
|
455
|
+
messages: HUB_MESSAGES,
|
|
456
|
+
start: false,
|
|
457
|
+
});
|
|
458
|
+
// Off → did attempt to enable...
|
|
459
|
+
expect(recorded).toContainEqual(["loginctl", "enable-linger", "op"]);
|
|
460
|
+
// ...and the genuine failure warns.
|
|
461
|
+
expect(result.messages).toContain(HUB_MESSAGES.lingerWarning);
|
|
462
|
+
});
|
|
401
463
|
});
|
|
402
464
|
|
|
403
465
|
// ---------------------------------------------------------------------------
|
|
@@ -1591,6 +1591,31 @@ describe("Supervisor port-readiness + structured start-error (§6.5)", () => {
|
|
|
1591
1591
|
expect(spawner.calls).toHaveLength(0);
|
|
1592
1592
|
});
|
|
1593
1593
|
|
|
1594
|
+
test("(#634) preflight non-executable binary → non_executable start-error, NO spawn", async () => {
|
|
1595
|
+
const spawner = makeQueueSpawner();
|
|
1596
|
+
const sup = new Supervisor({
|
|
1597
|
+
spawnFn: spawner.spawn,
|
|
1598
|
+
killFn: noopKill,
|
|
1599
|
+
// `which` requires X_OK so it returns null for a 100644 bin...
|
|
1600
|
+
which: () => null,
|
|
1601
|
+
// ...but the secondary probe finds it present-but-non-executable.
|
|
1602
|
+
findNonExecutable: () => "/x/vault/bin/parachute-vault",
|
|
1603
|
+
portListening: async () => true,
|
|
1604
|
+
startReadyMs: 50,
|
|
1605
|
+
sleep: () => Promise.resolve(),
|
|
1606
|
+
});
|
|
1607
|
+
const state = await sup.start(reqWithPort("vault", 1940));
|
|
1608
|
+
|
|
1609
|
+
expect(state.status).toBe("crashed");
|
|
1610
|
+
expect(state.startError?.error_type).toBe("non_executable");
|
|
1611
|
+
expect(state.startError?.error_description).toContain(
|
|
1612
|
+
"but is not executable — run chmod +x /x/vault/bin/parachute-vault",
|
|
1613
|
+
);
|
|
1614
|
+
// No misleading "not installed" install card, and never spawned.
|
|
1615
|
+
expect(state.startError?.binary).toBe("parachute-vault");
|
|
1616
|
+
expect(spawner.calls).toHaveLength(0);
|
|
1617
|
+
});
|
|
1618
|
+
|
|
1594
1619
|
test("a clean re-start clears a prior started-but-unbound start-error", async () => {
|
|
1595
1620
|
const first = makeFakeProc(201);
|
|
1596
1621
|
const second = makeFakeProc(202);
|
package/src/api-hub-upgrade.ts
CHANGED
|
@@ -67,6 +67,34 @@ export const HUB_UPGRADE_REQUIRED_SCOPE = "parachute:host:admin";
|
|
|
67
67
|
*/
|
|
68
68
|
const IN_FLIGHT_PHASES = new Set<HubUpgradeStatus["phase"]>(["pending", "running", "restarting"]);
|
|
69
69
|
|
|
70
|
+
/**
|
|
71
|
+
* #506: TTL for the 409 in-flight guard. The status file is single-slot, and a
|
|
72
|
+
* helper that CRASHES (OOM, killed mid-rewrite, host reboot) never reaches a
|
|
73
|
+
* terminal phase — leaving the slot stuck in `pending`/`running`/`restarting`
|
|
74
|
+
* FOREVER and 409-deadlocking every future upgrade. So: an in-flight slot whose
|
|
75
|
+
* `started_at` is older than this bound is treated as ABANDONED and the new
|
|
76
|
+
* request proceeds (overwriting the stale slot).
|
|
77
|
+
*
|
|
78
|
+
* 15 minutes — comfortably past the longest expected in-place upgrade (an
|
|
79
|
+
* `npm view` + `bun add -g` rewrite + restart is seconds-to-low-minutes even on
|
|
80
|
+
* a slow box / cold cache). A live upgrade finishing under the bound is never
|
|
81
|
+
* mistaken for abandoned; a crashed one frees the slot within 15 min instead of
|
|
82
|
+
* never. (A missing/garbage `started_at` is treated as stale → not 409, so a
|
|
83
|
+
* malformed file can't deadlock either.)
|
|
84
|
+
*/
|
|
85
|
+
const IN_FLIGHT_TTL_MS = 15 * 60 * 1000;
|
|
86
|
+
|
|
87
|
+
/**
|
|
88
|
+
* Is an in-flight slot still FRESH (within the TTL), so a second POST must be
|
|
89
|
+
* rejected 409? An unparseable / missing `started_at` is treated as stale
|
|
90
|
+
* (not fresh) so a malformed file frees the slot rather than deadlocking it.
|
|
91
|
+
*/
|
|
92
|
+
function isInFlightFresh(existing: HubUpgradeStatus, now: Date): boolean {
|
|
93
|
+
const startedMs = Date.parse(existing.started_at);
|
|
94
|
+
if (Number.isNaN(startedMs)) return false;
|
|
95
|
+
return now.getTime() - startedMs < IN_FLIGHT_TTL_MS;
|
|
96
|
+
}
|
|
97
|
+
|
|
70
98
|
export interface SpawnHelperArgs {
|
|
71
99
|
operationId: string;
|
|
72
100
|
channel: "rc" | "latest";
|
|
@@ -213,7 +241,9 @@ export async function handleHubUpgrade(req: Request, deps: ApiHubUpgradeDeps): P
|
|
|
213
241
|
const parsed = await parseBody(req);
|
|
214
242
|
if (parsed instanceof Response) return parsed;
|
|
215
243
|
|
|
216
|
-
|
|
244
|
+
const now = (deps.now ?? (() => new Date()))();
|
|
245
|
+
|
|
246
|
+
// ── 409 in-flight guard (TTL-bounded) ──────────────────────────────────────
|
|
217
247
|
// The status file is single-slot (one hub, one upgrade). If a prior upgrade
|
|
218
248
|
// is still in a non-terminal phase (pending/running/restarting), starting a
|
|
219
249
|
// SECOND would overwrite its operation_id — and a still-running first helper
|
|
@@ -222,9 +252,15 @@ export async function handleHubUpgrade(req: Request, deps: ApiHubUpgradeDeps): P
|
|
|
222
252
|
// server-side too (a second tab, a stale page, a scripted POST). Reject with
|
|
223
253
|
// 409 unless the slot is free (no file) or the prior op reached a terminal
|
|
224
254
|
// phase (failed / redeploy-required / succeeded).
|
|
255
|
+
//
|
|
256
|
+
// #506: BUT a non-terminal slot is only a real block while it's FRESH. A
|
|
257
|
+
// helper that crashed (OOM / killed / host reboot) leaves the slot stuck
|
|
258
|
+
// in-flight forever and would 409-deadlock every future upgrade. So an
|
|
259
|
+
// in-flight slot older than IN_FLIGHT_TTL_MS is treated as ABANDONED and the
|
|
260
|
+
// request proceeds (the seeded status below overwrites the stale slot).
|
|
225
261
|
const readStatus = deps.readStatus ?? readHubUpgradeStatus;
|
|
226
262
|
const existing = readStatus(deps.configDir);
|
|
227
|
-
if (existing && IN_FLIGHT_PHASES.has(existing.phase)) {
|
|
263
|
+
if (existing && IN_FLIGHT_PHASES.has(existing.phase) && isInFlightFresh(existing, now)) {
|
|
228
264
|
return jsonError(
|
|
229
265
|
409,
|
|
230
266
|
"upgrade_in_flight",
|
|
@@ -234,7 +270,6 @@ export async function handleHubUpgrade(req: Request, deps: ApiHubUpgradeDeps): P
|
|
|
234
270
|
|
|
235
271
|
const hubSrcDir = deps.hubSrcDir ?? dirname(fileURLToPath(import.meta.url));
|
|
236
272
|
const env = deps.env ?? process.env;
|
|
237
|
-
const now = (deps.now ?? (() => new Date()))();
|
|
238
273
|
|
|
239
274
|
const currentVersion = (deps.currentVersion ?? (() => defaultCurrentVersion(hubSrcDir)))();
|
|
240
275
|
// Auto-detect the channel from the current version when not explicitly set —
|
package/src/managed-unit.ts
CHANGED
|
@@ -454,6 +454,25 @@ function installLaunchdUnit(opts: InstallManagedUnitOpts): ManagedUnitInstallRes
|
|
|
454
454
|
};
|
|
455
455
|
}
|
|
456
456
|
|
|
457
|
+
/**
|
|
458
|
+
* #528: is `loginctl` linger already enabled for `userName`? Best-effort probe:
|
|
459
|
+
* `loginctl show-user <user> --property=Linger` prints `Linger=yes` / `Linger=no`.
|
|
460
|
+
* Returns true ONLY on a clear `Linger=yes`; ANY ambiguity (non-zero exit, a
|
|
461
|
+
* throw, or unparseable output) returns false so the caller falls through to the
|
|
462
|
+
* enable attempt — we never SKIP enabling on a guess, only when linger is
|
|
463
|
+
* provably already on. (`show-user` of a user with no session can itself exit
|
|
464
|
+
* non-zero; treat that as "unknown → try to enable".)
|
|
465
|
+
*/
|
|
466
|
+
function lingerAlreadyOn(deps: ManagedUnitDeps, userName: string): boolean {
|
|
467
|
+
try {
|
|
468
|
+
const probe = deps.run(["loginctl", "show-user", userName, "--property=Linger"]);
|
|
469
|
+
if (probe.code !== 0) return false;
|
|
470
|
+
return /(^|\n)\s*Linger=yes\s*(\n|$)/i.test(probe.stdout);
|
|
471
|
+
} catch {
|
|
472
|
+
return false;
|
|
473
|
+
}
|
|
474
|
+
}
|
|
475
|
+
|
|
457
476
|
function installSystemdUnit(opts: InstallManagedUnitOpts): ManagedUnitInstallResult {
|
|
458
477
|
const { unit, deps, messages } = opts;
|
|
459
478
|
const start = opts.start ?? true;
|
|
@@ -490,10 +509,20 @@ function installSystemdUnit(opts: InstallManagedUnitOpts): ManagedUnitInstallRes
|
|
|
490
509
|
// systemctl but not loginctl would propagate the spawn error out and hard-fail
|
|
491
510
|
// the calling command. (Run on both start + install-without-start: linger is a
|
|
492
511
|
// boot-survival nicety independent of whether we start the unit now.)
|
|
512
|
+
//
|
|
513
|
+
// #528: pre-check the CURRENT linger state before trying to enable it. When
|
|
514
|
+
// linger is ALREADY on (the common re-install / re-migrate case on a box
|
|
515
|
+
// whose owner already enabled it), `enable-linger` is a no-op we don't need —
|
|
516
|
+
// and on some systemd builds it can return non-zero even though linger is
|
|
517
|
+
// genuinely on, raising a scary "couldn't enable lingering, your hub won't
|
|
518
|
+
// survive reboot" warning that is a FALSE ALARM. So: probe first; if linger
|
|
519
|
+
// is on, skip both the enable AND the warning. Only when linger is genuinely
|
|
520
|
+
// OFF and the enable attempt then fails do we warn. This is the single-owner
|
|
521
|
+
// self-host reboot-survival happy path — keep it quiet when it's already good.
|
|
493
522
|
if (!root && userName) {
|
|
494
523
|
if (deps.which("loginctl") === null) {
|
|
495
524
|
outMessages.push(messages.lingerWarning);
|
|
496
|
-
} else {
|
|
525
|
+
} else if (!lingerAlreadyOn(deps, userName)) {
|
|
497
526
|
try {
|
|
498
527
|
const linger = deps.run(["loginctl", "enable-linger", userName]);
|
|
499
528
|
if (linger.code !== 0) outMessages.push(messages.lingerWarning);
|
package/src/supervisor.ts
CHANGED
|
@@ -38,6 +38,7 @@ import { spawnSync } from "node:child_process";
|
|
|
38
38
|
import {
|
|
39
39
|
MissingDependencyError,
|
|
40
40
|
type MissingDependencyWire,
|
|
41
|
+
NonExecutableError,
|
|
41
42
|
ensureExecutable,
|
|
42
43
|
rethrowIfMissing,
|
|
43
44
|
} from "@openparachute/depcheck";
|
|
@@ -263,6 +264,14 @@ export interface SupervisorOpts {
|
|
|
263
264
|
* Tests exercising the missing-binary branch inject `which: () => null`.
|
|
264
265
|
*/
|
|
265
266
|
readonly which?: (cmd: string) => string | null;
|
|
267
|
+
/**
|
|
268
|
+
* #634 secondary-probe seam for `ensureExecutable`: when `which` returns null,
|
|
269
|
+
* walk PATH IGNORING X_OK to detect a present-but-non-executable binary (a
|
|
270
|
+
* `bin` that lost its +x bit). Production leaves this undefined so depcheck's
|
|
271
|
+
* real PATH walk runs (gated to the real `Bun.which`); tests inject it to
|
|
272
|
+
* exercise the non-executable preflight branch through a stubbed `which`.
|
|
273
|
+
*/
|
|
274
|
+
readonly findNonExecutable?: (binary: string) => string | null;
|
|
266
275
|
/**
|
|
267
276
|
* Pre-spawn port-squatter detection (#580 item 4). Returns the pid holding a
|
|
268
277
|
* TCP LISTEN on the module's port, or undefined when the port is free /
|
|
@@ -427,8 +436,11 @@ export class LogRingBuffer {
|
|
|
427
436
|
* boot and threads it into the API handlers.
|
|
428
437
|
*/
|
|
429
438
|
export class Supervisor {
|
|
430
|
-
private readonly opts: Required<Omit<SupervisorOpts, "spawnFn">> & {
|
|
439
|
+
private readonly opts: Required<Omit<SupervisorOpts, "spawnFn" | "findNonExecutable">> & {
|
|
431
440
|
readonly spawnFn: SpawnFn;
|
|
441
|
+
// Optional #634 probe seam — undefined on the production path so depcheck's
|
|
442
|
+
// own real PATH walk runs (gated to the real `Bun.which`).
|
|
443
|
+
readonly findNonExecutable?: (binary: string) => string | null;
|
|
432
444
|
};
|
|
433
445
|
private readonly modules = new Map<string, ModuleEntry>();
|
|
434
446
|
|
|
@@ -459,6 +471,9 @@ export class Supervisor {
|
|
|
459
471
|
lateBindWatchMs: opts.lateBindWatchMs ?? DEFAULT_LATE_BIND_WATCH_MS,
|
|
460
472
|
lateBindPollMs: opts.lateBindPollMs ?? DEFAULT_LATE_BIND_POLL_MS,
|
|
461
473
|
which: opts.which ?? (isProductionPath ? Bun.which : () => "/stub/bin/preflight-skipped"),
|
|
474
|
+
// #634: undefined on production so depcheck's real PATH walk runs (its
|
|
475
|
+
// gate keys on the real `Bun.which`); tests inject it to drive the branch.
|
|
476
|
+
findNonExecutable: opts.findNonExecutable,
|
|
462
477
|
// Squatter detection (#580 item 4): real probes on the production path;
|
|
463
478
|
// the stub-spawner test path defaults to "no squatter / unknown owner" so
|
|
464
479
|
// fake-proc tests (which never hold a real port) aren't tripped. Tests
|
|
@@ -509,7 +524,9 @@ export class Supervisor {
|
|
|
509
524
|
const startBinary = req.cmd[0];
|
|
510
525
|
if (startBinary) {
|
|
511
526
|
try {
|
|
512
|
-
ensureExecutable
|
|
527
|
+
const ensureOpts: Parameters<typeof ensureExecutable>[1] = { which: this.opts.which };
|
|
528
|
+
if (this.opts.findNonExecutable) ensureOpts.findNonExecutable = this.opts.findNonExecutable;
|
|
529
|
+
ensureExecutable(startBinary, ensureOpts);
|
|
513
530
|
} catch (err) {
|
|
514
531
|
if (err instanceof MissingDependencyError) {
|
|
515
532
|
entry.state = {
|
|
@@ -520,6 +537,18 @@ export class Supervisor {
|
|
|
520
537
|
};
|
|
521
538
|
return entry.state;
|
|
522
539
|
}
|
|
540
|
+
// #634: the binary IS present but not executable (a `bin` that lost its
|
|
541
|
+
// +x bit). Record the actionable chmod hint instead of a misleading
|
|
542
|
+
// "not installed" — and never throw out of `start`.
|
|
543
|
+
if (err instanceof NonExecutableError) {
|
|
544
|
+
entry.state = {
|
|
545
|
+
...entry.state,
|
|
546
|
+
status: "crashed",
|
|
547
|
+
pid: undefined,
|
|
548
|
+
startError: nonExecutableStartError(err, this.opts.now),
|
|
549
|
+
};
|
|
550
|
+
return entry.state;
|
|
551
|
+
}
|
|
523
552
|
throw err;
|
|
524
553
|
}
|
|
525
554
|
}
|
|
@@ -1243,6 +1272,21 @@ function startErrorFromWire(wire: MissingDependencyWire, now: () => number): Mod
|
|
|
1243
1272
|
};
|
|
1244
1273
|
}
|
|
1245
1274
|
|
|
1275
|
+
/**
|
|
1276
|
+
* #634: map a `NonExecutableError` (binary present on PATH but not +x) onto the
|
|
1277
|
+
* `ModuleStartError` shape. `error_type: "non_executable"` so a UI can branch;
|
|
1278
|
+
* `error_description` is the formatted `chmod +x` block. No install card — the
|
|
1279
|
+
* fix is a permission flip, not a reinstall.
|
|
1280
|
+
*/
|
|
1281
|
+
function nonExecutableStartError(err: NonExecutableError, now: () => number): ModuleStartError {
|
|
1282
|
+
return {
|
|
1283
|
+
error_type: err.errorType,
|
|
1284
|
+
error_description: err.message,
|
|
1285
|
+
binary: err.binary,
|
|
1286
|
+
at: new Date(now()).toISOString(),
|
|
1287
|
+
};
|
|
1288
|
+
}
|
|
1289
|
+
|
|
1246
1290
|
/**
|
|
1247
1291
|
* Production group-aware kill (hub#88). Sends `signal` to the entire process
|
|
1248
1292
|
* group rooted at `pid` (the negative-pid syscall) so a wrapped startCmd's
|