2026-07-03 18:19:31 +05:30
|
|
|
// Package golang implements the experimental `pmg go` command. The package is
|
|
|
|
|
// named golang (not go) to avoid shadowing the toolchain name as a package
|
|
|
|
|
// path; the user-facing command is still `pmg go`.
|
|
|
|
|
package golang
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"context"
|
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
|
|
"github.com/safedep/dry/usefulerror"
|
|
|
|
|
"github.com/safedep/pmg/config"
|
|
|
|
|
"github.com/safedep/pmg/errcodes"
|
|
|
|
|
"github.com/safedep/pmg/internal/analytics"
|
|
|
|
|
"github.com/safedep/pmg/internal/flows"
|
|
|
|
|
"github.com/safedep/pmg/internal/ui"
|
|
|
|
|
"github.com/safedep/pmg/packagemanager"
|
|
|
|
|
"github.com/safedep/pmg/proxy/certmanager"
|
|
|
|
|
"github.com/safedep/pmg/truststore"
|
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func NewGoCommand() *cobra.Command {
|
|
|
|
|
return &cobra.Command{
|
|
|
|
|
Use: "go [action] [module]",
|
|
|
|
|
Short: "Guard go module downloads (experimental)",
|
|
|
|
|
DisableFlagParsing: true,
|
|
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
|
|
|
err := executeGoFlow(cmd.Context(), args)
|
|
|
|
|
if err != nil {
|
|
|
|
|
ui.ExitFromCommandError(err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func executeGoFlow(ctx context.Context, args []string) error {
|
|
|
|
|
analytics.TrackCommandGo()
|
|
|
|
|
|
|
|
|
|
packageManager, err := packagemanager.NewGoPackageManager(packagemanager.DefaultGoPackageManagerConfig())
|
|
|
|
|
if err != nil {
|
|
|
|
|
return fmt.Errorf("failed to create go package manager: %w", err)
|
|
|
|
|
}
|
|
|
|
|
|
2026-07-22 15:19:19 +05:30
|
|
|
// Reject a removed proxy opt-out before the CA trust check: the old code
|
|
|
|
|
// reported the mode error first, and a config problem must not steer the
|
|
|
|
|
// user into an unnecessary OS trust store change.
|
|
|
|
|
if err := config.RejectRemovedProxyOptOut(); err != nil {
|
|
|
|
|
return err
|
2026-07-03 18:19:31 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if err := requireTrustedCA(); err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
2026-07-22 15:19:19 +05:30
|
|
|
return flows.RunProxy(ctx, packageManager, args)
|
2026-07-03 18:19:31 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// requireTrustedCA fails fast when Go cannot trust PMG's MITM CA. Go's
|
|
|
|
|
// crypto/x509 ignores SSL_CERT_FILE on macOS and Windows and verifies TLS
|
|
|
|
|
// against the OS trust store only, so without an OS-trusted persisted CA every
|
|
|
|
|
// module download would fail mid-build with an opaque x509 error. Linux honors
|
|
|
|
|
// the injected SSL_CERT_FILE bundle, so any CA (persisted or ephemeral) works.
|
|
|
|
|
func requireTrustedCA() error {
|
|
|
|
|
if !truststore.UserScopeSupported() {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if _, err := certmanager.LoadCA(config.Get().ConfigDir()); err != nil {
|
|
|
|
|
return errGoCertNotTrusted(err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
user, system, err := truststore.Status(certmanager.CACommonName)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return errGoCertNotTrusted(err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if !user && !system {
|
|
|
|
|
return errGoCertNotTrusted(nil)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func errGoCertNotTrusted(cause error) error {
|
|
|
|
|
err := usefulerror.NewUsefulError().
|
|
|
|
|
WithCode(errcodes.CertTrustStore).
|
|
|
|
|
WithHumanError("Go ignores PMG's injected CA bundle on this OS; the PMG proxy CA must be trusted in the OS trust store.").
|
|
|
|
|
WithHelp("Run `pmg setup cert install` to install and trust the PMG proxy CA, then retry.").
|
|
|
|
|
WithMsg("pmg proxy CA is not trusted in the OS trust store")
|
|
|
|
|
|
|
|
|
|
if cause != nil {
|
|
|
|
|
return err.Wrap(cause)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return err
|
|
|
|
|
}
|