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