1
2
3
4
5 package modload
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97 import (
98 "context"
99 "errors"
100 "fmt"
101 "go/build"
102 "internal/diff"
103 "io/fs"
104 "maps"
105 "os"
106 "path"
107 pathpkg "path"
108 "path/filepath"
109 "runtime"
110 "slices"
111 "sort"
112 "strings"
113 "sync"
114 "sync/atomic"
115
116 "cmd/go/internal/base"
117 "cmd/go/internal/cfg"
118 "cmd/go/internal/fips140"
119 "cmd/go/internal/fsys"
120 "cmd/go/internal/gover"
121 "cmd/go/internal/imports"
122 "cmd/go/internal/modfetch"
123 "cmd/go/internal/modindex"
124 "cmd/go/internal/mvs"
125 "cmd/go/internal/search"
126 "cmd/go/internal/str"
127 "cmd/internal/par"
128
129 "golang.org/x/mod/module"
130 )
131
132
133
134
135
136
137
138 var loaded *loader
139
140
141 type PackageOpts struct {
142
143
144
145
146
147
148 TidyGoVersion string
149
150
151
152
153 Tags map[string]bool
154
155
156
157
158 Tidy bool
159
160
161
162
163 TidyDiff bool
164
165
166
167
168
169
170 TidyCompatibleVersion string
171
172
173
174
175 VendorModulesInGOROOTSrc bool
176
177
178
179
180
181
182 ResolveMissingImports bool
183
184
185
186
187 AssumeRootsImported bool
188
189
190
191
192
193
194
195
196 AllowPackage func(ctx context.Context, path string, mod module.Version) error
197
198
199
200
201 LoadTests bool
202
203
204
205
206
207
208 UseVendorAll bool
209
210
211
212 AllowErrors bool
213
214
215
216
217
218
219
220
221
222
223 SilencePackageErrors bool
224
225
226
227
228
229 SilenceMissingStdImports bool
230
231
232
233
234
235
236
237
238 SilenceNoGoErrors bool
239
240
241
242 SilenceUnmatchedWarnings bool
243
244
245 MainModule module.Version
246
247
248
249 Switcher gover.Switcher
250 }
251
252
253
254 func LoadPackages(ctx context.Context, opts PackageOpts, patterns ...string) (matches []*search.Match, loadedPackages []string) {
255 if opts.Tags == nil {
256 opts.Tags = imports.Tags()
257 }
258
259 patterns = search.CleanPatterns(patterns)
260 matches = make([]*search.Match, 0, len(patterns))
261 allPatternIsRoot := false
262 for _, pattern := range patterns {
263 matches = append(matches, search.NewMatch(pattern))
264 if pattern == "all" {
265 allPatternIsRoot = true
266 }
267 }
268
269 updateMatches := func(rs *Requirements, ld *loader) {
270 for _, m := range matches {
271 switch {
272 case m.IsLocal():
273
274 if m.Dirs == nil {
275 matchModRoots := modRoots
276 if opts.MainModule != (module.Version{}) {
277 matchModRoots = []string{MainModules.ModRoot(opts.MainModule)}
278 }
279 matchLocalDirs(ctx, matchModRoots, m, rs)
280 }
281
282
283
284
285
286
287
288 m.Pkgs = m.Pkgs[:0]
289 for _, dir := range m.Dirs {
290 pkg, err := resolveLocalPackage(ctx, dir, rs)
291 if err != nil {
292 if !m.IsLiteral() && (err == errPkgIsBuiltin || err == errPkgIsGorootSrc) {
293 continue
294 }
295
296
297
298 if !HasModRoot() {
299 die()
300 }
301
302 if ld != nil {
303 m.AddError(err)
304 }
305 continue
306 }
307 m.Pkgs = append(m.Pkgs, pkg)
308 }
309
310 case m.IsLiteral():
311 m.Pkgs = []string{m.Pattern()}
312
313 case strings.Contains(m.Pattern(), "..."):
314 m.Errs = m.Errs[:0]
315 mg, err := rs.Graph(ctx)
316 if err != nil {
317
318
319
320
321
322
323 m.Errs = append(m.Errs, err)
324 }
325 matchPackages(ctx, m, opts.Tags, includeStd, mg.BuildList())
326
327 case m.Pattern() == "all":
328 if ld == nil {
329
330
331 m.Errs = m.Errs[:0]
332 matchModules := MainModules.Versions()
333 if opts.MainModule != (module.Version{}) {
334 matchModules = []module.Version{opts.MainModule}
335 }
336 matchPackages(ctx, m, opts.Tags, omitStd, matchModules)
337 for tool := range MainModules.Tools() {
338 m.Pkgs = append(m.Pkgs, tool)
339 }
340 } else {
341
342
343 m.Pkgs = ld.computePatternAll()
344 }
345
346 case m.Pattern() == "std" || m.Pattern() == "cmd":
347 if m.Pkgs == nil {
348 m.MatchPackages()
349 }
350
351 case m.Pattern() == "tool":
352 for tool := range MainModules.Tools() {
353 m.Pkgs = append(m.Pkgs, tool)
354 }
355 default:
356 panic(fmt.Sprintf("internal error: modload missing case for pattern %s", m.Pattern()))
357 }
358 }
359 }
360
361 initialRS, err := loadModFile(ctx, &opts)
362 if err != nil {
363 base.Fatal(err)
364 }
365
366 ld := loadFromRoots(ctx, loaderParams{
367 PackageOpts: opts,
368 requirements: initialRS,
369
370 allPatternIsRoot: allPatternIsRoot,
371
372 listRoots: func(rs *Requirements) (roots []string) {
373 updateMatches(rs, nil)
374 for _, m := range matches {
375 roots = append(roots, m.Pkgs...)
376 }
377 return roots
378 },
379 })
380
381
382 updateMatches(ld.requirements, ld)
383
384
385
386 if !ld.SilencePackageErrors {
387 for _, match := range matches {
388 for _, err := range match.Errs {
389 ld.error(err)
390 }
391 }
392 }
393 ld.exitIfErrors(ctx)
394
395 if !opts.SilenceUnmatchedWarnings {
396 search.WarnUnmatched(matches)
397 }
398
399 if opts.Tidy {
400 if cfg.BuildV {
401 mg, _ := ld.requirements.Graph(ctx)
402 for _, m := range initialRS.rootModules {
403 var unused bool
404 if ld.requirements.pruning == unpruned {
405
406
407
408 unused = mg.Selected(m.Path) == "none"
409 } else {
410
411
412
413 _, ok := ld.requirements.rootSelected(m.Path)
414 unused = !ok
415 }
416 if unused {
417 fmt.Fprintf(os.Stderr, "unused %s\n", m.Path)
418 }
419 }
420 }
421
422 keep := keepSums(ctx, ld, ld.requirements, loadedZipSumsOnly)
423 compatVersion := ld.TidyCompatibleVersion
424 goVersion := ld.requirements.GoVersion()
425 if compatVersion == "" {
426 if gover.Compare(goVersion, gover.GoStrictVersion) < 0 {
427 compatVersion = gover.Prev(goVersion)
428 } else {
429
430
431 compatVersion = goVersion
432 }
433 }
434 if gover.Compare(compatVersion, goVersion) > 0 {
435
436
437
438 compatVersion = goVersion
439 }
440 if compatPruning := pruningForGoVersion(compatVersion); compatPruning != ld.requirements.pruning {
441 compatRS := newRequirements(compatPruning, ld.requirements.rootModules, ld.requirements.direct)
442 ld.checkTidyCompatibility(ctx, compatRS, compatVersion)
443
444 for m := range keepSums(ctx, ld, compatRS, loadedZipSumsOnly) {
445 keep[m] = true
446 }
447 }
448
449 if opts.TidyDiff {
450 cfg.BuildMod = "readonly"
451 loaded = ld
452 requirements = loaded.requirements
453 currentGoMod, updatedGoMod, _, err := UpdateGoModFromReqs(ctx, WriteOpts{})
454 if err != nil {
455 base.Fatal(err)
456 }
457 goModDiff := diff.Diff("current/go.mod", currentGoMod, "tidy/go.mod", updatedGoMod)
458
459 modfetch.TrimGoSum(keep)
460
461
462 if gover.Compare(compatVersion, "1.16") > 0 {
463 keep = keepSums(ctx, loaded, requirements, addBuildListZipSums)
464 }
465 currentGoSum, tidyGoSum := modfetch.TidyGoSum(keep)
466 goSumDiff := diff.Diff("current/go.sum", currentGoSum, "tidy/go.sum", tidyGoSum)
467
468 if len(goModDiff) > 0 {
469 fmt.Println(string(goModDiff))
470 base.SetExitStatus(1)
471 }
472 if len(goSumDiff) > 0 {
473 fmt.Println(string(goSumDiff))
474 base.SetExitStatus(1)
475 }
476 base.Exit()
477 }
478
479 if !ExplicitWriteGoMod {
480 modfetch.TrimGoSum(keep)
481
482
483
484
485
486
487 if err := modfetch.WriteGoSum(ctx, keep, mustHaveCompleteRequirements()); err != nil {
488 base.Fatal(err)
489 }
490 }
491 }
492
493 if opts.TidyDiff && !opts.Tidy {
494 panic("TidyDiff is set but Tidy is not.")
495 }
496
497
498
499
500
501 loaded = ld
502 requirements = loaded.requirements
503
504 for _, pkg := range ld.pkgs {
505 if !pkg.isTest() {
506 loadedPackages = append(loadedPackages, pkg.path)
507 }
508 }
509 sort.Strings(loadedPackages)
510
511 if !ExplicitWriteGoMod && opts.ResolveMissingImports {
512 if err := commitRequirements(ctx, WriteOpts{}); err != nil {
513 base.Fatal(err)
514 }
515 }
516
517 return matches, loadedPackages
518 }
519
520
521
522 func matchLocalDirs(ctx context.Context, modRoots []string, m *search.Match, rs *Requirements) {
523 if !m.IsLocal() {
524 panic(fmt.Sprintf("internal error: resolveLocalDirs on non-local pattern %s", m.Pattern()))
525 }
526
527 if i := strings.Index(m.Pattern(), "..."); i >= 0 {
528
529
530
531
532
533 dir := filepath.Dir(filepath.Clean(m.Pattern()[:i+3]))
534 absDir := dir
535 if !filepath.IsAbs(dir) {
536 absDir = filepath.Join(base.Cwd(), dir)
537 }
538
539 modRoot := findModuleRoot(absDir)
540 if !slices.Contains(modRoots, modRoot) && search.InDir(absDir, cfg.GOROOTsrc) == "" && pathInModuleCache(ctx, absDir, rs) == "" {
541 m.Dirs = []string{}
542 scope := "main module or its selected dependencies"
543 if inWorkspaceMode() {
544 scope = "modules listed in go.work or their selected dependencies"
545 }
546 m.AddError(fmt.Errorf("directory prefix %s does not contain %s", base.ShortPath(absDir), scope))
547 return
548 }
549 }
550
551 m.MatchDirs(modRoots)
552 }
553
554
555 func resolveLocalPackage(ctx context.Context, dir string, rs *Requirements) (string, error) {
556 var absDir string
557 if filepath.IsAbs(dir) {
558 absDir = filepath.Clean(dir)
559 } else {
560 absDir = filepath.Join(base.Cwd(), dir)
561 }
562
563 bp, err := cfg.BuildContext.ImportDir(absDir, 0)
564 if err != nil && (bp == nil || len(bp.IgnoredGoFiles) == 0) {
565
566
567
568
569
570
571
572 if _, err := fsys.Stat(absDir); err != nil {
573 if os.IsNotExist(err) {
574
575
576 return "", &fs.PathError{Op: "stat", Path: absDir, Err: errDirectoryNotFound}
577 }
578 return "", err
579 }
580 if _, noGo := err.(*build.NoGoError); noGo {
581
582
583
584
585
586
587
588
589 return "", err
590 }
591 }
592
593 for _, mod := range MainModules.Versions() {
594 modRoot := MainModules.ModRoot(mod)
595 if modRoot != "" && absDir == modRoot {
596 if absDir == cfg.GOROOTsrc {
597 return "", errPkgIsGorootSrc
598 }
599 return MainModules.PathPrefix(mod), nil
600 }
601 }
602
603
604
605
606 var pkgNotFoundErr error
607 pkgNotFoundLongestPrefix := ""
608 for _, mainModule := range MainModules.Versions() {
609 modRoot := MainModules.ModRoot(mainModule)
610 if modRoot != "" && str.HasFilePathPrefix(absDir, modRoot) && !strings.Contains(absDir[len(modRoot):], "@") {
611 suffix := filepath.ToSlash(str.TrimFilePathPrefix(absDir, modRoot))
612 if pkg, found := strings.CutPrefix(suffix, "vendor/"); found {
613 if cfg.BuildMod != "vendor" {
614 return "", fmt.Errorf("without -mod=vendor, directory %s has no package path", absDir)
615 }
616
617 readVendorList(VendorDir())
618 if _, ok := vendorPkgModule[pkg]; !ok {
619 return "", fmt.Errorf("directory %s is not a package listed in vendor/modules.txt", absDir)
620 }
621 return pkg, nil
622 }
623
624 mainModulePrefix := MainModules.PathPrefix(mainModule)
625 if mainModulePrefix == "" {
626 pkg := suffix
627 if pkg == "builtin" {
628
629
630
631 return "", errPkgIsBuiltin
632 }
633 return pkg, nil
634 }
635
636 pkg := pathpkg.Join(mainModulePrefix, suffix)
637 if _, ok, err := dirInModule(pkg, mainModulePrefix, modRoot, true); err != nil {
638 return "", err
639 } else if !ok {
640
641
642
643
644 if len(mainModulePrefix) > len(pkgNotFoundLongestPrefix) {
645 pkgNotFoundLongestPrefix = mainModulePrefix
646 pkgNotFoundErr = &PackageNotInModuleError{MainModules: []module.Version{mainModule}, Pattern: pkg}
647 }
648 continue
649 }
650 return pkg, nil
651 }
652 }
653 if pkgNotFoundErr != nil {
654 return "", pkgNotFoundErr
655 }
656
657 if sub := search.InDir(absDir, cfg.GOROOTsrc); sub != "" && sub != "." && !strings.Contains(sub, "@") {
658 pkg := filepath.ToSlash(sub)
659 if pkg == "builtin" {
660 return "", errPkgIsBuiltin
661 }
662 return pkg, nil
663 }
664
665 pkg := pathInModuleCache(ctx, absDir, rs)
666 if pkg == "" {
667 dirstr := fmt.Sprintf("directory %s", base.ShortPath(absDir))
668 if dirstr == "directory ." {
669 dirstr = "current directory"
670 }
671 if inWorkspaceMode() {
672 if mr := findModuleRoot(absDir); mr != "" {
673 return "", fmt.Errorf("%s is contained in a module that is not one of the workspace modules listed in go.work. You can add the module to the workspace using:\n\tgo work use %s", dirstr, base.ShortPath(mr))
674 }
675 return "", fmt.Errorf("%s outside modules listed in go.work or their selected dependencies", dirstr)
676 }
677 return "", fmt.Errorf("%s outside main module or its selected dependencies", dirstr)
678 }
679 return pkg, nil
680 }
681
682 var (
683 errDirectoryNotFound = errors.New("directory not found")
684 errPkgIsGorootSrc = errors.New("GOROOT/src is not an importable package")
685 errPkgIsBuiltin = errors.New(`"builtin" is a pseudo-package, not an importable package`)
686 )
687
688
689
690 func pathInModuleCache(ctx context.Context, dir string, rs *Requirements) string {
691 tryMod := func(m module.Version) (string, bool) {
692 if gover.IsToolchain(m.Path) {
693 return "", false
694 }
695 var root string
696 var err error
697 if repl := Replacement(m); repl.Path != "" && repl.Version == "" {
698 root = repl.Path
699 if !filepath.IsAbs(root) {
700 root = filepath.Join(replaceRelativeTo(), root)
701 }
702 } else if repl.Path != "" {
703 root, err = modfetch.DownloadDir(ctx, repl)
704 } else {
705 root, err = modfetch.DownloadDir(ctx, m)
706 }
707 if err != nil {
708 return "", false
709 }
710
711 sub := search.InDir(dir, root)
712 if sub == "" {
713 return "", false
714 }
715 sub = filepath.ToSlash(sub)
716 if strings.Contains(sub, "/vendor/") || strings.HasPrefix(sub, "vendor/") || strings.Contains(sub, "@") {
717 return "", false
718 }
719
720 return path.Join(m.Path, filepath.ToSlash(sub)), true
721 }
722
723 if rs.pruning == pruned {
724 for _, m := range rs.rootModules {
725 if v, _ := rs.rootSelected(m.Path); v != m.Version {
726 continue
727 }
728 if importPath, ok := tryMod(m); ok {
729
730
731 return importPath
732 }
733 }
734 }
735
736
737
738
739
740
741
742
743
744 mg, _ := rs.Graph(ctx)
745 var importPath string
746 for _, m := range mg.BuildList() {
747 var found bool
748 importPath, found = tryMod(m)
749 if found {
750 break
751 }
752 }
753 return importPath
754 }
755
756
757
758
759
760
761
762
763 func ImportFromFiles(ctx context.Context, gofiles []string) {
764 rs := LoadModFile(ctx)
765
766 tags := imports.Tags()
767 imports, testImports, err := imports.ScanFiles(gofiles, tags)
768 if err != nil {
769 base.Fatal(err)
770 }
771
772 loaded = loadFromRoots(ctx, loaderParams{
773 PackageOpts: PackageOpts{
774 Tags: tags,
775 ResolveMissingImports: true,
776 SilencePackageErrors: true,
777 },
778 requirements: rs,
779 listRoots: func(*Requirements) (roots []string) {
780 roots = append(roots, imports...)
781 roots = append(roots, testImports...)
782 return roots
783 },
784 })
785 requirements = loaded.requirements
786
787 if !ExplicitWriteGoMod {
788 if err := commitRequirements(ctx, WriteOpts{}); err != nil {
789 base.Fatal(err)
790 }
791 }
792 }
793
794
795
796 func (mms *MainModuleSet) DirImportPath(ctx context.Context, dir string) (path string, m module.Version) {
797 if !HasModRoot() {
798 return ".", module.Version{}
799 }
800 LoadModFile(ctx)
801
802 if !filepath.IsAbs(dir) {
803 dir = filepath.Join(base.Cwd(), dir)
804 } else {
805 dir = filepath.Clean(dir)
806 }
807
808 var longestPrefix string
809 var longestPrefixPath string
810 var longestPrefixVersion module.Version
811 for _, v := range mms.Versions() {
812 modRoot := mms.ModRoot(v)
813 if dir == modRoot {
814 return mms.PathPrefix(v), v
815 }
816 if str.HasFilePathPrefix(dir, modRoot) {
817 pathPrefix := MainModules.PathPrefix(v)
818 if pathPrefix > longestPrefix {
819 longestPrefix = pathPrefix
820 longestPrefixVersion = v
821 suffix := filepath.ToSlash(str.TrimFilePathPrefix(dir, modRoot))
822 if strings.HasPrefix(suffix, "vendor/") {
823 longestPrefixPath = suffix[len("vendor/"):]
824 continue
825 }
826 longestPrefixPath = pathpkg.Join(mms.PathPrefix(v), suffix)
827 }
828 }
829 }
830 if len(longestPrefix) > 0 {
831 return longestPrefixPath, longestPrefixVersion
832 }
833
834 return ".", module.Version{}
835 }
836
837
838 func PackageModule(path string) module.Version {
839 pkg, ok := loaded.pkgCache.Get(path)
840 if !ok {
841 return module.Version{}
842 }
843 return pkg.mod
844 }
845
846
847
848
849
850 func Lookup(parentPath string, parentIsStd bool, path string) (dir, realPath string, err error) {
851 if path == "" {
852 panic("Lookup called with empty package path")
853 }
854
855 if parentIsStd {
856 path = loaded.stdVendor(parentPath, path)
857 }
858 pkg, ok := loaded.pkgCache.Get(path)
859 if !ok {
860
861
862
863
864
865
866
867
868 dir := findStandardImportPath(path)
869 if dir != "" {
870 return dir, path, nil
871 }
872 return "", "", errMissing
873 }
874 return pkg.dir, pkg.path, pkg.err
875 }
876
877
878
879
880
881 type loader struct {
882 loaderParams
883
884
885
886
887
888 allClosesOverTests bool
889
890
891
892 skipImportModFiles bool
893
894 work *par.Queue
895
896
897 roots []*loadPkg
898 pkgCache *par.Cache[string, *loadPkg]
899 pkgs []*loadPkg
900 }
901
902
903
904 type loaderParams struct {
905 PackageOpts
906 requirements *Requirements
907
908 allPatternIsRoot bool
909
910 listRoots func(rs *Requirements) []string
911 }
912
913 func (ld *loader) reset() {
914 select {
915 case <-ld.work.Idle():
916 default:
917 panic("loader.reset when not idle")
918 }
919
920 ld.roots = nil
921 ld.pkgCache = new(par.Cache[string, *loadPkg])
922 ld.pkgs = nil
923 }
924
925
926
927 func (ld *loader) error(err error) {
928 if ld.AllowErrors {
929 fmt.Fprintf(os.Stderr, "go: %v\n", err)
930 } else if ld.Switcher != nil {
931 ld.Switcher.Error(err)
932 } else {
933 base.Error(err)
934 }
935 }
936
937
938 func (ld *loader) switchIfErrors(ctx context.Context) {
939 if ld.Switcher != nil {
940 ld.Switcher.Switch(ctx)
941 }
942 }
943
944
945
946 func (ld *loader) exitIfErrors(ctx context.Context) {
947 ld.switchIfErrors(ctx)
948 base.ExitIfErrors()
949 }
950
951
952
953
954 func (ld *loader) goVersion() string {
955 if ld.TidyGoVersion != "" {
956 return ld.TidyGoVersion
957 }
958 return ld.requirements.GoVersion()
959 }
960
961
962 type loadPkg struct {
963
964 path string
965 testOf *loadPkg
966
967
968 flags atomicLoadPkgFlags
969
970
971 mod module.Version
972 dir string
973 err error
974 imports []*loadPkg
975 testImports []string
976 inStd bool
977 altMods []module.Version
978
979
980 testOnce sync.Once
981 test *loadPkg
982
983
984 stack *loadPkg
985 }
986
987
988 type loadPkgFlags int8
989
990 const (
991
992
993
994
995
996
997
998
999
1000
1001 pkgInAll loadPkgFlags = 1 << iota
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012 pkgIsRoot
1013
1014
1015
1016
1017 pkgFromRoot
1018
1019
1020
1021 pkgImportsLoaded
1022 )
1023
1024
1025 func (f loadPkgFlags) has(cond loadPkgFlags) bool {
1026 return f&cond == cond
1027 }
1028
1029
1030
1031 type atomicLoadPkgFlags struct {
1032 bits atomic.Int32
1033 }
1034
1035
1036
1037
1038
1039 func (af *atomicLoadPkgFlags) update(flags loadPkgFlags) (old loadPkgFlags) {
1040 for {
1041 old := af.bits.Load()
1042 new := old | int32(flags)
1043 if new == old || af.bits.CompareAndSwap(old, new) {
1044 return loadPkgFlags(old)
1045 }
1046 }
1047 }
1048
1049
1050 func (af *atomicLoadPkgFlags) has(cond loadPkgFlags) bool {
1051 return loadPkgFlags(af.bits.Load())&cond == cond
1052 }
1053
1054
1055 func (pkg *loadPkg) isTest() bool {
1056 return pkg.testOf != nil
1057 }
1058
1059
1060
1061 func (pkg *loadPkg) fromExternalModule() bool {
1062 if pkg.mod.Path == "" {
1063 return false
1064 }
1065 return !MainModules.Contains(pkg.mod.Path)
1066 }
1067
1068 var errMissing = errors.New("cannot find package")
1069
1070
1071
1072
1073
1074
1075
1076 func loadFromRoots(ctx context.Context, params loaderParams) *loader {
1077 ld := &loader{
1078 loaderParams: params,
1079 work: par.NewQueue(runtime.GOMAXPROCS(0)),
1080 }
1081
1082 if ld.requirements.pruning == unpruned {
1083
1084
1085
1086
1087
1088
1089
1090
1091 var err error
1092 ld.requirements, _, err = expandGraph(ctx, ld.requirements)
1093 if err != nil {
1094 ld.error(err)
1095 }
1096 }
1097 ld.exitIfErrors(ctx)
1098
1099 updateGoVersion := func() {
1100 goVersion := ld.goVersion()
1101
1102 if ld.requirements.pruning != workspace {
1103 var err error
1104 ld.requirements, err = convertPruning(ctx, ld.requirements, pruningForGoVersion(goVersion))
1105 if err != nil {
1106 ld.error(err)
1107 ld.exitIfErrors(ctx)
1108 }
1109 }
1110
1111
1112
1113
1114 ld.skipImportModFiles = ld.Tidy && gover.Compare(goVersion, gover.TidyGoModSumVersion) < 0
1115
1116
1117
1118 ld.allClosesOverTests = gover.Compare(goVersion, gover.NarrowAllVersion) < 0 && !ld.UseVendorAll
1119 }
1120
1121 for {
1122 ld.reset()
1123 updateGoVersion()
1124
1125
1126
1127
1128
1129 rootPkgs := ld.listRoots(ld.requirements)
1130
1131 if ld.requirements.pruning == pruned && cfg.BuildMod == "mod" {
1132
1133
1134
1135
1136
1137
1138 changedBuildList := ld.preloadRootModules(ctx, rootPkgs)
1139 if changedBuildList {
1140
1141
1142
1143
1144
1145 continue
1146 }
1147 }
1148
1149 inRoots := map[*loadPkg]bool{}
1150 for _, path := range rootPkgs {
1151 root := ld.pkg(ctx, path, pkgIsRoot)
1152 if !inRoots[root] {
1153 ld.roots = append(ld.roots, root)
1154 inRoots[root] = true
1155 }
1156 }
1157
1158
1159
1160
1161
1162
1163 <-ld.work.Idle()
1164
1165 ld.buildStacks()
1166
1167 changed, err := ld.updateRequirements(ctx)
1168 if err != nil {
1169 ld.error(err)
1170 break
1171 }
1172 if changed {
1173
1174
1175
1176
1177
1178 continue
1179 }
1180
1181 if !ld.ResolveMissingImports || (!HasModRoot() && !allowMissingModuleImports) {
1182
1183 break
1184 }
1185
1186 modAddedBy, err := ld.resolveMissingImports(ctx)
1187 if err != nil {
1188 ld.error(err)
1189 break
1190 }
1191 if len(modAddedBy) == 0 {
1192
1193
1194 break
1195 }
1196
1197 toAdd := make([]module.Version, 0, len(modAddedBy))
1198 for m := range modAddedBy {
1199 toAdd = append(toAdd, m)
1200 }
1201 gover.ModSort(toAdd)
1202
1203
1204
1205
1206
1207
1208 var noPkgs []*loadPkg
1209
1210
1211
1212 direct := ld.requirements.direct
1213 rs, err := updateRoots(ctx, direct, ld.requirements, noPkgs, toAdd, ld.AssumeRootsImported)
1214 if err != nil {
1215
1216
1217
1218 if err, ok := err.(*mvs.BuildListError); ok {
1219 if pkg := modAddedBy[err.Module()]; pkg != nil {
1220 ld.error(fmt.Errorf("%s: %w", pkg.stackText(), err.Err))
1221 break
1222 }
1223 }
1224 ld.error(err)
1225 break
1226 }
1227 if slices.Equal(rs.rootModules, ld.requirements.rootModules) {
1228
1229
1230
1231
1232 panic(fmt.Sprintf("internal error: adding %v to module graph had no effect on root requirements (%v)", toAdd, rs.rootModules))
1233 }
1234 ld.requirements = rs
1235 }
1236 ld.exitIfErrors(ctx)
1237
1238
1239
1240 if ld.Tidy {
1241 rs, err := tidyRoots(ctx, ld.requirements, ld.pkgs)
1242 if err != nil {
1243 ld.error(err)
1244 } else {
1245 if ld.TidyGoVersion != "" {
1246
1247
1248
1249 tidy := overrideRoots(ctx, rs, []module.Version{{Path: "go", Version: ld.TidyGoVersion}})
1250 mg, err := tidy.Graph(ctx)
1251 if err != nil {
1252 ld.error(err)
1253 }
1254 if v := mg.Selected("go"); v == ld.TidyGoVersion {
1255 rs = tidy
1256 } else {
1257 conflict := Conflict{
1258 Path: mg.g.FindPath(func(m module.Version) bool {
1259 return m.Path == "go" && m.Version == v
1260 })[1:],
1261 Constraint: module.Version{Path: "go", Version: ld.TidyGoVersion},
1262 }
1263 msg := conflict.Summary()
1264 if cfg.BuildV {
1265 msg = conflict.String()
1266 }
1267 ld.error(errors.New(msg))
1268 }
1269 }
1270
1271 if ld.requirements.pruning == pruned {
1272
1273
1274
1275
1276
1277
1278 for _, m := range rs.rootModules {
1279 if m.Path == "go" && ld.TidyGoVersion != "" {
1280 continue
1281 }
1282 if v, ok := ld.requirements.rootSelected(m.Path); !ok || v != m.Version {
1283 ld.error(fmt.Errorf("internal error: a requirement on %v is needed but was not added during package loading (selected %s)", m, v))
1284 }
1285 }
1286 }
1287
1288 ld.requirements = rs
1289 }
1290
1291 ld.exitIfErrors(ctx)
1292 }
1293
1294
1295 for _, pkg := range ld.pkgs {
1296 if pkg.err == nil {
1297 continue
1298 }
1299
1300
1301 if sumErr := (*ImportMissingSumError)(nil); errors.As(pkg.err, &sumErr) {
1302 if importer := pkg.stack; importer != nil {
1303 sumErr.importer = importer.path
1304 sumErr.importerVersion = importer.mod.Version
1305 sumErr.importerIsTest = importer.testOf != nil
1306 }
1307 }
1308
1309 if stdErr := (*ImportMissingError)(nil); errors.As(pkg.err, &stdErr) && stdErr.isStd {
1310
1311
1312 if importer := pkg.stack; importer != nil {
1313 if v, ok := rawGoVersion.Load(importer.mod); ok && gover.Compare(gover.Local(), v.(string)) < 0 {
1314 stdErr.importerGoVersion = v.(string)
1315 }
1316 }
1317 if ld.SilenceMissingStdImports {
1318 continue
1319 }
1320 }
1321 if ld.SilencePackageErrors {
1322 continue
1323 }
1324 if ld.SilenceNoGoErrors && errors.Is(pkg.err, imports.ErrNoGo) {
1325 continue
1326 }
1327
1328 ld.error(fmt.Errorf("%s: %w", pkg.stackText(), pkg.err))
1329 }
1330
1331 ld.checkMultiplePaths()
1332 return ld
1333 }
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354 func (ld *loader) updateRequirements(ctx context.Context) (changed bool, err error) {
1355 rs := ld.requirements
1356
1357
1358
1359 var direct map[string]bool
1360
1361
1362
1363
1364
1365 loadedDirect := ld.allPatternIsRoot && maps.Equal(ld.Tags, imports.AnyTags())
1366 if loadedDirect {
1367 direct = make(map[string]bool)
1368 } else {
1369
1370
1371
1372 direct = make(map[string]bool, len(rs.direct))
1373 for mPath := range rs.direct {
1374 direct[mPath] = true
1375 }
1376 }
1377
1378 var maxTooNew *gover.TooNewError
1379 for _, pkg := range ld.pkgs {
1380 if pkg.err != nil {
1381 if tooNew := (*gover.TooNewError)(nil); errors.As(pkg.err, &tooNew) {
1382 if maxTooNew == nil || gover.Compare(tooNew.GoVersion, maxTooNew.GoVersion) > 0 {
1383 maxTooNew = tooNew
1384 }
1385 }
1386 }
1387 if pkg.mod.Version != "" || !MainModules.Contains(pkg.mod.Path) {
1388 continue
1389 }
1390
1391 for _, dep := range pkg.imports {
1392 if !dep.fromExternalModule() {
1393 continue
1394 }
1395
1396 if inWorkspaceMode() {
1397
1398
1399
1400 if cfg.BuildMod == "vendor" {
1401
1402
1403
1404
1405
1406
1407 continue
1408 }
1409 if mg, err := rs.Graph(ctx); err != nil {
1410 return false, err
1411 } else if _, ok := mg.RequiredBy(dep.mod); !ok {
1412
1413
1414 pkg.err = &DirectImportFromImplicitDependencyError{
1415 ImporterPath: pkg.path,
1416 ImportedPath: dep.path,
1417 Module: dep.mod,
1418 }
1419 }
1420 } else if pkg.err == nil && cfg.BuildMod != "mod" {
1421 if v, ok := rs.rootSelected(dep.mod.Path); !ok || v != dep.mod.Version {
1422
1423
1424
1425
1426
1427
1428
1429
1430 pkg.err = &DirectImportFromImplicitDependencyError{
1431 ImporterPath: pkg.path,
1432 ImportedPath: dep.path,
1433 Module: dep.mod,
1434 }
1435
1436
1437 continue
1438 }
1439 }
1440
1441
1442
1443
1444 direct[dep.mod.Path] = true
1445 }
1446 }
1447 if maxTooNew != nil {
1448 return false, maxTooNew
1449 }
1450
1451 var addRoots []module.Version
1452 if ld.Tidy {
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487 tidy, err := tidyRoots(ctx, rs, ld.pkgs)
1488 if err != nil {
1489 return false, err
1490 }
1491 addRoots = tidy.rootModules
1492 }
1493
1494 rs, err = updateRoots(ctx, direct, rs, ld.pkgs, addRoots, ld.AssumeRootsImported)
1495 if err != nil {
1496
1497
1498 return false, err
1499 }
1500
1501 if rs.GoVersion() != ld.requirements.GoVersion() {
1502
1503
1504
1505
1506
1507 changed = true
1508 } else if rs != ld.requirements && !slices.Equal(rs.rootModules, ld.requirements.rootModules) {
1509
1510
1511
1512 mg, err := rs.Graph(ctx)
1513 if err != nil {
1514 return false, err
1515 }
1516 for _, pkg := range ld.pkgs {
1517 if pkg.fromExternalModule() && mg.Selected(pkg.mod.Path) != pkg.mod.Version {
1518 changed = true
1519 break
1520 }
1521 if pkg.err != nil {
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537 if _, _, _, _, err = importFromModules(ctx, pkg.path, rs, nil, ld.skipImportModFiles); err == nil {
1538 changed = true
1539 break
1540 }
1541 }
1542 }
1543 }
1544
1545 ld.requirements = rs
1546 return changed, nil
1547 }
1548
1549
1550
1551
1552
1553
1554
1555 func (ld *loader) resolveMissingImports(ctx context.Context) (modAddedBy map[module.Version]*loadPkg, err error) {
1556 type pkgMod struct {
1557 pkg *loadPkg
1558 mod *module.Version
1559 }
1560 var pkgMods []pkgMod
1561 for _, pkg := range ld.pkgs {
1562 if pkg.err == nil {
1563 continue
1564 }
1565 if pkg.isTest() {
1566
1567
1568 continue
1569 }
1570 if !errors.As(pkg.err, new(*ImportMissingError)) {
1571
1572 continue
1573 }
1574
1575 pkg := pkg
1576 var mod module.Version
1577 ld.work.Add(func() {
1578 var err error
1579 mod, err = queryImport(ctx, pkg.path, ld.requirements)
1580 if err != nil {
1581 var ime *ImportMissingError
1582 if errors.As(err, &ime) {
1583 for curstack := pkg.stack; curstack != nil; curstack = curstack.stack {
1584 if MainModules.Contains(curstack.mod.Path) {
1585 ime.ImportingMainModule = curstack.mod
1586 break
1587 }
1588 }
1589 }
1590
1591
1592
1593
1594
1595 pkg.err = err
1596 }
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609 })
1610
1611 pkgMods = append(pkgMods, pkgMod{pkg: pkg, mod: &mod})
1612 }
1613 <-ld.work.Idle()
1614
1615 modAddedBy = map[module.Version]*loadPkg{}
1616
1617 var (
1618 maxTooNew *gover.TooNewError
1619 maxTooNewPkg *loadPkg
1620 )
1621 for _, pm := range pkgMods {
1622 if tooNew := (*gover.TooNewError)(nil); errors.As(pm.pkg.err, &tooNew) {
1623 if maxTooNew == nil || gover.Compare(tooNew.GoVersion, maxTooNew.GoVersion) > 0 {
1624 maxTooNew = tooNew
1625 maxTooNewPkg = pm.pkg
1626 }
1627 }
1628 }
1629 if maxTooNew != nil {
1630 fmt.Fprintf(os.Stderr, "go: toolchain upgrade needed to resolve %s\n", maxTooNewPkg.path)
1631 return nil, maxTooNew
1632 }
1633
1634 for _, pm := range pkgMods {
1635 pkg, mod := pm.pkg, *pm.mod
1636 if mod.Path == "" {
1637 continue
1638 }
1639
1640 fmt.Fprintf(os.Stderr, "go: found %s in %s %s\n", pkg.path, mod.Path, mod.Version)
1641 if modAddedBy[mod] == nil {
1642 modAddedBy[mod] = pkg
1643 }
1644 }
1645
1646 return modAddedBy, nil
1647 }
1648
1649
1650
1651
1652
1653
1654
1655
1656 func (ld *loader) pkg(ctx context.Context, path string, flags loadPkgFlags) *loadPkg {
1657 if flags.has(pkgImportsLoaded) {
1658 panic("internal error: (*loader).pkg called with pkgImportsLoaded flag set")
1659 }
1660
1661 pkg := ld.pkgCache.Do(path, func() *loadPkg {
1662 pkg := &loadPkg{
1663 path: path,
1664 }
1665 ld.applyPkgFlags(ctx, pkg, flags)
1666
1667 ld.work.Add(func() { ld.load(ctx, pkg) })
1668 return pkg
1669 })
1670
1671 ld.applyPkgFlags(ctx, pkg, flags)
1672 return pkg
1673 }
1674
1675
1676
1677
1678 func (ld *loader) applyPkgFlags(ctx context.Context, pkg *loadPkg, flags loadPkgFlags) {
1679 if flags == 0 {
1680 return
1681 }
1682
1683 if flags.has(pkgInAll) && ld.allPatternIsRoot && !pkg.isTest() {
1684
1685 flags |= pkgIsRoot
1686 }
1687 if flags.has(pkgIsRoot) {
1688 flags |= pkgFromRoot
1689 }
1690
1691 old := pkg.flags.update(flags)
1692 new := old | flags
1693 if new == old || !new.has(pkgImportsLoaded) {
1694
1695
1696
1697 return
1698 }
1699
1700 if !pkg.isTest() {
1701
1702
1703
1704 wantTest := false
1705 switch {
1706 case ld.allPatternIsRoot && MainModules.Contains(pkg.mod.Path):
1707
1708
1709
1710
1711
1712 wantTest = true
1713
1714 case ld.allPatternIsRoot && ld.allClosesOverTests && new.has(pkgInAll):
1715
1716
1717
1718 wantTest = true
1719
1720 case ld.LoadTests && new.has(pkgIsRoot):
1721
1722 wantTest = true
1723 }
1724
1725 if wantTest {
1726 var testFlags loadPkgFlags
1727 if MainModules.Contains(pkg.mod.Path) || (ld.allClosesOverTests && new.has(pkgInAll)) {
1728
1729
1730
1731 testFlags |= pkgInAll
1732 }
1733 ld.pkgTest(ctx, pkg, testFlags)
1734 }
1735 }
1736
1737 if new.has(pkgInAll) && !old.has(pkgInAll|pkgImportsLoaded) {
1738
1739
1740 for _, dep := range pkg.imports {
1741 ld.applyPkgFlags(ctx, dep, pkgInAll)
1742 }
1743 }
1744
1745 if new.has(pkgFromRoot) && !old.has(pkgFromRoot|pkgImportsLoaded) {
1746 for _, dep := range pkg.imports {
1747 ld.applyPkgFlags(ctx, dep, pkgFromRoot)
1748 }
1749 }
1750 }
1751
1752
1753
1754
1755 func (ld *loader) preloadRootModules(ctx context.Context, rootPkgs []string) (changedBuildList bool) {
1756 needc := make(chan map[module.Version]bool, 1)
1757 needc <- map[module.Version]bool{}
1758 for _, path := range rootPkgs {
1759 path := path
1760 ld.work.Add(func() {
1761
1762
1763
1764
1765
1766 m, _, _, _, err := importFromModules(ctx, path, ld.requirements, nil, ld.skipImportModFiles)
1767 if err != nil {
1768 var missing *ImportMissingError
1769 if errors.As(err, &missing) && ld.ResolveMissingImports {
1770
1771
1772 m, err = queryImport(ctx, path, ld.requirements)
1773 }
1774 if err != nil {
1775
1776
1777 return
1778 }
1779 }
1780 if m.Path == "" {
1781
1782 return
1783 }
1784
1785 v, ok := ld.requirements.rootSelected(m.Path)
1786 if !ok || v != m.Version {
1787
1788
1789
1790
1791
1792
1793
1794 need := <-needc
1795 need[m] = true
1796 needc <- need
1797 }
1798 })
1799 }
1800 <-ld.work.Idle()
1801
1802 need := <-needc
1803 if len(need) == 0 {
1804 return false
1805 }
1806
1807 toAdd := make([]module.Version, 0, len(need))
1808 for m := range need {
1809 toAdd = append(toAdd, m)
1810 }
1811 gover.ModSort(toAdd)
1812
1813 rs, err := updateRoots(ctx, ld.requirements.direct, ld.requirements, nil, toAdd, ld.AssumeRootsImported)
1814 if err != nil {
1815
1816
1817
1818 ld.error(err)
1819 ld.exitIfErrors(ctx)
1820 return false
1821 }
1822 if slices.Equal(rs.rootModules, ld.requirements.rootModules) {
1823
1824
1825
1826
1827 panic(fmt.Sprintf("internal error: adding %v to module graph had no effect on root requirements (%v)", toAdd, rs.rootModules))
1828 }
1829
1830 ld.requirements = rs
1831 return true
1832 }
1833
1834
1835 func (ld *loader) load(ctx context.Context, pkg *loadPkg) {
1836 var mg *ModuleGraph
1837 if ld.requirements.pruning == unpruned {
1838 var err error
1839 mg, err = ld.requirements.Graph(ctx)
1840 if err != nil {
1841
1842
1843
1844
1845
1846
1847
1848
1849 mg = nil
1850 }
1851 }
1852
1853 var modroot string
1854 pkg.mod, modroot, pkg.dir, pkg.altMods, pkg.err = importFromModules(ctx, pkg.path, ld.requirements, mg, ld.skipImportModFiles)
1855 if MainModules.Tools()[pkg.path] {
1856
1857
1858
1859 ld.applyPkgFlags(ctx, pkg, pkgInAll)
1860 }
1861 if pkg.dir == "" {
1862 return
1863 }
1864 if MainModules.Contains(pkg.mod.Path) {
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874 ld.applyPkgFlags(ctx, pkg, pkgInAll)
1875 }
1876 if ld.AllowPackage != nil {
1877 if err := ld.AllowPackage(ctx, pkg.path, pkg.mod); err != nil {
1878 pkg.err = err
1879 }
1880 }
1881
1882 pkg.inStd = (search.IsStandardImportPath(pkg.path) && search.InDir(pkg.dir, cfg.GOROOTsrc) != "")
1883
1884 var imports, testImports []string
1885
1886 if cfg.BuildContext.Compiler == "gccgo" && pkg.inStd {
1887
1888 } else {
1889 var err error
1890 imports, testImports, err = scanDir(modroot, pkg.dir, ld.Tags)
1891 if err != nil {
1892 pkg.err = err
1893 return
1894 }
1895 }
1896
1897 pkg.imports = make([]*loadPkg, 0, len(imports))
1898 var importFlags loadPkgFlags
1899 if pkg.flags.has(pkgInAll) {
1900 importFlags = pkgInAll
1901 }
1902 for _, path := range imports {
1903 if pkg.inStd {
1904
1905
1906 path = ld.stdVendor(pkg.path, path)
1907 }
1908 pkg.imports = append(pkg.imports, ld.pkg(ctx, path, importFlags))
1909 }
1910 pkg.testImports = testImports
1911
1912 ld.applyPkgFlags(ctx, pkg, pkgImportsLoaded)
1913 }
1914
1915
1916
1917
1918
1919
1920 func (ld *loader) pkgTest(ctx context.Context, pkg *loadPkg, testFlags loadPkgFlags) *loadPkg {
1921 if pkg.isTest() {
1922 panic("pkgTest called on a test package")
1923 }
1924
1925 createdTest := false
1926 pkg.testOnce.Do(func() {
1927 pkg.test = &loadPkg{
1928 path: pkg.path,
1929 testOf: pkg,
1930 mod: pkg.mod,
1931 dir: pkg.dir,
1932 err: pkg.err,
1933 inStd: pkg.inStd,
1934 }
1935 ld.applyPkgFlags(ctx, pkg.test, testFlags)
1936 createdTest = true
1937 })
1938
1939 test := pkg.test
1940 if createdTest {
1941 test.imports = make([]*loadPkg, 0, len(pkg.testImports))
1942 var importFlags loadPkgFlags
1943 if test.flags.has(pkgInAll) {
1944 importFlags = pkgInAll
1945 }
1946 for _, path := range pkg.testImports {
1947 if pkg.inStd {
1948 path = ld.stdVendor(test.path, path)
1949 }
1950 test.imports = append(test.imports, ld.pkg(ctx, path, importFlags))
1951 }
1952 pkg.testImports = nil
1953 ld.applyPkgFlags(ctx, test, pkgImportsLoaded)
1954 } else {
1955 ld.applyPkgFlags(ctx, test, testFlags)
1956 }
1957
1958 return test
1959 }
1960
1961
1962
1963 func (ld *loader) stdVendor(parentPath, path string) string {
1964 if p, _, ok := fips140.ResolveImport(path); ok {
1965 return p
1966 }
1967 if search.IsStandardImportPath(path) {
1968 return path
1969 }
1970
1971 if str.HasPathPrefix(parentPath, "cmd") {
1972 if !ld.VendorModulesInGOROOTSrc || !MainModules.Contains("cmd") {
1973 vendorPath := pathpkg.Join("cmd", "vendor", path)
1974
1975 if _, err := os.Stat(filepath.Join(cfg.GOROOTsrc, filepath.FromSlash(vendorPath))); err == nil {
1976 return vendorPath
1977 }
1978 }
1979 } else if !ld.VendorModulesInGOROOTSrc || !MainModules.Contains("std") || str.HasPathPrefix(parentPath, "vendor") {
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992 vendorPath := pathpkg.Join("vendor", path)
1993 if _, err := os.Stat(filepath.Join(cfg.GOROOTsrc, filepath.FromSlash(vendorPath))); err == nil {
1994 return vendorPath
1995 }
1996 }
1997
1998
1999 return path
2000 }
2001
2002
2003
2004 func (ld *loader) computePatternAll() (all []string) {
2005 for _, pkg := range ld.pkgs {
2006 if pkg.flags.has(pkgInAll) && !pkg.isTest() {
2007 all = append(all, pkg.path)
2008 }
2009 }
2010 sort.Strings(all)
2011 return all
2012 }
2013
2014
2015
2016
2017
2018 func (ld *loader) checkMultiplePaths() {
2019 mods := ld.requirements.rootModules
2020 if cached := ld.requirements.graph.Load(); cached != nil {
2021 if mg := cached.mg; mg != nil {
2022 mods = mg.BuildList()
2023 }
2024 }
2025
2026 firstPath := map[module.Version]string{}
2027 for _, mod := range mods {
2028 src := resolveReplacement(mod)
2029 if prev, ok := firstPath[src]; !ok {
2030 firstPath[src] = mod.Path
2031 } else if prev != mod.Path {
2032 ld.error(fmt.Errorf("%s@%s used for two different module paths (%s and %s)", src.Path, src.Version, prev, mod.Path))
2033 }
2034 }
2035 }
2036
2037
2038
2039 func (ld *loader) checkTidyCompatibility(ctx context.Context, rs *Requirements, compatVersion string) {
2040 goVersion := rs.GoVersion()
2041 suggestUpgrade := false
2042 suggestEFlag := false
2043 suggestFixes := func() {
2044 if ld.AllowErrors {
2045
2046
2047 return
2048 }
2049
2050
2051
2052
2053
2054 fmt.Fprintln(os.Stderr)
2055
2056 goFlag := ""
2057 if goVersion != MainModules.GoVersion() {
2058 goFlag = " -go=" + goVersion
2059 }
2060
2061 compatFlag := ""
2062 if compatVersion != gover.Prev(goVersion) {
2063 compatFlag = " -compat=" + compatVersion
2064 }
2065 if suggestUpgrade {
2066 eDesc := ""
2067 eFlag := ""
2068 if suggestEFlag {
2069 eDesc = ", leaving some packages unresolved"
2070 eFlag = " -e"
2071 }
2072 fmt.Fprintf(os.Stderr, "To upgrade to the versions selected by go %s%s:\n\tgo mod tidy%s -go=%s && go mod tidy%s -go=%s%s\n", compatVersion, eDesc, eFlag, compatVersion, eFlag, goVersion, compatFlag)
2073 } else if suggestEFlag {
2074
2075
2076
2077
2078 fmt.Fprintf(os.Stderr, "To proceed despite packages unresolved in go %s:\n\tgo mod tidy -e%s%s\n", compatVersion, goFlag, compatFlag)
2079 }
2080
2081 fmt.Fprintf(os.Stderr, "If reproducibility with go %s is not needed:\n\tgo mod tidy%s -compat=%s\n", compatVersion, goFlag, goVersion)
2082
2083
2084 fmt.Fprintf(os.Stderr, "For other options, see:\n\thttps://golang.org/doc/modules/pruning\n")
2085 }
2086
2087 mg, err := rs.Graph(ctx)
2088 if err != nil {
2089 ld.error(fmt.Errorf("error loading go %s module graph: %w", compatVersion, err))
2090 ld.switchIfErrors(ctx)
2091 suggestFixes()
2092 ld.exitIfErrors(ctx)
2093 return
2094 }
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110 type mismatch struct {
2111 mod module.Version
2112 err error
2113 }
2114 mismatchMu := make(chan map[*loadPkg]mismatch, 1)
2115 mismatchMu <- map[*loadPkg]mismatch{}
2116 for _, pkg := range ld.pkgs {
2117 if pkg.mod.Path == "" && pkg.err == nil {
2118
2119
2120 continue
2121 }
2122
2123 pkg := pkg
2124 ld.work.Add(func() {
2125 mod, _, _, _, err := importFromModules(ctx, pkg.path, rs, mg, ld.skipImportModFiles)
2126 if mod != pkg.mod {
2127 mismatches := <-mismatchMu
2128 mismatches[pkg] = mismatch{mod: mod, err: err}
2129 mismatchMu <- mismatches
2130 }
2131 })
2132 }
2133 <-ld.work.Idle()
2134
2135 mismatches := <-mismatchMu
2136 if len(mismatches) == 0 {
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148 for _, m := range ld.requirements.rootModules {
2149 if v := mg.Selected(m.Path); v != m.Version {
2150 fmt.Fprintln(os.Stderr)
2151 base.Fatalf("go: internal error: failed to diagnose selected-version mismatch for module %s: go %s selects %s, but go %s selects %s\n\tPlease report this at https://golang.org/issue.", m.Path, goVersion, m.Version, compatVersion, v)
2152 }
2153 }
2154 return
2155 }
2156
2157
2158
2159 for _, pkg := range ld.pkgs {
2160 mismatch, ok := mismatches[pkg]
2161 if !ok {
2162 continue
2163 }
2164
2165 if pkg.isTest() {
2166
2167
2168 if _, ok := mismatches[pkg.testOf]; !ok {
2169 base.Fatalf("go: internal error: mismatch recorded for test %s, but not its non-test package", pkg.path)
2170 }
2171 continue
2172 }
2173
2174 switch {
2175 case mismatch.err != nil:
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187 if missing := (*ImportMissingError)(nil); errors.As(mismatch.err, &missing) {
2188 selected := module.Version{
2189 Path: pkg.mod.Path,
2190 Version: mg.Selected(pkg.mod.Path),
2191 }
2192 ld.error(fmt.Errorf("%s loaded from %v,\n\tbut go %s would fail to locate it in %s", pkg.stackText(), pkg.mod, compatVersion, selected))
2193 } else {
2194 if ambiguous := (*AmbiguousImportError)(nil); errors.As(mismatch.err, &ambiguous) {
2195
2196 }
2197 ld.error(fmt.Errorf("%s loaded from %v,\n\tbut go %s would fail to locate it:\n\t%v", pkg.stackText(), pkg.mod, compatVersion, mismatch.err))
2198 }
2199
2200 suggestEFlag = true
2201
2202
2203
2204
2205
2206
2207
2208
2209 if !suggestUpgrade {
2210 for _, m := range ld.requirements.rootModules {
2211 if v := mg.Selected(m.Path); v != m.Version {
2212 suggestUpgrade = true
2213 break
2214 }
2215 }
2216 }
2217
2218 case pkg.err != nil:
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234 suggestUpgrade = true
2235 ld.error(fmt.Errorf("%s failed to load from any module,\n\tbut go %s would load it from %v", pkg.path, compatVersion, mismatch.mod))
2236
2237 case pkg.mod != mismatch.mod:
2238
2239
2240
2241
2242 suggestUpgrade = true
2243 ld.error(fmt.Errorf("%s loaded from %v,\n\tbut go %s would select %v\n", pkg.stackText(), pkg.mod, compatVersion, mismatch.mod.Version))
2244
2245 default:
2246 base.Fatalf("go: internal error: mismatch recorded for package %s, but no differences found", pkg.path)
2247 }
2248 }
2249
2250 ld.switchIfErrors(ctx)
2251 suggestFixes()
2252 ld.exitIfErrors(ctx)
2253 }
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267 func scanDir(modroot string, dir string, tags map[string]bool) (imports_, testImports []string, err error) {
2268 if ip, mierr := modindex.GetPackage(modroot, dir); mierr == nil {
2269 imports_, testImports, err = ip.ScanDir(tags)
2270 goto Happy
2271 } else if !errors.Is(mierr, modindex.ErrNotIndexed) {
2272 return nil, nil, mierr
2273 }
2274
2275 imports_, testImports, err = imports.ScanDir(dir, tags)
2276 Happy:
2277
2278 filter := func(x []string) []string {
2279 w := 0
2280 for _, pkg := range x {
2281 if pkg != "C" && pkg != "appengine" && !strings.HasPrefix(pkg, "appengine/") &&
2282 pkg != "appengine_internal" && !strings.HasPrefix(pkg, "appengine_internal/") {
2283 x[w] = pkg
2284 w++
2285 }
2286 }
2287 return x[:w]
2288 }
2289
2290 return filter(imports_), filter(testImports), err
2291 }
2292
2293
2294
2295
2296
2297
2298
2299
2300 func (ld *loader) buildStacks() {
2301 if len(ld.pkgs) > 0 {
2302 panic("buildStacks")
2303 }
2304 for _, pkg := range ld.roots {
2305 pkg.stack = pkg
2306 ld.pkgs = append(ld.pkgs, pkg)
2307 }
2308 for i := 0; i < len(ld.pkgs); i++ {
2309 pkg := ld.pkgs[i]
2310 for _, next := range pkg.imports {
2311 if next.stack == nil {
2312 next.stack = pkg
2313 ld.pkgs = append(ld.pkgs, next)
2314 }
2315 }
2316 if next := pkg.test; next != nil && next.stack == nil {
2317 next.stack = pkg
2318 ld.pkgs = append(ld.pkgs, next)
2319 }
2320 }
2321 for _, pkg := range ld.roots {
2322 pkg.stack = nil
2323 }
2324 }
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334 func (pkg *loadPkg) stackText() string {
2335 var stack []*loadPkg
2336 for p := pkg; p != nil; p = p.stack {
2337 stack = append(stack, p)
2338 }
2339
2340 var buf strings.Builder
2341 for i := len(stack) - 1; i >= 0; i-- {
2342 p := stack[i]
2343 fmt.Fprint(&buf, p.path)
2344 if p.testOf != nil {
2345 fmt.Fprint(&buf, ".test")
2346 }
2347 if i > 0 {
2348 if stack[i-1].testOf == p {
2349 fmt.Fprint(&buf, " tested by\n\t")
2350 } else {
2351 fmt.Fprint(&buf, " imports\n\t")
2352 }
2353 }
2354 }
2355 return buf.String()
2356 }
2357
2358
2359
2360 func (pkg *loadPkg) why() string {
2361 var buf strings.Builder
2362 var stack []*loadPkg
2363 for p := pkg; p != nil; p = p.stack {
2364 stack = append(stack, p)
2365 }
2366
2367 for i := len(stack) - 1; i >= 0; i-- {
2368 p := stack[i]
2369 if p.testOf != nil {
2370 fmt.Fprintf(&buf, "%s.test\n", p.testOf.path)
2371 } else {
2372 fmt.Fprintf(&buf, "%s\n", p.path)
2373 }
2374 }
2375 return buf.String()
2376 }
2377
2378
2379
2380
2381
2382
2383 func Why(path string) string {
2384 pkg, ok := loaded.pkgCache.Get(path)
2385 if !ok {
2386 return ""
2387 }
2388 return pkg.why()
2389 }
2390
2391
2392
2393
2394 func WhyDepth(path string) int {
2395 n := 0
2396 pkg, _ := loaded.pkgCache.Get(path)
2397 for p := pkg; p != nil; p = p.stack {
2398 n++
2399 }
2400 return n
2401 }
2402
View as plain text