mirror of
https://github.com/pbakaus/impeccable.git
synced 2026-09-11 21:57:14 +03:00
* Fix silent launcher setup failures Report cache creation, cache write, and download failures with recovery guidance while preserving lazy engine downloads. AI-assisted by Codex. * Fix Windows staging-write failure handling Branch directly on redirection failure and reject staging directories before cleanup. Add coverage for an existing read-only staging file. AI-assisted by Codex.
207 lines
8.3 KiB
Bash
Executable File
207 lines
8.3 KiB
Bash
Executable File
#!/bin/sh
|
|
# Impeccable launcher. Runs the platform binary shipped next to this script:
|
|
# <this dir>/bin/<os>-<arch>/impeccable
|
|
# Order: $IMPECCABLE_BIN, the sibling binary, ~/.impeccable/bin/impeccable,
|
|
# the version-pinned cache, then `impeccable` on PATH. Never needs Node.
|
|
# The unversioned home binary and the PATH candidate are validated with the
|
|
# engine-probe handshake first: the retired 3.x npm CLI also installed a bin
|
|
# named `impeccable`, and exec'ing it would fail every verb with
|
|
# "Unknown command". Trusted candidates (IMPECCABLE_BIN, the sibling binary,
|
|
# the version-pinned cache) are exec'd without a probe: hooks run them on
|
|
# every edit and must stay fast.
|
|
set -eu
|
|
|
|
# True when the candidate answers the engine handshake (prints
|
|
# "impeccable-engine <version>", exit 0). Quiet and fast (<100ms).
|
|
# IMPECCABLE_LAUNCHER_PROBE marks the child as a probe: a copy of this
|
|
# launcher reached recursively (e.g. symlinked onto PATH as `impeccable`)
|
|
# then skips its own probes and refuses to download, so probing stays cheap
|
|
# and can never loop.
|
|
probe_ok() {
|
|
case "$(IMPECCABLE_LAUNCHER_PROBE=1 "$1" engine-probe 2>/dev/null || true)" in
|
|
impeccable-engine*) return 0 ;;
|
|
esac
|
|
return 1
|
|
}
|
|
probing=${IMPECCABLE_LAUNCHER_PROBE:-}
|
|
|
|
dir=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
|
|
|
|
# What the binary needs to know about its home: the skill directory (for
|
|
# reference/*.md and command-metadata.json) and how to name itself in the
|
|
# commands it prints. Exported BEFORE any exec below, including the
|
|
# IMPECCABLE_BIN override: an engine binary reached with no IMPECCABLE_SKILL_DIR
|
|
# cannot find reference/*.md (so native platform refs never inline) or read its
|
|
# own version (so UPDATE_AVAILABLE never fires). Setting it here covers every
|
|
# candidate the launcher can exec.
|
|
: "${IMPECCABLE_SKILL_DIR:=$(CDPATH= cd -- "$dir/.." && pwd)}"
|
|
: "${IMPECCABLE_SELF:=$0}"
|
|
export IMPECCABLE_SKILL_DIR IMPECCABLE_SELF
|
|
|
|
if [ -n "${IMPECCABLE_BIN:-}" ] && [ -x "${IMPECCABLE_BIN}" ]; then
|
|
exec "${IMPECCABLE_BIN}" "$@"
|
|
fi
|
|
|
|
case "$(uname -s 2>/dev/null || echo unknown)" in
|
|
Darwin) os=darwin ;;
|
|
Linux) os=linux ;;
|
|
MINGW*|MSYS*|CYGWIN*|Windows_NT) os=windows ;;
|
|
*) os=unknown ;;
|
|
esac
|
|
case "$(uname -m 2>/dev/null || echo unknown)" in
|
|
arm64|aarch64) arch=arm64 ;;
|
|
x86_64|amd64) arch=x64 ;;
|
|
*) arch=unknown ;;
|
|
esac
|
|
|
|
bin="$dir/bin/$os-$arch/impeccable"
|
|
[ "$os" = windows ] && bin="$bin.exe"
|
|
|
|
if [ -x "$bin" ]; then
|
|
exec "$bin" "$@"
|
|
fi
|
|
if [ -f "$bin" ]; then
|
|
# Lost the executable bit in transit (zip extraction, some copiers).
|
|
chmod +x "$bin" 2>/dev/null && exec "$bin" "$@"
|
|
fi
|
|
# On Windows (an MSYS/Git Bash shell) the cached names carry .exe so this
|
|
# launcher and impeccable.cmd share one cache.
|
|
exe=""
|
|
[ "$os" = windows ] && exe=".exe"
|
|
home_bin="${HOME:-/nonexistent}/.impeccable/bin/impeccable$exe"
|
|
if [ -z "$probing" ] && [ -x "$home_bin" ] && probe_ok "$home_bin"; then
|
|
exec "$home_bin" "$@"
|
|
fi
|
|
# Version-pinned user cache, filled by the download below or by `impeccable update`.
|
|
version=""
|
|
[ -f "$dir/VERSION" ] && version=$(tr -d '[:space:]' < "$dir/VERSION")
|
|
cache_root="${IMPECCABLE_HOME:-${HOME:-/nonexistent}/.impeccable}"
|
|
cached="$cache_root/bin/$version/impeccable$exe"
|
|
if [ -n "$version" ] && [ -x "$cached" ]; then
|
|
exec "$cached" "$@"
|
|
fi
|
|
if [ -z "$probing" ] && command -v impeccable >/dev/null 2>&1 && probe_ok impeccable; then
|
|
exec impeccable "$@"
|
|
fi
|
|
|
|
# Last resort: fetch this version's binary for the current platform from the
|
|
# public release channel into the user cache. Needs network; sandboxes without
|
|
# egress preinstall the binary on PATH instead.
|
|
setup_help() {
|
|
echo "Engine $version setup needs network access and write permission to $cache_root/bin/$version." >&2
|
|
echo "Run this launcher ($0) with engine-probe in a terminal that has those permissions, then retry the original command." >&2
|
|
echo "Alternatively, set IMPECCABLE_HOME to a writable cache location, or IMPECCABLE_BIN to a preinstalled engine binary." >&2
|
|
}
|
|
fetch_url() {
|
|
if command -v curl >/dev/null 2>&1; then
|
|
curl -fsSL --retry 2 -o "$tmp" "$1" 2>/dev/null
|
|
elif command -v wget >/dev/null 2>&1; then
|
|
wget -q -O "$tmp" "$1" 2>/dev/null
|
|
else
|
|
return 1
|
|
fi
|
|
}
|
|
check_download() {
|
|
download_file=${1:-$tmp}
|
|
if [ ! -f "$download_file" ]; then
|
|
rm -f "$tmp.sha256"
|
|
echo "impeccable: download completed but the file was removed before execution: $url; check your antivirus quarantine or logs. Refusing to continue; do not disable protection." >&2
|
|
exit 127
|
|
fi
|
|
if [ ! -s "$download_file" ]; then
|
|
rm -f "$download_file" "$tmp.sha256"
|
|
echo "impeccable: downloaded file is empty: $url; refusing the unverified download" >&2
|
|
exit 127
|
|
fi
|
|
}
|
|
if [ -n "$probing" ]; then
|
|
# Inside another launcher's probe: no download, fail fast and quiet.
|
|
exit 127
|
|
fi
|
|
if [ -n "$version" ] && [ "$os" != unknown ] && [ "$arch" != unknown ]; then
|
|
base="${IMPECCABLE_DOWNLOAD_BASE:-https://github.com/pbakaus/impeccable/releases/download}"
|
|
asset="impeccable-$os-$arch"
|
|
[ "$os" = windows ] && asset="$asset.exe"
|
|
url="$base/engine-v$version/$asset"
|
|
tmp="$cache_root/bin/$version/.impeccable.part.$$"
|
|
if ! mkdir -p "$cache_root/bin/$version" 2>/dev/null; then
|
|
echo "impeccable: engine $version is not installed; cannot create cache directory: $cache_root/bin/$version" >&2
|
|
setup_help
|
|
exit 127
|
|
fi
|
|
# Check the actual staging file, not just directory existence: a cache from
|
|
# an earlier run can be readable but no longer writable inside a sandbox.
|
|
if ! (umask 077; : > "$tmp") 2>/dev/null; then
|
|
echo "impeccable: engine $version is not installed; cannot write to cache directory: $cache_root/bin/$version" >&2
|
|
setup_help
|
|
exit 127
|
|
fi
|
|
fetched=0
|
|
if fetch_url "$url"; then
|
|
fetched=1
|
|
elif [ "$os" = windows ] && [ "$arch" = arm64 ]; then
|
|
# Windows on ARM runs x64 binaries; fall back when no arm64 asset exists.
|
|
url="$base/engine-v$version/impeccable-windows-x64.exe"
|
|
fetch_url "$url" && fetched=1
|
|
fi
|
|
if [ "$fetched" = 1 ]; then
|
|
check_download
|
|
# Fail closed: a freshly downloaded binary runs only after verifying
|
|
# against its .sha256 sidecar. A sidecar that cannot be fetched, or a
|
|
# machine with no sha256 tool, refuses the download instead of exec'ing
|
|
# an unverified binary. (A binary already on PATH or in the cache that
|
|
# passes engine-probe is unaffected.)
|
|
sidecar_ok=0
|
|
if command -v curl >/dev/null 2>&1; then
|
|
curl -fsSL --retry 2 -o "$tmp.sha256" "$url.sha256" 2>/dev/null && sidecar_ok=1
|
|
elif command -v wget >/dev/null 2>&1; then
|
|
wget -q -O "$tmp.sha256" "$url.sha256" 2>/dev/null && sidecar_ok=1
|
|
fi
|
|
check_download
|
|
expected=""
|
|
[ "$sidecar_ok" = 1 ] && expected=$(cut -d' ' -f1 < "$tmp.sha256")
|
|
actual=""
|
|
if command -v shasum >/dev/null 2>&1; then
|
|
if digest=$(shasum -a 256 "$tmp" 2>/dev/null); then actual=${digest%% *}; fi
|
|
elif command -v sha256sum >/dev/null 2>&1; then
|
|
if digest=$(sha256sum "$tmp" 2>/dev/null); then actual=${digest%% *}; fi
|
|
fi
|
|
check_download
|
|
rm -f "$tmp.sha256"
|
|
if [ -z "$expected" ] || [ -z "$actual" ]; then
|
|
rm -f "$tmp"
|
|
echo "impeccable: cannot verify $url against $url.sha256 (sidecar unavailable or hashing failed); refusing the unverified download" >&2
|
|
exit 127
|
|
fi
|
|
if [ "$actual" != "$expected" ]; then
|
|
rm -f "$tmp"
|
|
echo "impeccable: checksum mismatch downloading $url" >&2
|
|
exit 127
|
|
fi
|
|
check_download
|
|
if ! chmod +x "$tmp" 2>/dev/null; then
|
|
check_download
|
|
rm -f "$tmp"
|
|
echo "impeccable: could not make the verified download executable: $url" >&2
|
|
exit 127
|
|
fi
|
|
check_download
|
|
if ! mv -f "$tmp" "$cached" 2>/dev/null; then
|
|
check_download
|
|
rm -f "$tmp"
|
|
echo "impeccable: could not cache the verified download: $url" >&2
|
|
exit 127
|
|
fi
|
|
check_download "$cached"
|
|
exec "$cached" "$@"
|
|
fi
|
|
rm -f "$tmp" 2>/dev/null
|
|
echo "impeccable: could not download engine $version from $url; check network access, the release URL, and curl or wget availability." >&2
|
|
setup_help
|
|
exit 127
|
|
fi
|
|
|
|
echo "impeccable: no engine binary for $os-$arch found (looked in $bin, $cached, PATH)." >&2
|
|
echo "Download impeccable-$os-$arch from https://github.com/pbakaus/impeccable/releases (tag engine-v$version) into $cache_root/bin/$version/impeccable$exe (then chmod +x), or set IMPECCABLE_BIN to a preinstalled engine binary. Docs: https://impeccable.style" >&2
|
|
exit 127
|