mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-28 05:16:23 -06:00
fix(release): normalize package tarball modes and prove non-root install (#130335)
npm/pnpm pack copy on-disk file modes into the tarball, and node-tar's portable mode-fix only strips group/other write bits — it never adds read bits. A restrictive-umask build host therefore ships owner-only (0600/0700) tarball entries, which breaks the CLI for non-root users after `sudo npm install -g` under mode-preserving consumers such as system tar. - Normalize every packed entry to 0644/0755 (a+rX, exec bits kept) as the last step of packOpenClawPackageForDocker. - Add a tar -tvf mode gate to check-openclaw-package-tarball that rejects any non-world-readable entry. - Run the docker-package-install npm lane as root and execute the installed CLI as a non-root user to prove the fix live. - Fix the docker-package-install bun proof, broken on main since #129552 wired the bun smoke into the shared openclaw-e2e-instance library: replace the drift-prone per-file harness copy list with directory copies, and add a closure-walking guard test that fails on missing harness dependencies.
This commit is contained in:
committed by
GitHub
parent
64113d0fdc
commit
fc2724d831
@@ -6,6 +6,7 @@ import {
|
||||
mkdtempSync,
|
||||
mkdirSync,
|
||||
readFileSync,
|
||||
readdirSync,
|
||||
rmSync,
|
||||
writeFileSync,
|
||||
} from "node:fs";
|
||||
@@ -53,6 +54,18 @@ function usesLegacyShrinkwrapByDefault(version: string): boolean {
|
||||
return year < 2026 || (year === 2026 && (month < 7 || (month === 7 && patch < 2)));
|
||||
}
|
||||
|
||||
function chmodTreeWorldReadable(dir: string) {
|
||||
chmodSync(dir, 0o755);
|
||||
for (const entry of readdirSync(dir, { withFileTypes: true })) {
|
||||
const entryPath = join(dir, entry.name);
|
||||
if (entry.isDirectory()) {
|
||||
chmodTreeWorldReadable(entryPath);
|
||||
} else {
|
||||
chmodSync(entryPath, 0o644);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function withTarball(
|
||||
inventory: string[],
|
||||
files: Record<string, string>,
|
||||
@@ -148,6 +161,9 @@ function withTarball(
|
||||
mkdirSync(dirname(filePath), { recursive: true });
|
||||
writeFileSync(filePath, body);
|
||||
}
|
||||
// The tarball mode gate requires world-readable entries; pin the fixture
|
||||
// against restrictive host umasks the way the packer normalizes artifacts.
|
||||
chmodTreeWorldReadable(packageRoot);
|
||||
|
||||
const tarball = join(root, "openclaw.tgz");
|
||||
const pack = spawnSync("tar", ["-czf", tarball, "-C", root, "package"], {
|
||||
@@ -187,6 +203,35 @@ describe("check-openclaw-package-tarball", () => {
|
||||
expect(extra.stderr).not.toContain("OpenClaw package tarball does not exist");
|
||||
});
|
||||
|
||||
it.skipIf(process.platform === "win32")("rejects owner-only tar entry modes", () => {
|
||||
const root = mkdtempSync(join(tmpdir(), "openclaw-package-tarball-modes-"));
|
||||
try {
|
||||
const packageRoot = join(root, "package");
|
||||
mkdirSync(join(packageRoot, "dist"), { recursive: true });
|
||||
writeFileSync(
|
||||
join(packageRoot, "package.json"),
|
||||
JSON.stringify({ name: "openclaw", version: "2026.8.26" }),
|
||||
);
|
||||
writeFileSync(join(packageRoot, "dist", "index.js"), "export {};\n");
|
||||
chmodTreeWorldReadable(packageRoot);
|
||||
chmodSync(join(packageRoot, "dist", "index.js"), 0o600);
|
||||
const tarball = join(root, "openclaw.tgz");
|
||||
const pack = spawnSync("tar", ["-czf", tarball, "-C", root, "package"], {
|
||||
encoding: "utf8",
|
||||
});
|
||||
expect(pack.status, pack.stderr).toBe(0);
|
||||
|
||||
const result = spawnSync("node", [CHECK_SCRIPT, tarball], { encoding: "utf8" });
|
||||
|
||||
expect(result.status).toBe(1);
|
||||
expect(result.stderr).toContain(
|
||||
"tar entry is not world-readable (-rw-------): package/dist/index.js",
|
||||
);
|
||||
} finally {
|
||||
rmSync(root, { recursive: true, force: true });
|
||||
}
|
||||
});
|
||||
|
||||
it("accepts tarballs whose entry list exceeds Node's default spawn buffer", () => {
|
||||
const longNameSuffix = "x".repeat(80);
|
||||
const largeEntryList = Object.fromEntries(
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
// Docker Build Helper tests cover docker build helper script behavior.
|
||||
import { type ChildProcess, execFileSync, spawn, spawnSync } from "node:child_process";
|
||||
import { existsSync, mkdirSync, readdirSync, readFileSync, rmSync, writeFileSync } from "node:fs";
|
||||
import { join } from "node:path";
|
||||
import { dirname, join } from "node:path";
|
||||
import { setTimeout as delay } from "node:timers/promises";
|
||||
import { pathToFileURL } from "node:url";
|
||||
import { afterEach, describe, expect, it } from "vitest";
|
||||
@@ -4532,17 +4532,69 @@ source "$ROOT_DIR/scripts/lib/docker-e2e-logs.sh"
|
||||
}
|
||||
});
|
||||
|
||||
it("copies the complete bun harness closure into the package-install lane", () => {
|
||||
const packageRunner = readFileSync(DOCKER_PACKAGE_INSTALL_E2E_PATH, "utf8");
|
||||
const listMatch = /for harness_path in \\\n([^;]*); do/u.exec(packageRunner);
|
||||
expect(listMatch, "bun harness copy list").toBeTruthy();
|
||||
const copiedRoots = [...(listMatch?.[1] ?? "").matchAll(/[^\s\\]+/gu)].map((match) => match[0]);
|
||||
expect(copiedRoots.length).toBeGreaterThan(0);
|
||||
for (const root of copiedRoots) {
|
||||
expect(existsSync(root), `${root} missing from repo`).toBe(true);
|
||||
}
|
||||
const isCopied = (file: string) =>
|
||||
copiedRoots.some((root) => file === root || file.startsWith(`${root}/`));
|
||||
|
||||
// Walk every source/import/spawn reachable from the bun smoke entrypoint.
|
||||
// Anything outside the copied roots crashes the bun proof container at
|
||||
// runtime on its /repo mount, the way the #129552 e2e-instance drift did.
|
||||
const pending = ["scripts/e2e/bun-global-install-smoke.sh"];
|
||||
const visited = new Set<string>();
|
||||
while (pending.length > 0) {
|
||||
const file = pending.pop() ?? "";
|
||||
if (visited.has(file)) {
|
||||
continue;
|
||||
}
|
||||
visited.add(file);
|
||||
expect(existsSync(file), `${file} referenced by the bun harness is missing`).toBe(true);
|
||||
const body = readFileSync(file, "utf8");
|
||||
const requirements: string[] = [];
|
||||
for (const match of body.matchAll(/source "\$ROOT_DIR\/([^"]+)"/gu)) {
|
||||
requirements.push(match[1] ?? "");
|
||||
}
|
||||
for (const match of body.matchAll(/source "\$[0-9A-Z_]+_LIB_DIR\/([^"]+)"/gu)) {
|
||||
requirements.push(join(dirname(file), match[1] ?? ""));
|
||||
}
|
||||
for (const match of body.matchAll(/from "(\.\.?\/[^"]+)"/gu)) {
|
||||
requirements.push(join(dirname(file), match[1] ?? ""));
|
||||
}
|
||||
for (const match of body.matchAll(/\bnode (scripts\/[^\s"']+\.(?:mjs|ts))/gu)) {
|
||||
requirements.push(match[1] ?? "");
|
||||
}
|
||||
for (const requirement of requirements) {
|
||||
expect(
|
||||
isCopied(requirement),
|
||||
`${file} needs ${requirement} inside the bun harness copy roots`,
|
||||
).toBe(true);
|
||||
pending.push(requirement);
|
||||
}
|
||||
}
|
||||
expect(visited.size).toBeGreaterThan(3);
|
||||
});
|
||||
|
||||
it("executes each CLI distribution boundary instead of promoting metadata", () => {
|
||||
const installerRunner = readFileSync(CLI_INSTALLER_DISTRIBUTION_E2E_PATH, "utf8");
|
||||
const packageRunner = readFileSync(DOCKER_PACKAGE_INSTALL_E2E_PATH, "utf8");
|
||||
const updateRunner = readFileSync(UPDATE_CHANNEL_SWITCH_DOCKER_E2E_PATH, "utf8");
|
||||
|
||||
expectTextToIncludeAll(packageRunner, [
|
||||
"npm install -g --prefix /tmp/openclaw-proof",
|
||||
"--user root",
|
||||
"npm install -g /tmp/openclaw-current.tgz",
|
||||
"runuser -u appuser -- openclaw --version",
|
||||
"runuser -u appuser -- openclaw --help",
|
||||
"corepack prepare pnpm@11.22.0 --activate",
|
||||
"pnpm add --global --allow-build=openclaw",
|
||||
"bun@1.4.0",
|
||||
'test "$(command -v openclaw)" = "/tmp/openclaw-proof/bin/openclaw"',
|
||||
'test "$(command -v openclaw)" = "/usr/local/bin/openclaw"',
|
||||
'test "$(command -v openclaw)" = "$PNPM_HOME/openclaw"',
|
||||
"OPENCLAW_BUN_GLOBAL_SMOKE_PROOF_PATH",
|
||||
'BUN_HARNESS_DIR="$(mktemp -d',
|
||||
|
||||
Reference in New Issue
Block a user