fix(cmd): use exec.LookPath in Which() so detection works without external 'which' (#12651)

cmd.Which() previously shelled out to `which <name>` to determine whether
a binary was on PATH. On distributions that do not ship a `which` package
by default — Arch Linux is the canonical example, but the same applies to
several minimal container images — `which` itself is missing, so every
call to Which() returned false and 1Panel reported core dependencies
(notably Docker) as 'not installed' even when they were running normally.

Switch the primary path to Go's exec.LookPath, which uses the process
PATH directly and has no external dependency. The original shell-out is
preserved as a fallback so any environment where the agent's PATH
differs from the user's interactive shell PATH (the original reason the
shell-out existed) keeps working unchanged.

Both copies are updated (agent/utils/cmd/cmd.go and core/utils/cmd/cmd.go)
and a small unit test is added to each package to guard the regression.

Fixes #12605

Signed-off-by: Sanjay Santhanam <51058514+Sanjays2402@users.noreply.github.com>
This commit is contained in:
Sanjay Santhanam
2026-05-05 19:47:02 -07:00
committed by GitHub
parent 68411bddd9
commit b06bc0a455
4 changed files with 66 additions and 0 deletions

View File

@@ -17,6 +17,16 @@ func SudoHandleCmd() string {
}
func Which(name string) bool {
// Prefer Go's built-in PATH lookup so we don't depend on an external
// `which` binary, which is not installed by default on minimal
// distributions (e.g. Arch Linux, some Alpine images, slim containers).
// See 1Panel-dev/1Panel#12605.
if _, err := exec.LookPath(name); err == nil {
return true
}
// Fall back to shelling out for environments where PATH inside the
// agent process differs from the user's interactive shell PATH (the
// previous behaviour, preserved for compatibility).
stdout, err := RunDefaultWithStdoutBashCf("which %s", name)
if err != nil || (len(strings.ReplaceAll(stdout, "\n", "")) == 0) {
return false

View File

@@ -0,0 +1,23 @@
package cmd
import "testing"
// TestWhich_ExistingBinary verifies that Which() returns true for a
// binary that is guaranteed to exist on every Unix-like build host
// (`sh`). Regression test for #12605: the previous implementation
// shelled out to `which`, which is not always available on minimal
// distributions like Arch Linux. The new implementation tries
// exec.LookPath first, so this assertion holds regardless of whether
// `which` itself is on PATH.
func TestWhich_ExistingBinary(t *testing.T) {
if !Which("sh") {
t.Errorf("Which(\"sh\") = false, want true")
}
}
func TestWhich_MissingBinary(t *testing.T) {
// A binary name that is extremely unlikely to exist on any host.
if Which("definitely-not-a-real-binary-xyzzy-1panel") {
t.Errorf("Which(\"definitely-not-a-real-binary-xyzzy-1panel\") = true, want false")
}
}