Source file src/cmd/go/internal/modload/load.go

     1  // Copyright 2018 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  package modload
     6  
     7  // This file contains the module-mode package loader, as well as some accessory
     8  // functions pertaining to the package import graph.
     9  //
    10  // There are two exported entry points into package loading — LoadPackages and
    11  // ImportFromFiles — both implemented in terms of loadFromRoots, which itself
    12  // manipulates an instance of the loader struct.
    13  //
    14  // Although most of the loading state is maintained in the loader struct,
    15  // one key piece - the build list - is a global, so that it can be modified
    16  // separate from the loading operation, such as during "go get"
    17  // upgrades/downgrades or in "go mod" operations.
    18  // TODO(#40775): It might be nice to make the loader take and return
    19  // a buildList rather than hard-coding use of the global.
    20  //
    21  // Loading is an iterative process. On each iteration, we try to load the
    22  // requested packages and their transitive imports, then try to resolve modules
    23  // for any imported packages that are still missing.
    24  //
    25  // The first step of each iteration identifies a set of “root” packages.
    26  // Normally the root packages are exactly those matching the named pattern
    27  // arguments. However, for the "all" meta-pattern, the final set of packages is
    28  // computed from the package import graph, and therefore cannot be an initial
    29  // input to loading that graph. Instead, the root packages for the "all" pattern
    30  // are those contained in the main module, and allPatternIsRoot parameter to the
    31  // loader instructs it to dynamically expand those roots to the full "all"
    32  // pattern as loading progresses.
    33  //
    34  // The pkgInAll flag on each loadPkg instance tracks whether that
    35  // package is known to match the "all" meta-pattern.
    36  // A package matches the "all" pattern if:
    37  // 	- it is in the main module, or
    38  // 	- it is imported by any test in the main module, or
    39  // 	- it is imported by a tool of the main module, or
    40  // 	- it is imported by another package in "all", or
    41  // 	- the main module specifies a go version ≤ 1.15, and the package is imported
    42  // 	  by a *test of* another package in "all".
    43  //
    44  // When graph pruning is in effect, we want to spot-check the graph-pruning
    45  // invariants — which depend on which packages are known to be in "all" — even
    46  // when we are only loading individual packages, so we set the pkgInAll flag
    47  // regardless of the whether the "all" pattern is a root.
    48  // (This is necessary to maintain the “import invariant” described in
    49  // https://golang.org/design/36460-lazy-module-loading.)
    50  //
    51  // Because "go mod vendor" prunes out the tests of vendored packages, the
    52  // behavior of the "all" pattern with -mod=vendor in Go 1.11–1.15 is the same
    53  // as the "all" pattern (regardless of the -mod flag) in 1.16+.
    54  // The loader uses the GoVersion parameter to determine whether the "all"
    55  // pattern should close over tests (as in Go 1.11–1.15) or stop at only those
    56  // packages transitively imported by the packages and tests in the main module
    57  // ("all" in Go 1.16+ and "go mod vendor" in Go 1.11+).
    58  //
    59  // Note that it is possible for a loaded package NOT to be in "all" even when we
    60  // are loading the "all" pattern. For example, packages that are transitive
    61  // dependencies of other roots named on the command line must be loaded, but are
    62  // not in "all". (The mod_notall test illustrates this behavior.)
    63  // Similarly, if the LoadTests flag is set but the "all" pattern does not close
    64  // over test dependencies, then when we load the test of a package that is in
    65  // "all" but outside the main module, the dependencies of that test will not
    66  // necessarily themselves be in "all". (That configuration does not arise in Go
    67  // 1.11–1.15, but it will be possible in Go 1.16+.)
    68  //
    69  // Loading proceeds from the roots, using a parallel work-queue with a limit on
    70  // the amount of active work (to avoid saturating disks, CPU cores, and/or
    71  // network connections). Each package is added to the queue the first time it is
    72  // imported by another package. When we have finished identifying the imports of
    73  // a package, we add the test for that package if it is needed. A test may be
    74  // needed if:
    75  // 	- the package matches a root pattern and tests of the roots were requested, or
    76  // 	- the package is in the main module and the "all" pattern is requested
    77  // 	  (because the "all" pattern includes the dependencies of tests in the main
    78  // 	  module), or
    79  // 	- the package is in "all" and the definition of "all" we are using includes
    80  // 	  dependencies of tests (as is the case in Go ≤1.15).
    81  //
    82  // After all available packages have been loaded, we examine the results to
    83  // identify any requested or imported packages that are still missing, and if
    84  // so, which modules we could add to the module graph in order to make the
    85  // missing packages available. We add those to the module graph and iterate,
    86  // until either all packages resolve successfully or we cannot identify any
    87  // module that would resolve any remaining missing package.
    88  //
    89  // If the main module is “tidy” (that is, if "go mod tidy" is a no-op for it)
    90  // and all requested packages are in "all", then loading completes in a single
    91  // iteration.
    92  // TODO(bcmills): We should also be able to load in a single iteration if the
    93  // requested packages all come from modules that are themselves tidy, regardless
    94  // of whether those packages are in "all". Today, that requires two iterations
    95  // if those packages are not found in existing dependencies of the main module.
    96  
    97  import (
    98  	"context"
    99  	"errors"
   100  	"fmt"
   101  	"go/build"
   102  	"internal/diff"
   103  	"io/fs"
   104  	"maps"
   105  	"os"
   106  	"path"
   107  	pathpkg "path"
   108  	"path/filepath"
   109  	"runtime"
   110  	"slices"
   111  	"sort"
   112  	"strings"
   113  	"sync"
   114  	"sync/atomic"
   115  
   116  	"cmd/go/internal/base"
   117  	"cmd/go/internal/cfg"
   118  	"cmd/go/internal/fips140"
   119  	"cmd/go/internal/fsys"
   120  	"cmd/go/internal/gover"
   121  	"cmd/go/internal/imports"
   122  	"cmd/go/internal/modfetch"
   123  	"cmd/go/internal/modindex"
   124  	"cmd/go/internal/mvs"
   125  	"cmd/go/internal/search"
   126  	"cmd/go/internal/str"
   127  	"cmd/internal/par"
   128  
   129  	"golang.org/x/mod/module"
   130  )
   131  
   132  // loaded is the most recently-used package loader.
   133  // It holds details about individual packages.
   134  //
   135  // This variable should only be accessed directly in top-level exported
   136  // functions. All other functions that require or produce a *loader should pass
   137  // or return it as an explicit parameter.
   138  var loaded *loader
   139  
   140  // PackageOpts control the behavior of the LoadPackages function.
   141  type PackageOpts struct {
   142  	// TidyGoVersion is the Go version to which the go.mod file should be updated
   143  	// after packages have been loaded.
   144  	//
   145  	// An empty TidyGoVersion means to use the Go version already specified in the
   146  	// main module's go.mod file, or the latest Go version if there is no main
   147  	// module.
   148  	TidyGoVersion string
   149  
   150  	// Tags are the build tags in effect (as interpreted by the
   151  	// cmd/go/internal/imports package).
   152  	// If nil, treated as equivalent to imports.Tags().
   153  	Tags map[string]bool
   154  
   155  	// Tidy, if true, requests that the build list and go.sum file be reduced to
   156  	// the minimal dependencies needed to reproducibly reload the requested
   157  	// packages.
   158  	Tidy bool
   159  
   160  	// TidyDiff, if true, causes tidy not to modify go.mod or go.sum but
   161  	// instead print the necessary changes as a unified diff. It exits
   162  	// with a non-zero code if the diff is not empty.
   163  	TidyDiff bool
   164  
   165  	// TidyCompatibleVersion is the oldest Go version that must be able to
   166  	// reproducibly reload the requested packages.
   167  	//
   168  	// If empty, the compatible version is the Go version immediately prior to the
   169  	// 'go' version listed in the go.mod file.
   170  	TidyCompatibleVersion string
   171  
   172  	// VendorModulesInGOROOTSrc indicates that if we are within a module in
   173  	// GOROOT/src, packages in the module's vendor directory should be resolved as
   174  	// actual module dependencies (instead of standard-library packages).
   175  	VendorModulesInGOROOTSrc bool
   176  
   177  	// ResolveMissingImports indicates that we should attempt to add module
   178  	// dependencies as needed to resolve imports of packages that are not found.
   179  	//
   180  	// For commands that support the -mod flag, resolving imports may still fail
   181  	// if the flag is set to "readonly" (the default) or "vendor".
   182  	ResolveMissingImports bool
   183  
   184  	// AssumeRootsImported indicates that the transitive dependencies of the root
   185  	// packages should be treated as if those roots will be imported by the main
   186  	// module.
   187  	AssumeRootsImported bool
   188  
   189  	// AllowPackage, if non-nil, is called after identifying the module providing
   190  	// each package. If AllowPackage returns a non-nil error, that error is set
   191  	// for the package, and the imports and test of that package will not be
   192  	// loaded.
   193  	//
   194  	// AllowPackage may be invoked concurrently by multiple goroutines,
   195  	// and may be invoked multiple times for a given package path.
   196  	AllowPackage func(ctx context.Context, path string, mod module.Version) error
   197  
   198  	// LoadTests loads the test dependencies of each package matching a requested
   199  	// pattern. If ResolveMissingImports is also true, test dependencies will be
   200  	// resolved if missing.
   201  	LoadTests bool
   202  
   203  	// UseVendorAll causes the "all" package pattern to be interpreted as if
   204  	// running "go mod vendor" (or building with "-mod=vendor").
   205  	//
   206  	// This is a no-op for modules that declare 'go 1.16' or higher, for which this
   207  	// is the default (and only) interpretation of the "all" pattern in module mode.
   208  	UseVendorAll bool
   209  
   210  	// AllowErrors indicates that LoadPackages should not terminate the process if
   211  	// an error occurs.
   212  	AllowErrors bool
   213  
   214  	// SilencePackageErrors indicates that LoadPackages should not print errors
   215  	// that occur while matching or loading packages, and should not terminate the
   216  	// process if such an error occurs.
   217  	//
   218  	// Errors encountered in the module graph will still be reported.
   219  	//
   220  	// The caller may retrieve the silenced package errors using the Lookup
   221  	// function, and matching errors are still populated in the Errs field of the
   222  	// associated search.Match.)
   223  	SilencePackageErrors bool
   224  
   225  	// SilenceMissingStdImports indicates that LoadPackages should not print
   226  	// errors or terminate the process if an imported package is missing, and the
   227  	// import path looks like it might be in the standard library (perhaps in a
   228  	// future version).
   229  	SilenceMissingStdImports bool
   230  
   231  	// SilenceNoGoErrors indicates that LoadPackages should not print
   232  	// imports.ErrNoGo errors.
   233  	// This allows the caller to invoke LoadPackages (and report other errors)
   234  	// without knowing whether the requested packages exist for the given tags.
   235  	//
   236  	// Note that if a requested package does not exist *at all*, it will fail
   237  	// during module resolution and the error will not be suppressed.
   238  	SilenceNoGoErrors bool
   239  
   240  	// SilenceUnmatchedWarnings suppresses the warnings normally emitted for
   241  	// patterns that did not match any packages.
   242  	SilenceUnmatchedWarnings bool
   243  
   244  	// Resolve the query against this module.
   245  	MainModule module.Version
   246  
   247  	// If Switcher is non-nil, then LoadPackages passes all encountered errors
   248  	// to Switcher.Error and tries Switcher.Switch before base.ExitIfErrors.
   249  	Switcher gover.Switcher
   250  }
   251  
   252  // LoadPackages identifies the set of packages matching the given patterns and
   253  // loads the packages in the import graph rooted at that set.
   254  func LoadPackages(ctx context.Context, opts PackageOpts, patterns ...string) (matches []*search.Match, loadedPackages []string) {
   255  	if opts.Tags == nil {
   256  		opts.Tags = imports.Tags()
   257  	}
   258  
   259  	patterns = search.CleanPatterns(patterns)
   260  	matches = make([]*search.Match, 0, len(patterns))
   261  	allPatternIsRoot := false
   262  	for _, pattern := range patterns {
   263  		matches = append(matches, search.NewMatch(pattern))
   264  		if pattern == "all" {
   265  			allPatternIsRoot = true
   266  		}
   267  	}
   268  
   269  	updateMatches := func(rs *Requirements, ld *loader) {
   270  		for _, m := range matches {
   271  			switch {
   272  			case m.IsLocal():
   273  				// Evaluate list of file system directories on first iteration.
   274  				if m.Dirs == nil {
   275  					matchModRoots := modRoots
   276  					if opts.MainModule != (module.Version{}) {
   277  						matchModRoots = []string{MainModules.ModRoot(opts.MainModule)}
   278  					}
   279  					matchLocalDirs(ctx, matchModRoots, m, rs)
   280  				}
   281  
   282  				// Make a copy of the directory list and translate to import paths.
   283  				// Note that whether a directory corresponds to an import path
   284  				// changes as the build list is updated, and a directory can change
   285  				// from not being in the build list to being in it and back as
   286  				// the exact version of a particular module increases during
   287  				// the loader iterations.
   288  				m.Pkgs = m.Pkgs[:0]
   289  				for _, dir := range m.Dirs {
   290  					pkg, err := resolveLocalPackage(ctx, dir, rs)
   291  					if err != nil {
   292  						if !m.IsLiteral() && (err == errPkgIsBuiltin || err == errPkgIsGorootSrc) {
   293  							continue // Don't include "builtin" or GOROOT/src in wildcard patterns.
   294  						}
   295  
   296  						// If we're outside of a module, ensure that the failure mode
   297  						// indicates that.
   298  						if !HasModRoot() {
   299  							die()
   300  						}
   301  
   302  						if ld != nil {
   303  							m.AddError(err)
   304  						}
   305  						continue
   306  					}
   307  					m.Pkgs = append(m.Pkgs, pkg)
   308  				}
   309  
   310  			case m.IsLiteral():
   311  				m.Pkgs = []string{m.Pattern()}
   312  
   313  			case strings.Contains(m.Pattern(), "..."):
   314  				m.Errs = m.Errs[:0]
   315  				mg, err := rs.Graph(ctx)
   316  				if err != nil {
   317  					// The module graph is (or may be) incomplete — perhaps we failed to
   318  					// load the requirements of some module. This is an error in matching
   319  					// the patterns to packages, because we may be missing some packages
   320  					// or we may erroneously match packages in the wrong versions of
   321  					// modules. However, for cases like 'go list -e', the error should not
   322  					// necessarily prevent us from loading the packages we could find.
   323  					m.Errs = append(m.Errs, err)
   324  				}
   325  				matchPackages(ctx, m, opts.Tags, includeStd, mg.BuildList())
   326  
   327  			case m.Pattern() == "all":
   328  				if ld == nil {
   329  					// The initial roots are the packages and tools in the main module.
   330  					// loadFromRoots will expand that to "all".
   331  					m.Errs = m.Errs[:0]
   332  					matchModules := MainModules.Versions()
   333  					if opts.MainModule != (module.Version{}) {
   334  						matchModules = []module.Version{opts.MainModule}
   335  					}
   336  					matchPackages(ctx, m, opts.Tags, omitStd, matchModules)
   337  					for tool := range MainModules.Tools() {
   338  						m.Pkgs = append(m.Pkgs, tool)
   339  					}
   340  				} else {
   341  					// Starting with the packages in the main module,
   342  					// enumerate the full list of "all".
   343  					m.Pkgs = ld.computePatternAll()
   344  				}
   345  
   346  			case m.Pattern() == "std" || m.Pattern() == "cmd":
   347  				if m.Pkgs == nil {
   348  					m.MatchPackages() // Locate the packages within GOROOT/src.
   349  				}
   350  
   351  			case m.Pattern() == "tool":
   352  				for tool := range MainModules.Tools() {
   353  					m.Pkgs = append(m.Pkgs, tool)
   354  				}
   355  			default:
   356  				panic(fmt.Sprintf("internal error: modload missing case for pattern %s", m.Pattern()))
   357  			}
   358  		}
   359  	}
   360  
   361  	initialRS, err := loadModFile(ctx, &opts)
   362  	if err != nil {
   363  		base.Fatal(err)
   364  	}
   365  
   366  	ld := loadFromRoots(ctx, loaderParams{
   367  		PackageOpts:  opts,
   368  		requirements: initialRS,
   369  
   370  		allPatternIsRoot: allPatternIsRoot,
   371  
   372  		listRoots: func(rs *Requirements) (roots []string) {
   373  			updateMatches(rs, nil)
   374  			for _, m := range matches {
   375  				roots = append(roots, m.Pkgs...)
   376  			}
   377  			return roots
   378  		},
   379  	})
   380  
   381  	// One last pass to finalize wildcards.
   382  	updateMatches(ld.requirements, ld)
   383  
   384  	// List errors in matching patterns (such as directory permission
   385  	// errors for wildcard patterns).
   386  	if !ld.SilencePackageErrors {
   387  		for _, match := range matches {
   388  			for _, err := range match.Errs {
   389  				ld.error(err)
   390  			}
   391  		}
   392  	}
   393  	ld.exitIfErrors(ctx)
   394  
   395  	if !opts.SilenceUnmatchedWarnings {
   396  		search.WarnUnmatched(matches)
   397  	}
   398  
   399  	if opts.Tidy {
   400  		if cfg.BuildV {
   401  			mg, _ := ld.requirements.Graph(ctx)
   402  			for _, m := range initialRS.rootModules {
   403  				var unused bool
   404  				if ld.requirements.pruning == unpruned {
   405  					// m is unused if it was dropped from the module graph entirely. If it
   406  					// was only demoted from direct to indirect, it may still be in use via
   407  					// a transitive import.
   408  					unused = mg.Selected(m.Path) == "none"
   409  				} else {
   410  					// m is unused if it was dropped from the roots. If it is still present
   411  					// as a transitive dependency, that transitive dependency is not needed
   412  					// by any package or test in the main module.
   413  					_, ok := ld.requirements.rootSelected(m.Path)
   414  					unused = !ok
   415  				}
   416  				if unused {
   417  					fmt.Fprintf(os.Stderr, "unused %s\n", m.Path)
   418  				}
   419  			}
   420  		}
   421  
   422  		keep := keepSums(ctx, ld, ld.requirements, loadedZipSumsOnly)
   423  		compatVersion := ld.TidyCompatibleVersion
   424  		goVersion := ld.requirements.GoVersion()
   425  		if compatVersion == "" {
   426  			if gover.Compare(goVersion, gover.GoStrictVersion) < 0 {
   427  				compatVersion = gover.Prev(goVersion)
   428  			} else {
   429  				// Starting at GoStrictVersion, we no longer maintain compatibility with
   430  				// versions older than what is listed in the go.mod file.
   431  				compatVersion = goVersion
   432  			}
   433  		}
   434  		if gover.Compare(compatVersion, goVersion) > 0 {
   435  			// Each version of the Go toolchain knows how to interpret go.mod and
   436  			// go.sum files produced by all previous versions, so a compatibility
   437  			// version higher than the go.mod version adds nothing.
   438  			compatVersion = goVersion
   439  		}
   440  		if compatPruning := pruningForGoVersion(compatVersion); compatPruning != ld.requirements.pruning {
   441  			compatRS := newRequirements(compatPruning, ld.requirements.rootModules, ld.requirements.direct)
   442  			ld.checkTidyCompatibility(ctx, compatRS, compatVersion)
   443  
   444  			for m := range keepSums(ctx, ld, compatRS, loadedZipSumsOnly) {
   445  				keep[m] = true
   446  			}
   447  		}
   448  
   449  		if opts.TidyDiff {
   450  			cfg.BuildMod = "readonly"
   451  			loaded = ld
   452  			requirements = loaded.requirements
   453  			currentGoMod, updatedGoMod, _, err := UpdateGoModFromReqs(ctx, WriteOpts{})
   454  			if err != nil {
   455  				base.Fatal(err)
   456  			}
   457  			goModDiff := diff.Diff("current/go.mod", currentGoMod, "tidy/go.mod", updatedGoMod)
   458  
   459  			modfetch.TrimGoSum(keep)
   460  			// Dropping compatibility for 1.16 may result in a strictly smaller go.sum.
   461  			// Update the keep map with only the loaded.requirements.
   462  			if gover.Compare(compatVersion, "1.16") > 0 {
   463  				keep = keepSums(ctx, loaded, requirements, addBuildListZipSums)
   464  			}
   465  			currentGoSum, tidyGoSum := modfetch.TidyGoSum(keep)
   466  			goSumDiff := diff.Diff("current/go.sum", currentGoSum, "tidy/go.sum", tidyGoSum)
   467  
   468  			if len(goModDiff) > 0 {
   469  				fmt.Println(string(goModDiff))
   470  				base.SetExitStatus(1)
   471  			}
   472  			if len(goSumDiff) > 0 {
   473  				fmt.Println(string(goSumDiff))
   474  				base.SetExitStatus(1)
   475  			}
   476  			base.Exit()
   477  		}
   478  
   479  		if !ExplicitWriteGoMod {
   480  			modfetch.TrimGoSum(keep)
   481  
   482  			// commitRequirements below will also call WriteGoSum, but the "keep" map
   483  			// we have here could be strictly larger: commitRequirements only commits
   484  			// loaded.requirements, but here we may have also loaded (and want to
   485  			// preserve checksums for) additional entities from compatRS, which are
   486  			// only needed for compatibility with ld.TidyCompatibleVersion.
   487  			if err := modfetch.WriteGoSum(ctx, keep, mustHaveCompleteRequirements()); err != nil {
   488  				base.Fatal(err)
   489  			}
   490  		}
   491  	}
   492  
   493  	if opts.TidyDiff && !opts.Tidy {
   494  		panic("TidyDiff is set but Tidy is not.")
   495  	}
   496  
   497  	// Success! Update go.mod and go.sum (if needed) and return the results.
   498  	// We'll skip updating if ExplicitWriteGoMod is true (the caller has opted
   499  	// to call WriteGoMod itself) or if ResolveMissingImports is false (the
   500  	// command wants to examine the package graph as-is).
   501  	loaded = ld
   502  	requirements = loaded.requirements
   503  
   504  	for _, pkg := range ld.pkgs {
   505  		if !pkg.isTest() {
   506  			loadedPackages = append(loadedPackages, pkg.path)
   507  		}
   508  	}
   509  	sort.Strings(loadedPackages)
   510  
   511  	if !ExplicitWriteGoMod && opts.ResolveMissingImports {
   512  		if err := commitRequirements(ctx, WriteOpts{}); err != nil {
   513  			base.Fatal(err)
   514  		}
   515  	}
   516  
   517  	return matches, loadedPackages
   518  }
   519  
   520  // matchLocalDirs is like m.MatchDirs, but tries to avoid scanning directories
   521  // outside of the standard library and active modules.
   522  func matchLocalDirs(ctx context.Context, modRoots []string, m *search.Match, rs *Requirements) {
   523  	if !m.IsLocal() {
   524  		panic(fmt.Sprintf("internal error: resolveLocalDirs on non-local pattern %s", m.Pattern()))
   525  	}
   526  
   527  	if i := strings.Index(m.Pattern(), "..."); i >= 0 {
   528  		// The pattern is local, but it is a wildcard. Its packages will
   529  		// only resolve to paths if they are inside of the standard
   530  		// library, the main module, or some dependency of the main
   531  		// module. Verify that before we walk the filesystem: a filesystem
   532  		// walk in a directory like /var or /etc can be very expensive!
   533  		dir := filepath.Dir(filepath.Clean(m.Pattern()[:i+3]))
   534  		absDir := dir
   535  		if !filepath.IsAbs(dir) {
   536  			absDir = filepath.Join(base.Cwd(), dir)
   537  		}
   538  
   539  		modRoot := findModuleRoot(absDir)
   540  		if !slices.Contains(modRoots, modRoot) && search.InDir(absDir, cfg.GOROOTsrc) == "" && pathInModuleCache(ctx, absDir, rs) == "" {
   541  			m.Dirs = []string{}
   542  			scope := "main module or its selected dependencies"
   543  			if inWorkspaceMode() {
   544  				scope = "modules listed in go.work or their selected dependencies"
   545  			}
   546  			m.AddError(fmt.Errorf("directory prefix %s does not contain %s", base.ShortPath(absDir), scope))
   547  			return
   548  		}
   549  	}
   550  
   551  	m.MatchDirs(modRoots)
   552  }
   553  
   554  // resolveLocalPackage resolves a filesystem path to a package path.
   555  func resolveLocalPackage(ctx context.Context, dir string, rs *Requirements) (string, error) {
   556  	var absDir string
   557  	if filepath.IsAbs(dir) {
   558  		absDir = filepath.Clean(dir)
   559  	} else {
   560  		absDir = filepath.Join(base.Cwd(), dir)
   561  	}
   562  
   563  	bp, err := cfg.BuildContext.ImportDir(absDir, 0)
   564  	if err != nil && (bp == nil || len(bp.IgnoredGoFiles) == 0) {
   565  		// golang.org/issue/32917: We should resolve a relative path to a
   566  		// package path only if the relative path actually contains the code
   567  		// for that package.
   568  		//
   569  		// If the named directory does not exist or contains no Go files,
   570  		// the package does not exist.
   571  		// Other errors may affect package loading, but not resolution.
   572  		if _, err := fsys.Stat(absDir); err != nil {
   573  			if os.IsNotExist(err) {
   574  				// Canonicalize OS-specific errors to errDirectoryNotFound so that error
   575  				// messages will be easier for users to search for.
   576  				return "", &fs.PathError{Op: "stat", Path: absDir, Err: errDirectoryNotFound}
   577  			}
   578  			return "", err
   579  		}
   580  		if _, noGo := err.(*build.NoGoError); noGo {
   581  			// A directory that does not contain any Go source files — even ignored
   582  			// ones! — is not a Go package, and we can't resolve it to a package
   583  			// path because that path could plausibly be provided by some other
   584  			// module.
   585  			//
   586  			// Any other error indicates that the package “exists” (at least in the
   587  			// sense that it cannot exist in any other module), but has some other
   588  			// problem (such as a syntax error).
   589  			return "", err
   590  		}
   591  	}
   592  
   593  	for _, mod := range MainModules.Versions() {
   594  		modRoot := MainModules.ModRoot(mod)
   595  		if modRoot != "" && absDir == modRoot {
   596  			if absDir == cfg.GOROOTsrc {
   597  				return "", errPkgIsGorootSrc
   598  			}
   599  			return MainModules.PathPrefix(mod), nil
   600  		}
   601  	}
   602  
   603  	// Note: The checks for @ here are just to avoid misinterpreting
   604  	// the module cache directories (formerly GOPATH/src/mod/foo@v1.5.2/bar).
   605  	// It's not strictly necessary but helpful to keep the checks.
   606  	var pkgNotFoundErr error
   607  	pkgNotFoundLongestPrefix := ""
   608  	for _, mainModule := range MainModules.Versions() {
   609  		modRoot := MainModules.ModRoot(mainModule)
   610  		if modRoot != "" && str.HasFilePathPrefix(absDir, modRoot) && !strings.Contains(absDir[len(modRoot):], "@") {
   611  			suffix := filepath.ToSlash(str.TrimFilePathPrefix(absDir, modRoot))
   612  			if pkg, found := strings.CutPrefix(suffix, "vendor/"); found {
   613  				if cfg.BuildMod != "vendor" {
   614  					return "", fmt.Errorf("without -mod=vendor, directory %s has no package path", absDir)
   615  				}
   616  
   617  				readVendorList(VendorDir())
   618  				if _, ok := vendorPkgModule[pkg]; !ok {
   619  					return "", fmt.Errorf("directory %s is not a package listed in vendor/modules.txt", absDir)
   620  				}
   621  				return pkg, nil
   622  			}
   623  
   624  			mainModulePrefix := MainModules.PathPrefix(mainModule)
   625  			if mainModulePrefix == "" {
   626  				pkg := suffix
   627  				if pkg == "builtin" {
   628  					// "builtin" is a pseudo-package with a real source file.
   629  					// It's not included in "std", so it shouldn't resolve from "."
   630  					// within module "std" either.
   631  					return "", errPkgIsBuiltin
   632  				}
   633  				return pkg, nil
   634  			}
   635  
   636  			pkg := pathpkg.Join(mainModulePrefix, suffix)
   637  			if _, ok, err := dirInModule(pkg, mainModulePrefix, modRoot, true); err != nil {
   638  				return "", err
   639  			} else if !ok {
   640  				// This main module could contain the directory but doesn't. Other main
   641  				// modules might contain the directory, so wait till we finish the loop
   642  				// to see if another main module contains directory. But if not,
   643  				// return an error.
   644  				if len(mainModulePrefix) > len(pkgNotFoundLongestPrefix) {
   645  					pkgNotFoundLongestPrefix = mainModulePrefix
   646  					pkgNotFoundErr = &PackageNotInModuleError{MainModules: []module.Version{mainModule}, Pattern: pkg}
   647  				}
   648  				continue
   649  			}
   650  			return pkg, nil
   651  		}
   652  	}
   653  	if pkgNotFoundErr != nil {
   654  		return "", pkgNotFoundErr
   655  	}
   656  
   657  	if sub := search.InDir(absDir, cfg.GOROOTsrc); sub != "" && sub != "." && !strings.Contains(sub, "@") {
   658  		pkg := filepath.ToSlash(sub)
   659  		if pkg == "builtin" {
   660  			return "", errPkgIsBuiltin
   661  		}
   662  		return pkg, nil
   663  	}
   664  
   665  	pkg := pathInModuleCache(ctx, absDir, rs)
   666  	if pkg == "" {
   667  		dirstr := fmt.Sprintf("directory %s", base.ShortPath(absDir))
   668  		if dirstr == "directory ." {
   669  			dirstr = "current directory"
   670  		}
   671  		if inWorkspaceMode() {
   672  			if mr := findModuleRoot(absDir); mr != "" {
   673  				return "", fmt.Errorf("%s is contained in a module that is not one of the workspace modules listed in go.work. You can add the module to the workspace using:\n\tgo work use %s", dirstr, base.ShortPath(mr))
   674  			}
   675  			return "", fmt.Errorf("%s outside modules listed in go.work or their selected dependencies", dirstr)
   676  		}
   677  		return "", fmt.Errorf("%s outside main module or its selected dependencies", dirstr)
   678  	}
   679  	return pkg, nil
   680  }
   681  
   682  var (
   683  	errDirectoryNotFound = errors.New("directory not found")
   684  	errPkgIsGorootSrc    = errors.New("GOROOT/src is not an importable package")
   685  	errPkgIsBuiltin      = errors.New(`"builtin" is a pseudo-package, not an importable package`)
   686  )
   687  
   688  // pathInModuleCache returns the import path of the directory dir,
   689  // if dir is in the module cache copy of a module in our build list.
   690  func pathInModuleCache(ctx context.Context, dir string, rs *Requirements) string {
   691  	tryMod := func(m module.Version) (string, bool) {
   692  		if gover.IsToolchain(m.Path) {
   693  			return "", false
   694  		}
   695  		var root string
   696  		var err error
   697  		if repl := Replacement(m); repl.Path != "" && repl.Version == "" {
   698  			root = repl.Path
   699  			if !filepath.IsAbs(root) {
   700  				root = filepath.Join(replaceRelativeTo(), root)
   701  			}
   702  		} else if repl.Path != "" {
   703  			root, err = modfetch.DownloadDir(ctx, repl)
   704  		} else {
   705  			root, err = modfetch.DownloadDir(ctx, m)
   706  		}
   707  		if err != nil {
   708  			return "", false
   709  		}
   710  
   711  		sub := search.InDir(dir, root)
   712  		if sub == "" {
   713  			return "", false
   714  		}
   715  		sub = filepath.ToSlash(sub)
   716  		if strings.Contains(sub, "/vendor/") || strings.HasPrefix(sub, "vendor/") || strings.Contains(sub, "@") {
   717  			return "", false
   718  		}
   719  
   720  		return path.Join(m.Path, filepath.ToSlash(sub)), true
   721  	}
   722  
   723  	if rs.pruning == pruned {
   724  		for _, m := range rs.rootModules {
   725  			if v, _ := rs.rootSelected(m.Path); v != m.Version {
   726  				continue // m is a root, but we have a higher root for the same path.
   727  			}
   728  			if importPath, ok := tryMod(m); ok {
   729  				// checkMultiplePaths ensures that a module can be used for at most one
   730  				// requirement, so this must be it.
   731  				return importPath
   732  			}
   733  		}
   734  	}
   735  
   736  	// None of the roots contained dir, or the graph is unpruned (so we don't want
   737  	// to distinguish between roots and transitive dependencies). Either way,
   738  	// check the full graph to see if the directory is a non-root dependency.
   739  	//
   740  	// If the roots are not consistent with the full module graph, the selected
   741  	// versions of root modules may differ from what we already checked above.
   742  	// Re-check those paths too.
   743  
   744  	mg, _ := rs.Graph(ctx)
   745  	var importPath string
   746  	for _, m := range mg.BuildList() {
   747  		var found bool
   748  		importPath, found = tryMod(m)
   749  		if found {
   750  			break
   751  		}
   752  	}
   753  	return importPath
   754  }
   755  
   756  // ImportFromFiles adds modules to the build list as needed
   757  // to satisfy the imports in the named Go source files.
   758  //
   759  // Errors in missing dependencies are silenced.
   760  //
   761  // TODO(bcmills): Silencing errors seems off. Take a closer look at this and
   762  // figure out what the error-reporting actually ought to be.
   763  func ImportFromFiles(ctx context.Context, gofiles []string) {
   764  	rs := LoadModFile(ctx)
   765  
   766  	tags := imports.Tags()
   767  	imports, testImports, err := imports.ScanFiles(gofiles, tags)
   768  	if err != nil {
   769  		base.Fatal(err)
   770  	}
   771  
   772  	loaded = loadFromRoots(ctx, loaderParams{
   773  		PackageOpts: PackageOpts{
   774  			Tags:                  tags,
   775  			ResolveMissingImports: true,
   776  			SilencePackageErrors:  true,
   777  		},
   778  		requirements: rs,
   779  		listRoots: func(*Requirements) (roots []string) {
   780  			roots = append(roots, imports...)
   781  			roots = append(roots, testImports...)
   782  			return roots
   783  		},
   784  	})
   785  	requirements = loaded.requirements
   786  
   787  	if !ExplicitWriteGoMod {
   788  		if err := commitRequirements(ctx, WriteOpts{}); err != nil {
   789  			base.Fatal(err)
   790  		}
   791  	}
   792  }
   793  
   794  // DirImportPath returns the effective import path for dir,
   795  // provided it is within a main module, or else returns ".".
   796  func (mms *MainModuleSet) DirImportPath(ctx context.Context, dir string) (path string, m module.Version) {
   797  	if !HasModRoot() {
   798  		return ".", module.Version{}
   799  	}
   800  	LoadModFile(ctx) // Sets targetPrefix.
   801  
   802  	if !filepath.IsAbs(dir) {
   803  		dir = filepath.Join(base.Cwd(), dir)
   804  	} else {
   805  		dir = filepath.Clean(dir)
   806  	}
   807  
   808  	var longestPrefix string
   809  	var longestPrefixPath string
   810  	var longestPrefixVersion module.Version
   811  	for _, v := range mms.Versions() {
   812  		modRoot := mms.ModRoot(v)
   813  		if dir == modRoot {
   814  			return mms.PathPrefix(v), v
   815  		}
   816  		if str.HasFilePathPrefix(dir, modRoot) {
   817  			pathPrefix := MainModules.PathPrefix(v)
   818  			if pathPrefix > longestPrefix {
   819  				longestPrefix = pathPrefix
   820  				longestPrefixVersion = v
   821  				suffix := filepath.ToSlash(str.TrimFilePathPrefix(dir, modRoot))
   822  				if strings.HasPrefix(suffix, "vendor/") {
   823  					longestPrefixPath = suffix[len("vendor/"):]
   824  					continue
   825  				}
   826  				longestPrefixPath = pathpkg.Join(mms.PathPrefix(v), suffix)
   827  			}
   828  		}
   829  	}
   830  	if len(longestPrefix) > 0 {
   831  		return longestPrefixPath, longestPrefixVersion
   832  	}
   833  
   834  	return ".", module.Version{}
   835  }
   836  
   837  // PackageModule returns the module providing the package named by the import path.
   838  func PackageModule(path string) module.Version {
   839  	pkg, ok := loaded.pkgCache.Get(path)
   840  	if !ok {
   841  		return module.Version{}
   842  	}
   843  	return pkg.mod
   844  }
   845  
   846  // Lookup returns the source directory, import path, and any loading error for
   847  // the package at path as imported from the package in parentDir.
   848  // Lookup requires that one of the Load functions in this package has already
   849  // been called.
   850  func Lookup(parentPath string, parentIsStd bool, path string) (dir, realPath string, err error) {
   851  	if path == "" {
   852  		panic("Lookup called with empty package path")
   853  	}
   854  
   855  	if parentIsStd {
   856  		path = loaded.stdVendor(parentPath, path)
   857  	}
   858  	pkg, ok := loaded.pkgCache.Get(path)
   859  	if !ok {
   860  		// The loader should have found all the relevant paths.
   861  		// There are a few exceptions, though:
   862  		//	- during go list without -test, the p.Resolve calls to process p.TestImports and p.XTestImports
   863  		//	  end up here to canonicalize the import paths.
   864  		//	- during any load, non-loaded packages like "unsafe" end up here.
   865  		//	- during any load, build-injected dependencies like "runtime/cgo" end up here.
   866  		//	- because we ignore appengine/* in the module loader,
   867  		//	  the dependencies of any actual appengine/* library end up here.
   868  		dir := findStandardImportPath(path)
   869  		if dir != "" {
   870  			return dir, path, nil
   871  		}
   872  		return "", "", errMissing
   873  	}
   874  	return pkg.dir, pkg.path, pkg.err
   875  }
   876  
   877  // A loader manages the process of loading information about
   878  // the required packages for a particular build,
   879  // checking that the packages are available in the module set,
   880  // and updating the module set if needed.
   881  type loader struct {
   882  	loaderParams
   883  
   884  	// allClosesOverTests indicates whether the "all" pattern includes
   885  	// dependencies of tests outside the main module (as in Go 1.11–1.15).
   886  	// (Otherwise — as in Go 1.16+ — the "all" pattern includes only the packages
   887  	// transitively *imported by* the packages and tests in the main module.)
   888  	allClosesOverTests bool
   889  
   890  	// skipImportModFiles indicates whether we may skip loading go.mod files
   891  	// for imported packages (as in 'go mod tidy' in Go 1.17–1.20).
   892  	skipImportModFiles bool
   893  
   894  	work *par.Queue
   895  
   896  	// reset on each iteration
   897  	roots    []*loadPkg
   898  	pkgCache *par.Cache[string, *loadPkg]
   899  	pkgs     []*loadPkg // transitive closure of loaded packages and tests; populated in buildStacks
   900  }
   901  
   902  // loaderParams configure the packages loaded by, and the properties reported
   903  // by, a loader instance.
   904  type loaderParams struct {
   905  	PackageOpts
   906  	requirements *Requirements
   907  
   908  	allPatternIsRoot bool // Is the "all" pattern an additional root?
   909  
   910  	listRoots func(rs *Requirements) []string
   911  }
   912  
   913  func (ld *loader) reset() {
   914  	select {
   915  	case <-ld.work.Idle():
   916  	default:
   917  		panic("loader.reset when not idle")
   918  	}
   919  
   920  	ld.roots = nil
   921  	ld.pkgCache = new(par.Cache[string, *loadPkg])
   922  	ld.pkgs = nil
   923  }
   924  
   925  // error reports an error via either os.Stderr or base.Error,
   926  // according to whether ld.AllowErrors is set.
   927  func (ld *loader) error(err error) {
   928  	if ld.AllowErrors {
   929  		fmt.Fprintf(os.Stderr, "go: %v\n", err)
   930  	} else if ld.Switcher != nil {
   931  		ld.Switcher.Error(err)
   932  	} else {
   933  		base.Error(err)
   934  	}
   935  }
   936  
   937  // switchIfErrors switches toolchains if a switch is needed.
   938  func (ld *loader) switchIfErrors(ctx context.Context) {
   939  	if ld.Switcher != nil {
   940  		ld.Switcher.Switch(ctx)
   941  	}
   942  }
   943  
   944  // exitIfErrors switches toolchains if a switch is needed
   945  // or else exits if any errors have been reported.
   946  func (ld *loader) exitIfErrors(ctx context.Context) {
   947  	ld.switchIfErrors(ctx)
   948  	base.ExitIfErrors()
   949  }
   950  
   951  // goVersion reports the Go version that should be used for the loader's
   952  // requirements: ld.TidyGoVersion if set, or ld.requirements.GoVersion()
   953  // otherwise.
   954  func (ld *loader) goVersion() string {
   955  	if ld.TidyGoVersion != "" {
   956  		return ld.TidyGoVersion
   957  	}
   958  	return ld.requirements.GoVersion()
   959  }
   960  
   961  // A loadPkg records information about a single loaded package.
   962  type loadPkg struct {
   963  	// Populated at construction time:
   964  	path   string // import path
   965  	testOf *loadPkg
   966  
   967  	// Populated at construction time and updated by (*loader).applyPkgFlags:
   968  	flags atomicLoadPkgFlags
   969  
   970  	// Populated by (*loader).load:
   971  	mod         module.Version // module providing package
   972  	dir         string         // directory containing source code
   973  	err         error          // error loading package
   974  	imports     []*loadPkg     // packages imported by this one
   975  	testImports []string       // test-only imports, saved for use by pkg.test.
   976  	inStd       bool
   977  	altMods     []module.Version // modules that could have contained the package but did not
   978  
   979  	// Populated by (*loader).pkgTest:
   980  	testOnce sync.Once
   981  	test     *loadPkg
   982  
   983  	// Populated by postprocessing in (*loader).buildStacks:
   984  	stack *loadPkg // package importing this one in minimal import stack for this pkg
   985  }
   986  
   987  // loadPkgFlags is a set of flags tracking metadata about a package.
   988  type loadPkgFlags int8
   989  
   990  const (
   991  	// pkgInAll indicates that the package is in the "all" package pattern,
   992  	// regardless of whether we are loading the "all" package pattern.
   993  	//
   994  	// When the pkgInAll flag and pkgImportsLoaded flags are both set, the caller
   995  	// who set the last of those flags must propagate the pkgInAll marking to all
   996  	// of the imports of the marked package.
   997  	//
   998  	// A test is marked with pkgInAll if that test would promote the packages it
   999  	// imports to be in "all" (such as when the test is itself within the main
  1000  	// module, or when ld.allClosesOverTests is true).
  1001  	pkgInAll loadPkgFlags = 1 << iota
  1002  
  1003  	// pkgIsRoot indicates that the package matches one of the root package
  1004  	// patterns requested by the caller.
  1005  	//
  1006  	// If LoadTests is set, then when pkgIsRoot and pkgImportsLoaded are both set,
  1007  	// the caller who set the last of those flags must populate a test for the
  1008  	// package (in the pkg.test field).
  1009  	//
  1010  	// If the "all" pattern is included as a root, then non-test packages in "all"
  1011  	// are also roots (and must be marked pkgIsRoot).
  1012  	pkgIsRoot
  1013  
  1014  	// pkgFromRoot indicates that the package is in the transitive closure of
  1015  	// imports starting at the roots. (Note that every package marked as pkgIsRoot
  1016  	// is also trivially marked pkgFromRoot.)
  1017  	pkgFromRoot
  1018  
  1019  	// pkgImportsLoaded indicates that the imports and testImports fields of a
  1020  	// loadPkg have been populated.
  1021  	pkgImportsLoaded
  1022  )
  1023  
  1024  // has reports whether all of the flags in cond are set in f.
  1025  func (f loadPkgFlags) has(cond loadPkgFlags) bool {
  1026  	return f&cond == cond
  1027  }
  1028  
  1029  // An atomicLoadPkgFlags stores a loadPkgFlags for which individual flags can be
  1030  // added atomically.
  1031  type atomicLoadPkgFlags struct {
  1032  	bits atomic.Int32
  1033  }
  1034  
  1035  // update sets the given flags in af (in addition to any flags already set).
  1036  //
  1037  // update returns the previous flag state so that the caller may determine which
  1038  // flags were newly-set.
  1039  func (af *atomicLoadPkgFlags) update(flags loadPkgFlags) (old loadPkgFlags) {
  1040  	for {
  1041  		old := af.bits.Load()
  1042  		new := old | int32(flags)
  1043  		if new == old || af.bits.CompareAndSwap(old, new) {
  1044  			return loadPkgFlags(old)
  1045  		}
  1046  	}
  1047  }
  1048  
  1049  // has reports whether all of the flags in cond are set in af.
  1050  func (af *atomicLoadPkgFlags) has(cond loadPkgFlags) bool {
  1051  	return loadPkgFlags(af.bits.Load())&cond == cond
  1052  }
  1053  
  1054  // isTest reports whether pkg is a test of another package.
  1055  func (pkg *loadPkg) isTest() bool {
  1056  	return pkg.testOf != nil
  1057  }
  1058  
  1059  // fromExternalModule reports whether pkg was loaded from a module other than
  1060  // the main module.
  1061  func (pkg *loadPkg) fromExternalModule() bool {
  1062  	if pkg.mod.Path == "" {
  1063  		return false // loaded from the standard library, not a module
  1064  	}
  1065  	return !MainModules.Contains(pkg.mod.Path)
  1066  }
  1067  
  1068  var errMissing = errors.New("cannot find package")
  1069  
  1070  // loadFromRoots attempts to load the build graph needed to process a set of
  1071  // root packages and their dependencies.
  1072  //
  1073  // The set of root packages is returned by the params.listRoots function, and
  1074  // expanded to the full set of packages by tracing imports (and possibly tests)
  1075  // as needed.
  1076  func loadFromRoots(ctx context.Context, params loaderParams) *loader {
  1077  	ld := &loader{
  1078  		loaderParams: params,
  1079  		work:         par.NewQueue(runtime.GOMAXPROCS(0)),
  1080  	}
  1081  
  1082  	if ld.requirements.pruning == unpruned {
  1083  		// If the module graph does not support pruning, we assume that we will need
  1084  		// the full module graph in order to load package dependencies.
  1085  		//
  1086  		// This might not be strictly necessary, but it matches the historical
  1087  		// behavior of the 'go' command and keeps the go.mod file more consistent in
  1088  		// case of erroneous hand-edits — which are less likely to be detected by
  1089  		// spot-checks in modules that do not maintain the expanded go.mod
  1090  		// requirements needed for graph pruning.
  1091  		var err error
  1092  		ld.requirements, _, err = expandGraph(ctx, ld.requirements)
  1093  		if err != nil {
  1094  			ld.error(err)
  1095  		}
  1096  	}
  1097  	ld.exitIfErrors(ctx)
  1098  
  1099  	updateGoVersion := func() {
  1100  		goVersion := ld.goVersion()
  1101  
  1102  		if ld.requirements.pruning != workspace {
  1103  			var err error
  1104  			ld.requirements, err = convertPruning(ctx, ld.requirements, pruningForGoVersion(goVersion))
  1105  			if err != nil {
  1106  				ld.error(err)
  1107  				ld.exitIfErrors(ctx)
  1108  			}
  1109  		}
  1110  
  1111  		// If the module's Go version omits go.sum entries for go.mod files for test
  1112  		// dependencies of external packages, avoid loading those files in the first
  1113  		// place.
  1114  		ld.skipImportModFiles = ld.Tidy && gover.Compare(goVersion, gover.TidyGoModSumVersion) < 0
  1115  
  1116  		// If the module's go version explicitly predates the change in "all" for
  1117  		// graph pruning, continue to use the older interpretation.
  1118  		ld.allClosesOverTests = gover.Compare(goVersion, gover.NarrowAllVersion) < 0 && !ld.UseVendorAll
  1119  	}
  1120  
  1121  	for {
  1122  		ld.reset()
  1123  		updateGoVersion()
  1124  
  1125  		// Load the root packages and their imports.
  1126  		// Note: the returned roots can change on each iteration,
  1127  		// since the expansion of package patterns depends on the
  1128  		// build list we're using.
  1129  		rootPkgs := ld.listRoots(ld.requirements)
  1130  
  1131  		if ld.requirements.pruning == pruned && cfg.BuildMod == "mod" {
  1132  			// Before we start loading transitive imports of packages, locate all of
  1133  			// the root packages and promote their containing modules to root modules
  1134  			// dependencies. If their go.mod files are tidy (the common case) and the
  1135  			// set of root packages does not change then we can select the correct
  1136  			// versions of all transitive imports on the first try and complete
  1137  			// loading in a single iteration.
  1138  			changedBuildList := ld.preloadRootModules(ctx, rootPkgs)
  1139  			if changedBuildList {
  1140  				// The build list has changed, so the set of root packages may have also
  1141  				// changed. Start over to pick up the changes. (Preloading roots is much
  1142  				// cheaper than loading the full import graph, so we would rather pay
  1143  				// for an extra iteration of preloading than potentially end up
  1144  				// discarding the result of a full iteration of loading.)
  1145  				continue
  1146  			}
  1147  		}
  1148  
  1149  		inRoots := map[*loadPkg]bool{}
  1150  		for _, path := range rootPkgs {
  1151  			root := ld.pkg(ctx, path, pkgIsRoot)
  1152  			if !inRoots[root] {
  1153  				ld.roots = append(ld.roots, root)
  1154  				inRoots[root] = true
  1155  			}
  1156  		}
  1157  
  1158  		// ld.pkg adds imported packages to the work queue and calls applyPkgFlags,
  1159  		// which adds tests (and test dependencies) as needed.
  1160  		//
  1161  		// When all of the work in the queue has completed, we'll know that the
  1162  		// transitive closure of dependencies has been loaded.
  1163  		<-ld.work.Idle()
  1164  
  1165  		ld.buildStacks()
  1166  
  1167  		changed, err := ld.updateRequirements(ctx)
  1168  		if err != nil {
  1169  			ld.error(err)
  1170  			break
  1171  		}
  1172  		if changed {
  1173  			// Don't resolve missing imports until the module graph has stabilized.
  1174  			// If the roots are still changing, they may turn out to specify a
  1175  			// requirement on the missing package(s), and we would rather use a
  1176  			// version specified by a new root than add a new dependency on an
  1177  			// unrelated version.
  1178  			continue
  1179  		}
  1180  
  1181  		if !ld.ResolveMissingImports || (!HasModRoot() && !allowMissingModuleImports) {
  1182  			// We've loaded as much as we can without resolving missing imports.
  1183  			break
  1184  		}
  1185  
  1186  		modAddedBy, err := ld.resolveMissingImports(ctx)
  1187  		if err != nil {
  1188  			ld.error(err)
  1189  			break
  1190  		}
  1191  		if len(modAddedBy) == 0 {
  1192  			// The roots are stable, and we've resolved all of the missing packages
  1193  			// that we can.
  1194  			break
  1195  		}
  1196  
  1197  		toAdd := make([]module.Version, 0, len(modAddedBy))
  1198  		for m := range modAddedBy {
  1199  			toAdd = append(toAdd, m)
  1200  		}
  1201  		gover.ModSort(toAdd) // to make errors deterministic
  1202  
  1203  		// We ran updateRequirements before resolving missing imports and it didn't
  1204  		// make any changes, so we know that the requirement graph is already
  1205  		// consistent with ld.pkgs: we don't need to pass ld.pkgs to updateRoots
  1206  		// again. (That would waste time looking for changes that we have already
  1207  		// applied.)
  1208  		var noPkgs []*loadPkg
  1209  		// We also know that we're going to call updateRequirements again next
  1210  		// iteration so we don't need to also update it here. (That would waste time
  1211  		// computing a "direct" map that we'll have to recompute later anyway.)
  1212  		direct := ld.requirements.direct
  1213  		rs, err := updateRoots(ctx, direct, ld.requirements, noPkgs, toAdd, ld.AssumeRootsImported)
  1214  		if err != nil {
  1215  			// If an error was found in a newly added module, report the package
  1216  			// import stack instead of the module requirement stack. Packages
  1217  			// are more descriptive.
  1218  			if err, ok := err.(*mvs.BuildListError); ok {
  1219  				if pkg := modAddedBy[err.Module()]; pkg != nil {
  1220  					ld.error(fmt.Errorf("%s: %w", pkg.stackText(), err.Err))
  1221  					break
  1222  				}
  1223  			}
  1224  			ld.error(err)
  1225  			break
  1226  		}
  1227  		if slices.Equal(rs.rootModules, ld.requirements.rootModules) {
  1228  			// Something is deeply wrong. resolveMissingImports gave us a non-empty
  1229  			// set of modules to add to the graph, but adding those modules had no
  1230  			// effect — either they were already in the graph, or updateRoots did not
  1231  			// add them as requested.
  1232  			panic(fmt.Sprintf("internal error: adding %v to module graph had no effect on root requirements (%v)", toAdd, rs.rootModules))
  1233  		}
  1234  		ld.requirements = rs
  1235  	}
  1236  	ld.exitIfErrors(ctx)
  1237  
  1238  	// Tidy the build list, if applicable, before we report errors.
  1239  	// (The process of tidying may remove errors from irrelevant dependencies.)
  1240  	if ld.Tidy {
  1241  		rs, err := tidyRoots(ctx, ld.requirements, ld.pkgs)
  1242  		if err != nil {
  1243  			ld.error(err)
  1244  		} else {
  1245  			if ld.TidyGoVersion != "" {
  1246  				// Attempt to switch to the requested Go version. We have been using its
  1247  				// pruning and semantics all along, but there may have been — and may
  1248  				// still be — requirements on higher versions in the graph.
  1249  				tidy := overrideRoots(ctx, rs, []module.Version{{Path: "go", Version: ld.TidyGoVersion}})
  1250  				mg, err := tidy.Graph(ctx)
  1251  				if err != nil {
  1252  					ld.error(err)
  1253  				}
  1254  				if v := mg.Selected("go"); v == ld.TidyGoVersion {
  1255  					rs = tidy
  1256  				} else {
  1257  					conflict := Conflict{
  1258  						Path: mg.g.FindPath(func(m module.Version) bool {
  1259  							return m.Path == "go" && m.Version == v
  1260  						})[1:],
  1261  						Constraint: module.Version{Path: "go", Version: ld.TidyGoVersion},
  1262  					}
  1263  					msg := conflict.Summary()
  1264  					if cfg.BuildV {
  1265  						msg = conflict.String()
  1266  					}
  1267  					ld.error(errors.New(msg))
  1268  				}
  1269  			}
  1270  
  1271  			if ld.requirements.pruning == pruned {
  1272  				// We continuously add tidy roots to ld.requirements during loading, so
  1273  				// at this point the tidy roots (other than possibly the "go" version
  1274  				// edited above) should be a subset of the roots of ld.requirements,
  1275  				// ensuring that no new dependencies are brought inside the
  1276  				// graph-pruning horizon.
  1277  				// If that is not the case, there is a bug in the loading loop above.
  1278  				for _, m := range rs.rootModules {
  1279  					if m.Path == "go" && ld.TidyGoVersion != "" {
  1280  						continue
  1281  					}
  1282  					if v, ok := ld.requirements.rootSelected(m.Path); !ok || v != m.Version {
  1283  						ld.error(fmt.Errorf("internal error: a requirement on %v is needed but was not added during package loading (selected %s)", m, v))
  1284  					}
  1285  				}
  1286  			}
  1287  
  1288  			ld.requirements = rs
  1289  		}
  1290  
  1291  		ld.exitIfErrors(ctx)
  1292  	}
  1293  
  1294  	// Report errors, if any.
  1295  	for _, pkg := range ld.pkgs {
  1296  		if pkg.err == nil {
  1297  			continue
  1298  		}
  1299  
  1300  		// Add importer information to checksum errors.
  1301  		if sumErr := (*ImportMissingSumError)(nil); errors.As(pkg.err, &sumErr) {
  1302  			if importer := pkg.stack; importer != nil {
  1303  				sumErr.importer = importer.path
  1304  				sumErr.importerVersion = importer.mod.Version
  1305  				sumErr.importerIsTest = importer.testOf != nil
  1306  			}
  1307  		}
  1308  
  1309  		if stdErr := (*ImportMissingError)(nil); errors.As(pkg.err, &stdErr) && stdErr.isStd {
  1310  			// Add importer go version information to import errors of standard
  1311  			// library packages arising from newer releases.
  1312  			if importer := pkg.stack; importer != nil {
  1313  				if v, ok := rawGoVersion.Load(importer.mod); ok && gover.Compare(gover.Local(), v.(string)) < 0 {
  1314  					stdErr.importerGoVersion = v.(string)
  1315  				}
  1316  			}
  1317  			if ld.SilenceMissingStdImports {
  1318  				continue
  1319  			}
  1320  		}
  1321  		if ld.SilencePackageErrors {
  1322  			continue
  1323  		}
  1324  		if ld.SilenceNoGoErrors && errors.Is(pkg.err, imports.ErrNoGo) {
  1325  			continue
  1326  		}
  1327  
  1328  		ld.error(fmt.Errorf("%s: %w", pkg.stackText(), pkg.err))
  1329  	}
  1330  
  1331  	ld.checkMultiplePaths()
  1332  	return ld
  1333  }
  1334  
  1335  // updateRequirements ensures that ld.requirements is consistent with the
  1336  // information gained from ld.pkgs.
  1337  //
  1338  // In particular:
  1339  //
  1340  //   - Modules that provide packages directly imported from the main module are
  1341  //     marked as direct, and are promoted to explicit roots. If a needed root
  1342  //     cannot be promoted due to -mod=readonly or -mod=vendor, the importing
  1343  //     package is marked with an error.
  1344  //
  1345  //   - If ld scanned the "all" pattern independent of build constraints, it is
  1346  //     guaranteed to have seen every direct import. Module dependencies that did
  1347  //     not provide any directly-imported package are then marked as indirect.
  1348  //
  1349  //   - Root dependencies are updated to their selected versions.
  1350  //
  1351  // The "changed" return value reports whether the update changed the selected
  1352  // version of any module that either provided a loaded package or may now
  1353  // provide a package that was previously unresolved.
  1354  func (ld *loader) updateRequirements(ctx context.Context) (changed bool, err error) {
  1355  	rs := ld.requirements
  1356  
  1357  	// direct contains the set of modules believed to provide packages directly
  1358  	// imported by the main module.
  1359  	var direct map[string]bool
  1360  
  1361  	// If we didn't scan all of the imports from the main module, or didn't use
  1362  	// imports.AnyTags, then we didn't necessarily load every package that
  1363  	// contributes “direct” imports — so we can't safely mark existing direct
  1364  	// dependencies in ld.requirements as indirect-only. Propagate them as direct.
  1365  	loadedDirect := ld.allPatternIsRoot && maps.Equal(ld.Tags, imports.AnyTags())
  1366  	if loadedDirect {
  1367  		direct = make(map[string]bool)
  1368  	} else {
  1369  		// TODO(bcmills): It seems like a shame to allocate and copy a map here when
  1370  		// it will only rarely actually vary from rs.direct. Measure this cost and
  1371  		// maybe avoid the copy.
  1372  		direct = make(map[string]bool, len(rs.direct))
  1373  		for mPath := range rs.direct {
  1374  			direct[mPath] = true
  1375  		}
  1376  	}
  1377  
  1378  	var maxTooNew *gover.TooNewError
  1379  	for _, pkg := range ld.pkgs {
  1380  		if pkg.err != nil {
  1381  			if tooNew := (*gover.TooNewError)(nil); errors.As(pkg.err, &tooNew) {
  1382  				if maxTooNew == nil || gover.Compare(tooNew.GoVersion, maxTooNew.GoVersion) > 0 {
  1383  					maxTooNew = tooNew
  1384  				}
  1385  			}
  1386  		}
  1387  		if pkg.mod.Version != "" || !MainModules.Contains(pkg.mod.Path) {
  1388  			continue
  1389  		}
  1390  
  1391  		for _, dep := range pkg.imports {
  1392  			if !dep.fromExternalModule() {
  1393  				continue
  1394  			}
  1395  
  1396  			if inWorkspaceMode() {
  1397  				// In workspace mode / workspace pruning mode, the roots are the main modules
  1398  				// rather than the main module's direct dependencies. The check below on the selected
  1399  				// roots does not apply.
  1400  				if cfg.BuildMod == "vendor" {
  1401  					// In workspace vendor mode, we don't need to load the requirements of the workspace
  1402  					// modules' dependencies so the check below doesn't work. But that's okay, because
  1403  					// checking whether modules are required directly for the purposes of pruning is
  1404  					// less important in vendor mode: if we were able to load the package, we have
  1405  					// everything we need  to build the package, and dependencies' tests are pruned out
  1406  					// of the vendor directory anyway.
  1407  					continue
  1408  				}
  1409  				if mg, err := rs.Graph(ctx); err != nil {
  1410  					return false, err
  1411  				} else if _, ok := mg.RequiredBy(dep.mod); !ok {
  1412  					// dep.mod is not an explicit dependency, but needs to be.
  1413  					// See comment on error returned below.
  1414  					pkg.err = &DirectImportFromImplicitDependencyError{
  1415  						ImporterPath: pkg.path,
  1416  						ImportedPath: dep.path,
  1417  						Module:       dep.mod,
  1418  					}
  1419  				}
  1420  			} else if pkg.err == nil && cfg.BuildMod != "mod" {
  1421  				if v, ok := rs.rootSelected(dep.mod.Path); !ok || v != dep.mod.Version {
  1422  					// dep.mod is not an explicit dependency, but needs to be.
  1423  					// Because we are not in "mod" mode, we will not be able to update it.
  1424  					// Instead, mark the importing package with an error.
  1425  					//
  1426  					// TODO(#41688): The resulting error message fails to include the file
  1427  					// position of the import statement (because that information is not
  1428  					// tracked by the module loader). Figure out how to plumb the import
  1429  					// position through.
  1430  					pkg.err = &DirectImportFromImplicitDependencyError{
  1431  						ImporterPath: pkg.path,
  1432  						ImportedPath: dep.path,
  1433  						Module:       dep.mod,
  1434  					}
  1435  					// cfg.BuildMod does not allow us to change dep.mod to be a direct
  1436  					// dependency, so don't mark it as such.
  1437  					continue
  1438  				}
  1439  			}
  1440  
  1441  			// dep is a package directly imported by a package or test in the main
  1442  			// module and loaded from some other module (not the standard library).
  1443  			// Mark its module as a direct dependency.
  1444  			direct[dep.mod.Path] = true
  1445  		}
  1446  	}
  1447  	if maxTooNew != nil {
  1448  		return false, maxTooNew
  1449  	}
  1450  
  1451  	var addRoots []module.Version
  1452  	if ld.Tidy {
  1453  		// When we are tidying a module with a pruned dependency graph, we may need
  1454  		// to add roots to preserve the versions of indirect, test-only dependencies
  1455  		// that are upgraded above or otherwise missing from the go.mod files of
  1456  		// direct dependencies. (For example, the direct dependency might be a very
  1457  		// stable codebase that predates modules and thus lacks a go.mod file, or
  1458  		// the author of the direct dependency may have forgotten to commit a change
  1459  		// to the go.mod file, or may have made an erroneous hand-edit that causes
  1460  		// it to be untidy.)
  1461  		//
  1462  		// Promoting an indirect dependency to a root adds the next layer of its
  1463  		// dependencies to the module graph, which may increase the selected
  1464  		// versions of other modules from which we have already loaded packages.
  1465  		// So after we promote an indirect dependency to a root, we need to reload
  1466  		// packages, which means another iteration of loading.
  1467  		//
  1468  		// As an extra wrinkle, the upgrades due to promoting a root can cause
  1469  		// previously-resolved packages to become unresolved. For example, the
  1470  		// module providing an unstable package might be upgraded to a version
  1471  		// that no longer contains that package. If we then resolve the missing
  1472  		// package, we might add yet another root that upgrades away some other
  1473  		// dependency. (The tests in mod_tidy_convergence*.txt illustrate some
  1474  		// particularly worrisome cases.)
  1475  		//
  1476  		// To ensure that this process of promoting, adding, and upgrading roots
  1477  		// eventually terminates, during iteration we only ever add modules to the
  1478  		// root set — we only remove irrelevant roots at the very end of
  1479  		// iteration, after we have already added every root that we plan to need
  1480  		// in the (eventual) tidy root set.
  1481  		//
  1482  		// Since we do not remove any roots during iteration, even if they no
  1483  		// longer provide any imported packages, the selected versions of the
  1484  		// roots can only increase and the set of roots can only expand. The set
  1485  		// of extant root paths is finite and the set of versions of each path is
  1486  		// finite, so the iteration *must* reach a stable fixed-point.
  1487  		tidy, err := tidyRoots(ctx, rs, ld.pkgs)
  1488  		if err != nil {
  1489  			return false, err
  1490  		}
  1491  		addRoots = tidy.rootModules
  1492  	}
  1493  
  1494  	rs, err = updateRoots(ctx, direct, rs, ld.pkgs, addRoots, ld.AssumeRootsImported)
  1495  	if err != nil {
  1496  		// We don't actually know what even the root requirements are supposed to be,
  1497  		// so we can't proceed with loading. Return the error to the caller
  1498  		return false, err
  1499  	}
  1500  
  1501  	if rs.GoVersion() != ld.requirements.GoVersion() {
  1502  		// A change in the selected Go version may or may not affect the set of
  1503  		// loaded packages, but in some cases it can change the meaning of the "all"
  1504  		// pattern, the level of pruning in the module graph, and even the set of
  1505  		// packages present in the standard library. If it has changed, it's best to
  1506  		// reload packages once more to be sure everything is stable.
  1507  		changed = true
  1508  	} else if rs != ld.requirements && !slices.Equal(rs.rootModules, ld.requirements.rootModules) {
  1509  		// The roots of the module graph have changed in some way (not just the
  1510  		// "direct" markings). Check whether the changes affected any of the loaded
  1511  		// packages.
  1512  		mg, err := rs.Graph(ctx)
  1513  		if err != nil {
  1514  			return false, err
  1515  		}
  1516  		for _, pkg := range ld.pkgs {
  1517  			if pkg.fromExternalModule() && mg.Selected(pkg.mod.Path) != pkg.mod.Version {
  1518  				changed = true
  1519  				break
  1520  			}
  1521  			if pkg.err != nil {
  1522  				// Promoting a module to a root may resolve an import that was
  1523  				// previously missing (by pulling in a previously-prune dependency that
  1524  				// provides it) or ambiguous (by promoting exactly one of the
  1525  				// alternatives to a root and ignoring the second-level alternatives) or
  1526  				// otherwise errored out (by upgrading from a version that cannot be
  1527  				// fetched to one that can be).
  1528  				//
  1529  				// Instead of enumerating all of the possible errors, we'll just check
  1530  				// whether importFromModules returns nil for the package.
  1531  				// False-positives are ok: if we have a false-positive here, we'll do an
  1532  				// extra iteration of package loading this time, but we'll still
  1533  				// converge when the root set stops changing.
  1534  				//
  1535  				// In some sense, we can think of this as ‘upgraded the module providing
  1536  				// pkg.path from "none" to a version higher than "none"’.
  1537  				if _, _, _, _, err = importFromModules(ctx, pkg.path, rs, nil, ld.skipImportModFiles); err == nil {
  1538  					changed = true
  1539  					break
  1540  				}
  1541  			}
  1542  		}
  1543  	}
  1544  
  1545  	ld.requirements = rs
  1546  	return changed, nil
  1547  }
  1548  
  1549  // resolveMissingImports returns a set of modules that could be added as
  1550  // dependencies in order to resolve missing packages from pkgs.
  1551  //
  1552  // The newly-resolved packages are added to the addedModuleFor map, and
  1553  // resolveMissingImports returns a map from each new module version to
  1554  // the first missing package that module would resolve.
  1555  func (ld *loader) resolveMissingImports(ctx context.Context) (modAddedBy map[module.Version]*loadPkg, err error) {
  1556  	type pkgMod struct {
  1557  		pkg *loadPkg
  1558  		mod *module.Version
  1559  	}
  1560  	var pkgMods []pkgMod
  1561  	for _, pkg := range ld.pkgs {
  1562  		if pkg.err == nil {
  1563  			continue
  1564  		}
  1565  		if pkg.isTest() {
  1566  			// If we are missing a test, we are also missing its non-test version, and
  1567  			// we should only add the missing import once.
  1568  			continue
  1569  		}
  1570  		if !errors.As(pkg.err, new(*ImportMissingError)) {
  1571  			// Leave other errors for Import or load.Packages to report.
  1572  			continue
  1573  		}
  1574  
  1575  		pkg := pkg
  1576  		var mod module.Version
  1577  		ld.work.Add(func() {
  1578  			var err error
  1579  			mod, err = queryImport(ctx, pkg.path, ld.requirements)
  1580  			if err != nil {
  1581  				var ime *ImportMissingError
  1582  				if errors.As(err, &ime) {
  1583  					for curstack := pkg.stack; curstack != nil; curstack = curstack.stack {
  1584  						if MainModules.Contains(curstack.mod.Path) {
  1585  							ime.ImportingMainModule = curstack.mod
  1586  							break
  1587  						}
  1588  					}
  1589  				}
  1590  				// pkg.err was already non-nil, so we can reasonably attribute the error
  1591  				// for pkg to either the original error or the one returned by
  1592  				// queryImport. The existing error indicates only that we couldn't find
  1593  				// the package, whereas the query error also explains why we didn't fix
  1594  				// the problem — so we prefer the latter.
  1595  				pkg.err = err
  1596  			}
  1597  
  1598  			// err is nil, but we intentionally leave pkg.err non-nil and pkg.mod
  1599  			// unset: we still haven't satisfied other invariants of a
  1600  			// successfully-loaded package, such as scanning and loading the imports
  1601  			// of that package. If we succeed in resolving the new dependency graph,
  1602  			// the caller can reload pkg and update the error at that point.
  1603  			//
  1604  			// Even then, the package might not be loaded from the version we've
  1605  			// identified here. The module may be upgraded by some other dependency,
  1606  			// or by a transitive dependency of mod itself, or — less likely — the
  1607  			// package may be rejected by an AllowPackage hook or rendered ambiguous
  1608  			// by some other newly-added or newly-upgraded dependency.
  1609  		})
  1610  
  1611  		pkgMods = append(pkgMods, pkgMod{pkg: pkg, mod: &mod})
  1612  	}
  1613  	<-ld.work.Idle()
  1614  
  1615  	modAddedBy = map[module.Version]*loadPkg{}
  1616  
  1617  	var (
  1618  		maxTooNew    *gover.TooNewError
  1619  		maxTooNewPkg *loadPkg
  1620  	)
  1621  	for _, pm := range pkgMods {
  1622  		if tooNew := (*gover.TooNewError)(nil); errors.As(pm.pkg.err, &tooNew) {
  1623  			if maxTooNew == nil || gover.Compare(tooNew.GoVersion, maxTooNew.GoVersion) > 0 {
  1624  				maxTooNew = tooNew
  1625  				maxTooNewPkg = pm.pkg
  1626  			}
  1627  		}
  1628  	}
  1629  	if maxTooNew != nil {
  1630  		fmt.Fprintf(os.Stderr, "go: toolchain upgrade needed to resolve %s\n", maxTooNewPkg.path)
  1631  		return nil, maxTooNew
  1632  	}
  1633  
  1634  	for _, pm := range pkgMods {
  1635  		pkg, mod := pm.pkg, *pm.mod
  1636  		if mod.Path == "" {
  1637  			continue
  1638  		}
  1639  
  1640  		fmt.Fprintf(os.Stderr, "go: found %s in %s %s\n", pkg.path, mod.Path, mod.Version)
  1641  		if modAddedBy[mod] == nil {
  1642  			modAddedBy[mod] = pkg
  1643  		}
  1644  	}
  1645  
  1646  	return modAddedBy, nil
  1647  }
  1648  
  1649  // pkg locates the *loadPkg for path, creating and queuing it for loading if
  1650  // needed, and updates its state to reflect the given flags.
  1651  //
  1652  // The imports of the returned *loadPkg will be loaded asynchronously in the
  1653  // ld.work queue, and its test (if requested) will also be populated once
  1654  // imports have been resolved. When ld.work goes idle, all transitive imports of
  1655  // the requested package (and its test, if requested) will have been loaded.
  1656  func (ld *loader) pkg(ctx context.Context, path string, flags loadPkgFlags) *loadPkg {
  1657  	if flags.has(pkgImportsLoaded) {
  1658  		panic("internal error: (*loader).pkg called with pkgImportsLoaded flag set")
  1659  	}
  1660  
  1661  	pkg := ld.pkgCache.Do(path, func() *loadPkg {
  1662  		pkg := &loadPkg{
  1663  			path: path,
  1664  		}
  1665  		ld.applyPkgFlags(ctx, pkg, flags)
  1666  
  1667  		ld.work.Add(func() { ld.load(ctx, pkg) })
  1668  		return pkg
  1669  	})
  1670  
  1671  	ld.applyPkgFlags(ctx, pkg, flags)
  1672  	return pkg
  1673  }
  1674  
  1675  // applyPkgFlags updates pkg.flags to set the given flags and propagate the
  1676  // (transitive) effects of those flags, possibly loading or enqueueing further
  1677  // packages as a result.
  1678  func (ld *loader) applyPkgFlags(ctx context.Context, pkg *loadPkg, flags loadPkgFlags) {
  1679  	if flags == 0 {
  1680  		return
  1681  	}
  1682  
  1683  	if flags.has(pkgInAll) && ld.allPatternIsRoot && !pkg.isTest() {
  1684  		// This package matches a root pattern by virtue of being in "all".
  1685  		flags |= pkgIsRoot
  1686  	}
  1687  	if flags.has(pkgIsRoot) {
  1688  		flags |= pkgFromRoot
  1689  	}
  1690  
  1691  	old := pkg.flags.update(flags)
  1692  	new := old | flags
  1693  	if new == old || !new.has(pkgImportsLoaded) {
  1694  		// We either didn't change the state of pkg, or we don't know anything about
  1695  		// its dependencies yet. Either way, we can't usefully load its test or
  1696  		// update its dependencies.
  1697  		return
  1698  	}
  1699  
  1700  	if !pkg.isTest() {
  1701  		// Check whether we should add (or update the flags for) a test for pkg.
  1702  		// ld.pkgTest is idempotent and extra invocations are inexpensive,
  1703  		// so it's ok if we call it more than is strictly necessary.
  1704  		wantTest := false
  1705  		switch {
  1706  		case ld.allPatternIsRoot && MainModules.Contains(pkg.mod.Path):
  1707  			// We are loading the "all" pattern, which includes packages imported by
  1708  			// tests in the main module. This package is in the main module, so we
  1709  			// need to identify the imports of its test even if LoadTests is not set.
  1710  			//
  1711  			// (We will filter out the extra tests explicitly in computePatternAll.)
  1712  			wantTest = true
  1713  
  1714  		case ld.allPatternIsRoot && ld.allClosesOverTests && new.has(pkgInAll):
  1715  			// This variant of the "all" pattern includes imports of tests of every
  1716  			// package that is itself in "all", and pkg is in "all", so its test is
  1717  			// also in "all" (as above).
  1718  			wantTest = true
  1719  
  1720  		case ld.LoadTests && new.has(pkgIsRoot):
  1721  			// LoadTest explicitly requests tests of “the root packages”.
  1722  			wantTest = true
  1723  		}
  1724  
  1725  		if wantTest {
  1726  			var testFlags loadPkgFlags
  1727  			if MainModules.Contains(pkg.mod.Path) || (ld.allClosesOverTests && new.has(pkgInAll)) {
  1728  				// Tests of packages in the main module are in "all", in the sense that
  1729  				// they cause the packages they import to also be in "all". So are tests
  1730  				// of packages in "all" if "all" closes over test dependencies.
  1731  				testFlags |= pkgInAll
  1732  			}
  1733  			ld.pkgTest(ctx, pkg, testFlags)
  1734  		}
  1735  	}
  1736  
  1737  	if new.has(pkgInAll) && !old.has(pkgInAll|pkgImportsLoaded) {
  1738  		// We have just marked pkg with pkgInAll, or we have just loaded its
  1739  		// imports, or both. Now is the time to propagate pkgInAll to the imports.
  1740  		for _, dep := range pkg.imports {
  1741  			ld.applyPkgFlags(ctx, dep, pkgInAll)
  1742  		}
  1743  	}
  1744  
  1745  	if new.has(pkgFromRoot) && !old.has(pkgFromRoot|pkgImportsLoaded) {
  1746  		for _, dep := range pkg.imports {
  1747  			ld.applyPkgFlags(ctx, dep, pkgFromRoot)
  1748  		}
  1749  	}
  1750  }
  1751  
  1752  // preloadRootModules loads the module requirements needed to identify the
  1753  // selected version of each module providing a package in rootPkgs,
  1754  // adding new root modules to the module graph if needed.
  1755  func (ld *loader) preloadRootModules(ctx context.Context, rootPkgs []string) (changedBuildList bool) {
  1756  	needc := make(chan map[module.Version]bool, 1)
  1757  	needc <- map[module.Version]bool{}
  1758  	for _, path := range rootPkgs {
  1759  		path := path
  1760  		ld.work.Add(func() {
  1761  			// First, try to identify the module containing the package using only roots.
  1762  			//
  1763  			// If the main module is tidy and the package is in "all" — or if we're
  1764  			// lucky — we can identify all of its imports without actually loading the
  1765  			// full module graph.
  1766  			m, _, _, _, err := importFromModules(ctx, path, ld.requirements, nil, ld.skipImportModFiles)
  1767  			if err != nil {
  1768  				var missing *ImportMissingError
  1769  				if errors.As(err, &missing) && ld.ResolveMissingImports {
  1770  					// This package isn't provided by any selected module.
  1771  					// If we can find it, it will be a new root dependency.
  1772  					m, err = queryImport(ctx, path, ld.requirements)
  1773  				}
  1774  				if err != nil {
  1775  					// We couldn't identify the root module containing this package.
  1776  					// Leave it unresolved; we will report it during loading.
  1777  					return
  1778  				}
  1779  			}
  1780  			if m.Path == "" {
  1781  				// The package is in std or cmd. We don't need to change the root set.
  1782  				return
  1783  			}
  1784  
  1785  			v, ok := ld.requirements.rootSelected(m.Path)
  1786  			if !ok || v != m.Version {
  1787  				// We found the requested package in m, but m is not a root, so
  1788  				// loadModGraph will not load its requirements. We need to promote the
  1789  				// module to a root to ensure that any other packages this package
  1790  				// imports are resolved from correct dependency versions.
  1791  				//
  1792  				// (This is the “argument invariant” from
  1793  				// https://golang.org/design/36460-lazy-module-loading.)
  1794  				need := <-needc
  1795  				need[m] = true
  1796  				needc <- need
  1797  			}
  1798  		})
  1799  	}
  1800  	<-ld.work.Idle()
  1801  
  1802  	need := <-needc
  1803  	if len(need) == 0 {
  1804  		return false // No roots to add.
  1805  	}
  1806  
  1807  	toAdd := make([]module.Version, 0, len(need))
  1808  	for m := range need {
  1809  		toAdd = append(toAdd, m)
  1810  	}
  1811  	gover.ModSort(toAdd)
  1812  
  1813  	rs, err := updateRoots(ctx, ld.requirements.direct, ld.requirements, nil, toAdd, ld.AssumeRootsImported)
  1814  	if err != nil {
  1815  		// We are missing some root dependency, and for some reason we can't load
  1816  		// enough of the module dependency graph to add the missing root. Package
  1817  		// loading is doomed to fail, so fail quickly.
  1818  		ld.error(err)
  1819  		ld.exitIfErrors(ctx)
  1820  		return false
  1821  	}
  1822  	if slices.Equal(rs.rootModules, ld.requirements.rootModules) {
  1823  		// Something is deeply wrong. resolveMissingImports gave us a non-empty
  1824  		// set of modules to add to the graph, but adding those modules had no
  1825  		// effect — either they were already in the graph, or updateRoots did not
  1826  		// add them as requested.
  1827  		panic(fmt.Sprintf("internal error: adding %v to module graph had no effect on root requirements (%v)", toAdd, rs.rootModules))
  1828  	}
  1829  
  1830  	ld.requirements = rs
  1831  	return true
  1832  }
  1833  
  1834  // load loads an individual package.
  1835  func (ld *loader) load(ctx context.Context, pkg *loadPkg) {
  1836  	var mg *ModuleGraph
  1837  	if ld.requirements.pruning == unpruned {
  1838  		var err error
  1839  		mg, err = ld.requirements.Graph(ctx)
  1840  		if err != nil {
  1841  			// We already checked the error from Graph in loadFromRoots and/or
  1842  			// updateRequirements, so we ignored the error on purpose and we should
  1843  			// keep trying to push past it.
  1844  			//
  1845  			// However, because mg may be incomplete (and thus may select inaccurate
  1846  			// versions), we shouldn't use it to load packages. Instead, we pass a nil
  1847  			// *ModuleGraph, which will cause mg to first try loading from only the
  1848  			// main module and root dependencies.
  1849  			mg = nil
  1850  		}
  1851  	}
  1852  
  1853  	var modroot string
  1854  	pkg.mod, modroot, pkg.dir, pkg.altMods, pkg.err = importFromModules(ctx, pkg.path, ld.requirements, mg, ld.skipImportModFiles)
  1855  	if MainModules.Tools()[pkg.path] {
  1856  		// Tools declared by main modules are always in "all".
  1857  		// We apply the package flags before returning so that missing
  1858  		// tool dependencies report an error https://go.dev/issue/70582
  1859  		ld.applyPkgFlags(ctx, pkg, pkgInAll)
  1860  	}
  1861  	if pkg.dir == "" {
  1862  		return
  1863  	}
  1864  	if MainModules.Contains(pkg.mod.Path) {
  1865  		// Go ahead and mark pkg as in "all". This provides the invariant that a
  1866  		// package that is *only* imported by other packages in "all" is always
  1867  		// marked as such before loading its imports.
  1868  		//
  1869  		// We don't actually rely on that invariant at the moment, but it may
  1870  		// improve efficiency somewhat and makes the behavior a bit easier to reason
  1871  		// about (by reducing churn on the flag bits of dependencies), and costs
  1872  		// essentially nothing (these atomic flag ops are essentially free compared
  1873  		// to scanning source code for imports).
  1874  		ld.applyPkgFlags(ctx, pkg, pkgInAll)
  1875  	}
  1876  	if ld.AllowPackage != nil {
  1877  		if err := ld.AllowPackage(ctx, pkg.path, pkg.mod); err != nil {
  1878  			pkg.err = err
  1879  		}
  1880  	}
  1881  
  1882  	pkg.inStd = (search.IsStandardImportPath(pkg.path) && search.InDir(pkg.dir, cfg.GOROOTsrc) != "")
  1883  
  1884  	var imports, testImports []string
  1885  
  1886  	if cfg.BuildContext.Compiler == "gccgo" && pkg.inStd {
  1887  		// We can't scan standard packages for gccgo.
  1888  	} else {
  1889  		var err error
  1890  		imports, testImports, err = scanDir(modroot, pkg.dir, ld.Tags)
  1891  		if err != nil {
  1892  			pkg.err = err
  1893  			return
  1894  		}
  1895  	}
  1896  
  1897  	pkg.imports = make([]*loadPkg, 0, len(imports))
  1898  	var importFlags loadPkgFlags
  1899  	if pkg.flags.has(pkgInAll) {
  1900  		importFlags = pkgInAll
  1901  	}
  1902  	for _, path := range imports {
  1903  		if pkg.inStd {
  1904  			// Imports from packages in "std" and "cmd" should resolve using
  1905  			// GOROOT/src/vendor even when "std" is not the main module.
  1906  			path = ld.stdVendor(pkg.path, path)
  1907  		}
  1908  		pkg.imports = append(pkg.imports, ld.pkg(ctx, path, importFlags))
  1909  	}
  1910  	pkg.testImports = testImports
  1911  
  1912  	ld.applyPkgFlags(ctx, pkg, pkgImportsLoaded)
  1913  }
  1914  
  1915  // pkgTest locates the test of pkg, creating it if needed, and updates its state
  1916  // to reflect the given flags.
  1917  //
  1918  // pkgTest requires that the imports of pkg have already been loaded (flagged
  1919  // with pkgImportsLoaded).
  1920  func (ld *loader) pkgTest(ctx context.Context, pkg *loadPkg, testFlags loadPkgFlags) *loadPkg {
  1921  	if pkg.isTest() {
  1922  		panic("pkgTest called on a test package")
  1923  	}
  1924  
  1925  	createdTest := false
  1926  	pkg.testOnce.Do(func() {
  1927  		pkg.test = &loadPkg{
  1928  			path:   pkg.path,
  1929  			testOf: pkg,
  1930  			mod:    pkg.mod,
  1931  			dir:    pkg.dir,
  1932  			err:    pkg.err,
  1933  			inStd:  pkg.inStd,
  1934  		}
  1935  		ld.applyPkgFlags(ctx, pkg.test, testFlags)
  1936  		createdTest = true
  1937  	})
  1938  
  1939  	test := pkg.test
  1940  	if createdTest {
  1941  		test.imports = make([]*loadPkg, 0, len(pkg.testImports))
  1942  		var importFlags loadPkgFlags
  1943  		if test.flags.has(pkgInAll) {
  1944  			importFlags = pkgInAll
  1945  		}
  1946  		for _, path := range pkg.testImports {
  1947  			if pkg.inStd {
  1948  				path = ld.stdVendor(test.path, path)
  1949  			}
  1950  			test.imports = append(test.imports, ld.pkg(ctx, path, importFlags))
  1951  		}
  1952  		pkg.testImports = nil
  1953  		ld.applyPkgFlags(ctx, test, pkgImportsLoaded)
  1954  	} else {
  1955  		ld.applyPkgFlags(ctx, test, testFlags)
  1956  	}
  1957  
  1958  	return test
  1959  }
  1960  
  1961  // stdVendor returns the canonical import path for the package with the given
  1962  // path when imported from the standard-library package at parentPath.
  1963  func (ld *loader) stdVendor(parentPath, path string) string {
  1964  	if p, _, ok := fips140.ResolveImport(path); ok {
  1965  		return p
  1966  	}
  1967  	if search.IsStandardImportPath(path) {
  1968  		return path
  1969  	}
  1970  
  1971  	if str.HasPathPrefix(parentPath, "cmd") {
  1972  		if !ld.VendorModulesInGOROOTSrc || !MainModules.Contains("cmd") {
  1973  			vendorPath := pathpkg.Join("cmd", "vendor", path)
  1974  
  1975  			if _, err := os.Stat(filepath.Join(cfg.GOROOTsrc, filepath.FromSlash(vendorPath))); err == nil {
  1976  				return vendorPath
  1977  			}
  1978  		}
  1979  	} else if !ld.VendorModulesInGOROOTSrc || !MainModules.Contains("std") || str.HasPathPrefix(parentPath, "vendor") {
  1980  		// If we are outside of the 'std' module, resolve imports from within 'std'
  1981  		// to the vendor directory.
  1982  		//
  1983  		// Do the same for importers beginning with the prefix 'vendor/' even if we
  1984  		// are *inside* of the 'std' module: the 'vendor/' packages that resolve
  1985  		// globally from GOROOT/src/vendor (and are listed as part of 'go list std')
  1986  		// are distinct from the real module dependencies, and cannot import
  1987  		// internal packages from the real module.
  1988  		//
  1989  		// (Note that although the 'vendor/' packages match the 'std' *package*
  1990  		// pattern, they are not part of the std *module*, and do not affect
  1991  		// 'go mod tidy' and similar module commands when working within std.)
  1992  		vendorPath := pathpkg.Join("vendor", path)
  1993  		if _, err := os.Stat(filepath.Join(cfg.GOROOTsrc, filepath.FromSlash(vendorPath))); err == nil {
  1994  			return vendorPath
  1995  		}
  1996  	}
  1997  
  1998  	// Not vendored: resolve from modules.
  1999  	return path
  2000  }
  2001  
  2002  // computePatternAll returns the list of packages matching pattern "all",
  2003  // starting with a list of the import paths for the packages in the main module.
  2004  func (ld *loader) computePatternAll() (all []string) {
  2005  	for _, pkg := range ld.pkgs {
  2006  		if pkg.flags.has(pkgInAll) && !pkg.isTest() {
  2007  			all = append(all, pkg.path)
  2008  		}
  2009  	}
  2010  	sort.Strings(all)
  2011  	return all
  2012  }
  2013  
  2014  // checkMultiplePaths verifies that a given module path is used as itself
  2015  // or as a replacement for another module, but not both at the same time.
  2016  //
  2017  // (See https://golang.org/issue/26607 and https://golang.org/issue/34650.)
  2018  func (ld *loader) checkMultiplePaths() {
  2019  	mods := ld.requirements.rootModules
  2020  	if cached := ld.requirements.graph.Load(); cached != nil {
  2021  		if mg := cached.mg; mg != nil {
  2022  			mods = mg.BuildList()
  2023  		}
  2024  	}
  2025  
  2026  	firstPath := map[module.Version]string{}
  2027  	for _, mod := range mods {
  2028  		src := resolveReplacement(mod)
  2029  		if prev, ok := firstPath[src]; !ok {
  2030  			firstPath[src] = mod.Path
  2031  		} else if prev != mod.Path {
  2032  			ld.error(fmt.Errorf("%s@%s used for two different module paths (%s and %s)", src.Path, src.Version, prev, mod.Path))
  2033  		}
  2034  	}
  2035  }
  2036  
  2037  // checkTidyCompatibility emits an error if any package would be loaded from a
  2038  // different module under rs than under ld.requirements.
  2039  func (ld *loader) checkTidyCompatibility(ctx context.Context, rs *Requirements, compatVersion string) {
  2040  	goVersion := rs.GoVersion()
  2041  	suggestUpgrade := false
  2042  	suggestEFlag := false
  2043  	suggestFixes := func() {
  2044  		if ld.AllowErrors {
  2045  			// The user is explicitly ignoring these errors, so don't bother them with
  2046  			// other options.
  2047  			return
  2048  		}
  2049  
  2050  		// We print directly to os.Stderr because this information is advice about
  2051  		// how to fix errors, not actually an error itself.
  2052  		// (The actual errors should have been logged already.)
  2053  
  2054  		fmt.Fprintln(os.Stderr)
  2055  
  2056  		goFlag := ""
  2057  		if goVersion != MainModules.GoVersion() {
  2058  			goFlag = " -go=" + goVersion
  2059  		}
  2060  
  2061  		compatFlag := ""
  2062  		if compatVersion != gover.Prev(goVersion) {
  2063  			compatFlag = " -compat=" + compatVersion
  2064  		}
  2065  		if suggestUpgrade {
  2066  			eDesc := ""
  2067  			eFlag := ""
  2068  			if suggestEFlag {
  2069  				eDesc = ", leaving some packages unresolved"
  2070  				eFlag = " -e"
  2071  			}
  2072  			fmt.Fprintf(os.Stderr, "To upgrade to the versions selected by go %s%s:\n\tgo mod tidy%s -go=%s && go mod tidy%s -go=%s%s\n", compatVersion, eDesc, eFlag, compatVersion, eFlag, goVersion, compatFlag)
  2073  		} else if suggestEFlag {
  2074  			// If some packages are missing but no package is upgraded, then we
  2075  			// shouldn't suggest upgrading to the Go 1.16 versions explicitly — that
  2076  			// wouldn't actually fix anything for Go 1.16 users, and *would* break
  2077  			// something for Go 1.17 users.
  2078  			fmt.Fprintf(os.Stderr, "To proceed despite packages unresolved in go %s:\n\tgo mod tidy -e%s%s\n", compatVersion, goFlag, compatFlag)
  2079  		}
  2080  
  2081  		fmt.Fprintf(os.Stderr, "If reproducibility with go %s is not needed:\n\tgo mod tidy%s -compat=%s\n", compatVersion, goFlag, goVersion)
  2082  
  2083  		// TODO(#46141): Populate the linked wiki page.
  2084  		fmt.Fprintf(os.Stderr, "For other options, see:\n\thttps://golang.org/doc/modules/pruning\n")
  2085  	}
  2086  
  2087  	mg, err := rs.Graph(ctx)
  2088  	if err != nil {
  2089  		ld.error(fmt.Errorf("error loading go %s module graph: %w", compatVersion, err))
  2090  		ld.switchIfErrors(ctx)
  2091  		suggestFixes()
  2092  		ld.exitIfErrors(ctx)
  2093  		return
  2094  	}
  2095  
  2096  	// Re-resolve packages in parallel.
  2097  	//
  2098  	// We re-resolve each package — rather than just checking versions — to ensure
  2099  	// that we have fetched module source code (and, importantly, checksums for
  2100  	// that source code) for all modules that are necessary to ensure that imports
  2101  	// are unambiguous. That also produces clearer diagnostics, since we can say
  2102  	// exactly what happened to the package if it became ambiguous or disappeared
  2103  	// entirely.
  2104  	//
  2105  	// We re-resolve the packages in parallel because this process involves disk
  2106  	// I/O to check for package sources, and because the process of checking for
  2107  	// ambiguous imports may require us to download additional modules that are
  2108  	// otherwise pruned out in Go 1.17 — we don't want to block progress on other
  2109  	// packages while we wait for a single new download.
  2110  	type mismatch struct {
  2111  		mod module.Version
  2112  		err error
  2113  	}
  2114  	mismatchMu := make(chan map[*loadPkg]mismatch, 1)
  2115  	mismatchMu <- map[*loadPkg]mismatch{}
  2116  	for _, pkg := range ld.pkgs {
  2117  		if pkg.mod.Path == "" && pkg.err == nil {
  2118  			// This package is from the standard library (which does not vary based on
  2119  			// the module graph).
  2120  			continue
  2121  		}
  2122  
  2123  		pkg := pkg
  2124  		ld.work.Add(func() {
  2125  			mod, _, _, _, err := importFromModules(ctx, pkg.path, rs, mg, ld.skipImportModFiles)
  2126  			if mod != pkg.mod {
  2127  				mismatches := <-mismatchMu
  2128  				mismatches[pkg] = mismatch{mod: mod, err: err}
  2129  				mismatchMu <- mismatches
  2130  			}
  2131  		})
  2132  	}
  2133  	<-ld.work.Idle()
  2134  
  2135  	mismatches := <-mismatchMu
  2136  	if len(mismatches) == 0 {
  2137  		// Since we're running as part of 'go mod tidy', the roots of the module
  2138  		// graph should contain only modules that are relevant to some package in
  2139  		// the package graph. We checked every package in the package graph and
  2140  		// didn't find any mismatches, so that must mean that all of the roots of
  2141  		// the module graph are also consistent.
  2142  		//
  2143  		// If we're wrong, Go 1.16 in -mod=readonly mode will error out with
  2144  		// "updates to go.mod needed", which would be very confusing. So instead,
  2145  		// we'll double-check that our reasoning above actually holds — if it
  2146  		// doesn't, we'll emit an internal error and hopefully the user will report
  2147  		// it as a bug.
  2148  		for _, m := range ld.requirements.rootModules {
  2149  			if v := mg.Selected(m.Path); v != m.Version {
  2150  				fmt.Fprintln(os.Stderr)
  2151  				base.Fatalf("go: internal error: failed to diagnose selected-version mismatch for module %s: go %s selects %s, but go %s selects %s\n\tPlease report this at https://golang.org/issue.", m.Path, goVersion, m.Version, compatVersion, v)
  2152  			}
  2153  		}
  2154  		return
  2155  	}
  2156  
  2157  	// Iterate over the packages (instead of the mismatches map) to emit errors in
  2158  	// deterministic order.
  2159  	for _, pkg := range ld.pkgs {
  2160  		mismatch, ok := mismatches[pkg]
  2161  		if !ok {
  2162  			continue
  2163  		}
  2164  
  2165  		if pkg.isTest() {
  2166  			// We already did (or will) report an error for the package itself,
  2167  			// so don't report a duplicate (and more verbose) error for its test.
  2168  			if _, ok := mismatches[pkg.testOf]; !ok {
  2169  				base.Fatalf("go: internal error: mismatch recorded for test %s, but not its non-test package", pkg.path)
  2170  			}
  2171  			continue
  2172  		}
  2173  
  2174  		switch {
  2175  		case mismatch.err != nil:
  2176  			// pkg resolved successfully, but errors out using the requirements in rs.
  2177  			//
  2178  			// This could occur because the import is provided by a single root (and
  2179  			// is thus unambiguous in a main module with a pruned module graph) and
  2180  			// also one or more transitive dependencies (and is ambiguous with an
  2181  			// unpruned graph).
  2182  			//
  2183  			// It could also occur because some transitive dependency upgrades the
  2184  			// module that previously provided the package to a version that no
  2185  			// longer does, or to a version for which the module source code (but
  2186  			// not the go.mod file in isolation) has a checksum error.
  2187  			if missing := (*ImportMissingError)(nil); errors.As(mismatch.err, &missing) {
  2188  				selected := module.Version{
  2189  					Path:    pkg.mod.Path,
  2190  					Version: mg.Selected(pkg.mod.Path),
  2191  				}
  2192  				ld.error(fmt.Errorf("%s loaded from %v,\n\tbut go %s would fail to locate it in %s", pkg.stackText(), pkg.mod, compatVersion, selected))
  2193  			} else {
  2194  				if ambiguous := (*AmbiguousImportError)(nil); errors.As(mismatch.err, &ambiguous) {
  2195  					// TODO: Is this check needed?
  2196  				}
  2197  				ld.error(fmt.Errorf("%s loaded from %v,\n\tbut go %s would fail to locate it:\n\t%v", pkg.stackText(), pkg.mod, compatVersion, mismatch.err))
  2198  			}
  2199  
  2200  			suggestEFlag = true
  2201  
  2202  			// Even if we press ahead with the '-e' flag, the older version will
  2203  			// error out in readonly mode if it thinks the go.mod file contains
  2204  			// any *explicit* dependency that is not at its selected version,
  2205  			// even if that dependency is not relevant to any package being loaded.
  2206  			//
  2207  			// We check for that condition here. If all of the roots are consistent
  2208  			// the '-e' flag suffices, but otherwise we need to suggest an upgrade.
  2209  			if !suggestUpgrade {
  2210  				for _, m := range ld.requirements.rootModules {
  2211  					if v := mg.Selected(m.Path); v != m.Version {
  2212  						suggestUpgrade = true
  2213  						break
  2214  					}
  2215  				}
  2216  			}
  2217  
  2218  		case pkg.err != nil:
  2219  			// pkg had an error in with a pruned module graph (presumably suppressed
  2220  			// with the -e flag), but the error went away using an unpruned graph.
  2221  			//
  2222  			// This is possible, if, say, the import is unresolved in the pruned graph
  2223  			// (because the "latest" version of each candidate module either is
  2224  			// unavailable or does not contain the package), but is resolved in the
  2225  			// unpruned graph due to a newer-than-latest dependency that is normally
  2226  			// pruned out.
  2227  			//
  2228  			// This could also occur if the source code for the module providing the
  2229  			// package in the pruned graph has a checksum error, but the unpruned
  2230  			// graph upgrades that module to a version with a correct checksum.
  2231  			//
  2232  			// pkg.err should have already been logged elsewhere — along with a
  2233  			// stack trace — so log only the import path and non-error info here.
  2234  			suggestUpgrade = true
  2235  			ld.error(fmt.Errorf("%s failed to load from any module,\n\tbut go %s would load it from %v", pkg.path, compatVersion, mismatch.mod))
  2236  
  2237  		case pkg.mod != mismatch.mod:
  2238  			// The package is loaded successfully by both Go versions, but from a
  2239  			// different module in each. This could lead to subtle (and perhaps even
  2240  			// unnoticed!) variations in behavior between builds with different
  2241  			// toolchains.
  2242  			suggestUpgrade = true
  2243  			ld.error(fmt.Errorf("%s loaded from %v,\n\tbut go %s would select %v\n", pkg.stackText(), pkg.mod, compatVersion, mismatch.mod.Version))
  2244  
  2245  		default:
  2246  			base.Fatalf("go: internal error: mismatch recorded for package %s, but no differences found", pkg.path)
  2247  		}
  2248  	}
  2249  
  2250  	ld.switchIfErrors(ctx)
  2251  	suggestFixes()
  2252  	ld.exitIfErrors(ctx)
  2253  }
  2254  
  2255  // scanDir is like imports.ScanDir but elides known magic imports from the list,
  2256  // so that we do not go looking for packages that don't really exist.
  2257  //
  2258  // The standard magic import is "C", for cgo.
  2259  //
  2260  // The only other known magic imports are appengine and appengine/*.
  2261  // These are so old that they predate "go get" and did not use URL-like paths.
  2262  // Most code today now uses google.golang.org/appengine instead,
  2263  // but not all code has been so updated. When we mostly ignore build tags
  2264  // during "go vendor", we look into "// +build appengine" files and
  2265  // may see these legacy imports. We drop them so that the module
  2266  // search does not look for modules to try to satisfy them.
  2267  func scanDir(modroot string, dir string, tags map[string]bool) (imports_, testImports []string, err error) {
  2268  	if ip, mierr := modindex.GetPackage(modroot, dir); mierr == nil {
  2269  		imports_, testImports, err = ip.ScanDir(tags)
  2270  		goto Happy
  2271  	} else if !errors.Is(mierr, modindex.ErrNotIndexed) {
  2272  		return nil, nil, mierr
  2273  	}
  2274  
  2275  	imports_, testImports, err = imports.ScanDir(dir, tags)
  2276  Happy:
  2277  
  2278  	filter := func(x []string) []string {
  2279  		w := 0
  2280  		for _, pkg := range x {
  2281  			if pkg != "C" && pkg != "appengine" && !strings.HasPrefix(pkg, "appengine/") &&
  2282  				pkg != "appengine_internal" && !strings.HasPrefix(pkg, "appengine_internal/") {
  2283  				x[w] = pkg
  2284  				w++
  2285  			}
  2286  		}
  2287  		return x[:w]
  2288  	}
  2289  
  2290  	return filter(imports_), filter(testImports), err
  2291  }
  2292  
  2293  // buildStacks computes minimal import stacks for each package,
  2294  // for use in error messages. When it completes, packages that
  2295  // are part of the original root set have pkg.stack == nil,
  2296  // and other packages have pkg.stack pointing at the next
  2297  // package up the import stack in their minimal chain.
  2298  // As a side effect, buildStacks also constructs ld.pkgs,
  2299  // the list of all packages loaded.
  2300  func (ld *loader) buildStacks() {
  2301  	if len(ld.pkgs) > 0 {
  2302  		panic("buildStacks")
  2303  	}
  2304  	for _, pkg := range ld.roots {
  2305  		pkg.stack = pkg // sentinel to avoid processing in next loop
  2306  		ld.pkgs = append(ld.pkgs, pkg)
  2307  	}
  2308  	for i := 0; i < len(ld.pkgs); i++ { // not range: appending to ld.pkgs in loop
  2309  		pkg := ld.pkgs[i]
  2310  		for _, next := range pkg.imports {
  2311  			if next.stack == nil {
  2312  				next.stack = pkg
  2313  				ld.pkgs = append(ld.pkgs, next)
  2314  			}
  2315  		}
  2316  		if next := pkg.test; next != nil && next.stack == nil {
  2317  			next.stack = pkg
  2318  			ld.pkgs = append(ld.pkgs, next)
  2319  		}
  2320  	}
  2321  	for _, pkg := range ld.roots {
  2322  		pkg.stack = nil
  2323  	}
  2324  }
  2325  
  2326  // stackText builds the import stack text to use when
  2327  // reporting an error in pkg. It has the general form
  2328  //
  2329  //	root imports
  2330  //		other imports
  2331  //		other2 tested by
  2332  //		other2.test imports
  2333  //		pkg
  2334  func (pkg *loadPkg) stackText() string {
  2335  	var stack []*loadPkg
  2336  	for p := pkg; p != nil; p = p.stack {
  2337  		stack = append(stack, p)
  2338  	}
  2339  
  2340  	var buf strings.Builder
  2341  	for i := len(stack) - 1; i >= 0; i-- {
  2342  		p := stack[i]
  2343  		fmt.Fprint(&buf, p.path)
  2344  		if p.testOf != nil {
  2345  			fmt.Fprint(&buf, ".test")
  2346  		}
  2347  		if i > 0 {
  2348  			if stack[i-1].testOf == p {
  2349  				fmt.Fprint(&buf, " tested by\n\t")
  2350  			} else {
  2351  				fmt.Fprint(&buf, " imports\n\t")
  2352  			}
  2353  		}
  2354  	}
  2355  	return buf.String()
  2356  }
  2357  
  2358  // why returns the text to use in "go mod why" output about the given package.
  2359  // It is less ornate than the stackText but contains the same information.
  2360  func (pkg *loadPkg) why() string {
  2361  	var buf strings.Builder
  2362  	var stack []*loadPkg
  2363  	for p := pkg; p != nil; p = p.stack {
  2364  		stack = append(stack, p)
  2365  	}
  2366  
  2367  	for i := len(stack) - 1; i >= 0; i-- {
  2368  		p := stack[i]
  2369  		if p.testOf != nil {
  2370  			fmt.Fprintf(&buf, "%s.test\n", p.testOf.path)
  2371  		} else {
  2372  			fmt.Fprintf(&buf, "%s\n", p.path)
  2373  		}
  2374  	}
  2375  	return buf.String()
  2376  }
  2377  
  2378  // Why returns the "go mod why" output stanza for the given package,
  2379  // without the leading # comment.
  2380  // The package graph must have been loaded already, usually by LoadPackages.
  2381  // If there is no reason for the package to be in the current build,
  2382  // Why returns an empty string.
  2383  func Why(path string) string {
  2384  	pkg, ok := loaded.pkgCache.Get(path)
  2385  	if !ok {
  2386  		return ""
  2387  	}
  2388  	return pkg.why()
  2389  }
  2390  
  2391  // WhyDepth returns the number of steps in the Why listing.
  2392  // If there is no reason for the package to be in the current build,
  2393  // WhyDepth returns 0.
  2394  func WhyDepth(path string) int {
  2395  	n := 0
  2396  	pkg, _ := loaded.pkgCache.Get(path)
  2397  	for p := pkg; p != nil; p = p.stack {
  2398  		n++
  2399  	}
  2400  	return n
  2401  }
  2402  

View as plain text