mirror of
https://github.com/safedep/pmg.git
synced 2026-08-03 07:24:09 +02:00
- shim: make system executable resolution injectable so tests pass under umask 002; skip the root-owner test when running as root - doctor: treat resolution into either the system or per-user shim dir as intercepted, and collapse the shim-in-PATH check to a single call site - setup: make remove (both --system and per-user) best-effort with errors.Join so one failed step no longer strands the other artifact - shim: allow a group-writable install parent dir (Debian/Ubuntu ship /usr/local/bin as root:staff 2775) while still rejecting world-writable and non-root-owned parents - audit: attribute cloud events to SUDO_USER when running under sudo - docs: drop the soft-fail event-logging claim (hard-fail is retained)
232 lines
6.8 KiB
Go
232 lines
6.8 KiB
Go
package shim
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/safedep/pmg/internal/alias"
|
|
)
|
|
|
|
const (
|
|
defaultSystemBinDir = "/usr/local/lib/pmg/bin"
|
|
defaultSystemProfilePath = "/etc/profile.d/pmg.sh"
|
|
systemProfileMarker = "PMG system shims"
|
|
)
|
|
|
|
// These overrides replace OS-level system install paths in tests. There is
|
|
// intentionally no env var or flag for them.
|
|
var (
|
|
systemBinDirOverride string
|
|
systemProfilePathOverride string
|
|
// systemExecutableOwnershipCheck requires root ownership of the binary and
|
|
// its parent directory. Disabled in tests that cannot create root-owned files.
|
|
systemExecutableOwnershipCheck = true
|
|
// resolveExecutable resolves the running pmg binary for system install.
|
|
// Overridable in tests so validation does not run against the go-build test
|
|
// binary, which is group-writable under a 002 umask.
|
|
resolveExecutable = currentExecutable
|
|
)
|
|
|
|
// SystemBinDir returns the directory for system-wide PMG shims.
|
|
func SystemBinDir() string {
|
|
if systemBinDirOverride != "" {
|
|
return systemBinDirOverride
|
|
}
|
|
return defaultSystemBinDir
|
|
}
|
|
|
|
// SystemProfilePath returns the path of the system profile.d snippet.
|
|
func SystemProfilePath() string {
|
|
if systemProfilePathOverride != "" {
|
|
return systemProfilePathOverride
|
|
}
|
|
return defaultSystemProfilePath
|
|
}
|
|
|
|
// NewSystemShimManager creates a shim manager for system-wide install: shims
|
|
// under SystemBinDir, no per-user rc edits, and /etc/profile.d management.
|
|
// The current executable is validated for multi-user use.
|
|
func NewSystemShimManager() (*ShimManager, error) {
|
|
return newSystemShimManager(true)
|
|
}
|
|
|
|
// NewSystemShimManagerForRemove creates a system shim manager without
|
|
// validating the current executable. Uninstall must work even when the binary
|
|
// that originally installed the shims is no longer suitable for install.
|
|
func NewSystemShimManagerForRemove() (*ShimManager, error) {
|
|
return newSystemShimManager(false)
|
|
}
|
|
|
|
func newSystemShimManager(validateExecutable bool) (*ShimManager, error) {
|
|
aliasCfg := alias.DefaultConfig()
|
|
pmgBin, err := resolveExecutable()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if validateExecutable {
|
|
if err := validateSystemExecutable(pmgBin); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
return &ShimManager{
|
|
config: ShimConfig{
|
|
BinDir: SystemBinDir(),
|
|
PMGBin: pmgBin,
|
|
PackageManagers: aliasCfg.PackageManagers,
|
|
SkipShellRc: true,
|
|
ManageProfile: true,
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
// validateSystemExecutable rejects binaries unsafe for system-wide shims.
|
|
// Shims hard-code this path, so the binary must be executable by all users,
|
|
// not writable by group/others, and owned by root in a root-owned, non-world-
|
|
// writable parent.
|
|
func validateSystemExecutable(path string) error {
|
|
info, err := os.Stat(path)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to inspect pmg executable %s: %w", path, err)
|
|
}
|
|
|
|
perm := info.Mode().Perm()
|
|
|
|
// Other users must be able to exec the hard-coded pmg path from system shims.
|
|
otherExecute := os.FileMode(0o001)
|
|
// Group/other write would let another account replace the binary.
|
|
groupOrOtherWrite := os.FileMode(0o022)
|
|
|
|
if perm&otherExecute == 0 {
|
|
return fmt.Errorf("pmg executable %s is not executable by all users", path)
|
|
}
|
|
if perm&groupOrOtherWrite != 0 {
|
|
return fmt.Errorf("pmg executable %s is writable by group or others", path)
|
|
}
|
|
|
|
if systemExecutableOwnershipCheck {
|
|
// Root ownership of the binary and its parent blocks non-root replacement.
|
|
if err := requireRootOwnedPath(path, info); err != nil {
|
|
return err
|
|
}
|
|
if err := requireSafeParentDir(filepath.Dir(path)); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func requireRootOwnedPath(path string, info os.FileInfo) error {
|
|
uid, ok := fileOwnerUID(info)
|
|
if !ok {
|
|
return fmt.Errorf("cannot determine owner of %s", path)
|
|
}
|
|
if uid != 0 {
|
|
return fmt.Errorf("pmg executable %s must be owned by root", path)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// requireSafeParentDir validates only the immediate parent of the executable,
|
|
// not the full chain up to /. It requires a root-owned, non-world-writable
|
|
// parent so an unprivileged account cannot swap the shared binary that every
|
|
// user's shims exec; a maliciously writable grandparent is out of scope.
|
|
//
|
|
// Group-writable is allowed deliberately: Debian/Ubuntu ship /usr/local/bin as
|
|
// root:staff mode 2775, so rejecting group-writable would refuse the documented
|
|
// install location out of the box. The tradeoff is that a member of the parent
|
|
// directory's group can replace the binary — harden the directory (chmod g-w)
|
|
// on multi-user hosts where that group is not trusted.
|
|
func requireSafeParentDir(dir string) error {
|
|
info, err := os.Stat(dir)
|
|
if err != nil {
|
|
return fmt.Errorf("failed to inspect directory %s: %w", dir, err)
|
|
}
|
|
|
|
if info.Mode().Perm()&os.FileMode(0o002) != 0 {
|
|
return fmt.Errorf("directory %s containing pmg executable is writable by others", dir)
|
|
}
|
|
|
|
uid, ok := fileOwnerUID(info)
|
|
if !ok {
|
|
return fmt.Errorf("cannot determine owner of directory %s", dir)
|
|
}
|
|
|
|
if uid != 0 {
|
|
return fmt.Errorf("directory %s containing pmg executable must be owned by root", dir)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// SystemShimsInstalled reports whether the system shim directory contains at
|
|
// least one shim script.
|
|
func SystemShimsInstalled() bool {
|
|
return shimsPresent(SystemBinDir())
|
|
}
|
|
|
|
func shimsPresent(dir string) bool {
|
|
entries, err := os.ReadDir(dir)
|
|
if err != nil {
|
|
return false
|
|
}
|
|
for _, e := range entries {
|
|
if e.IsDir() {
|
|
continue
|
|
}
|
|
content, err := os.ReadFile(filepath.Join(dir, e.Name()))
|
|
if err == nil && strings.Contains(string(content), shimScriptMarker) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
// SystemProfileInstalled reports whether the system profile snippet exists and
|
|
// contains the PMG marker.
|
|
func SystemProfileInstalled() bool {
|
|
data, err := os.ReadFile(SystemProfilePath())
|
|
if err != nil {
|
|
return false
|
|
}
|
|
return strings.Contains(string(data), systemProfileMarker)
|
|
}
|
|
|
|
func writeSystemProfile(binDir string) error {
|
|
path := SystemProfilePath()
|
|
|
|
if err := os.MkdirAll(filepath.Dir(path), 0o755); err != nil {
|
|
return fmt.Errorf("failed to create profile.d directory: %w", err)
|
|
}
|
|
|
|
content := fmt.Sprintf(`# %s - managed by pmg setup install --system
|
|
# remove by running: pmg setup remove --system
|
|
export PATH="%s:$PATH"
|
|
`, systemProfileMarker, binDir)
|
|
|
|
data, err := os.ReadFile(path)
|
|
if err == nil && string(data) == content {
|
|
return nil
|
|
}
|
|
|
|
if err != nil && !os.IsNotExist(err) {
|
|
return fmt.Errorf("failed to read system profile %s: %w", path, err)
|
|
}
|
|
|
|
if err := os.WriteFile(path, []byte(content), 0o644); err != nil {
|
|
return fmt.Errorf("failed to write system profile %s: %w", path, err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func removeSystemProfile() error {
|
|
path := SystemProfilePath()
|
|
if err := os.Remove(path); err != nil && !os.IsNotExist(err) {
|
|
return fmt.Errorf("failed to remove system profile %s: %w", path, err)
|
|
}
|
|
return nil
|
|
}
|