1
2
3
4
5 package modload
6
7 import (
8 "bytes"
9 "context"
10 "encoding/json"
11 "errors"
12 "fmt"
13 "internal/godebugs"
14 "internal/lazyregexp"
15 "io"
16 "os"
17 "path"
18 "path/filepath"
19 "slices"
20 "strconv"
21 "strings"
22 "sync"
23
24 "cmd/go/internal/base"
25 "cmd/go/internal/cfg"
26 "cmd/go/internal/fips140"
27 "cmd/go/internal/fsys"
28 "cmd/go/internal/gover"
29 "cmd/go/internal/lockedfile"
30 "cmd/go/internal/modfetch"
31 "cmd/go/internal/search"
32
33 "golang.org/x/mod/modfile"
34 "golang.org/x/mod/module"
35 )
36
37
38
39
40 var (
41
42 RootMode Root
43
44
45
46 ForceUseModules bool
47
48 allowMissingModuleImports bool
49
50
51
52
53
54
55
56
57
58 ExplicitWriteGoMod bool
59 )
60
61
62 var (
63 initialized bool
64
65
66
67
68
69
70 modRoots []string
71 gopath string
72 )
73
74
75 func EnterModule(ctx context.Context, enterModroot string) {
76 MainModules = nil
77 requirements = nil
78 workFilePath = ""
79 modfetch.Reset()
80
81 modRoots = []string{enterModroot}
82 LoadModFile(ctx)
83 }
84
85
86 var (
87
88 workFilePath string
89 )
90
91 type MainModuleSet struct {
92
93
94
95
96 versions []module.Version
97
98
99 modRoot map[module.Version]string
100
101
102
103
104 pathPrefix map[module.Version]string
105
106
107
108 inGorootSrc map[module.Version]bool
109
110 modFiles map[module.Version]*modfile.File
111
112 tools map[string]bool
113
114 modContainingCWD module.Version
115
116 workFile *modfile.WorkFile
117
118 workFileReplaceMap map[module.Version]module.Version
119
120 highestReplaced map[string]string
121
122 indexMu sync.Mutex
123 indices map[module.Version]*modFileIndex
124 }
125
126 func (mms *MainModuleSet) PathPrefix(m module.Version) string {
127 return mms.pathPrefix[m]
128 }
129
130
131
132
133
134 func (mms *MainModuleSet) Versions() []module.Version {
135 if mms == nil {
136 return nil
137 }
138 return mms.versions
139 }
140
141
142
143 func (mms *MainModuleSet) Tools() map[string]bool {
144 if mms == nil {
145 return nil
146 }
147 return mms.tools
148 }
149
150 func (mms *MainModuleSet) Contains(path string) bool {
151 if mms == nil {
152 return false
153 }
154 for _, v := range mms.versions {
155 if v.Path == path {
156 return true
157 }
158 }
159 return false
160 }
161
162 func (mms *MainModuleSet) ModRoot(m module.Version) string {
163 if mms == nil {
164 return ""
165 }
166 return mms.modRoot[m]
167 }
168
169 func (mms *MainModuleSet) InGorootSrc(m module.Version) bool {
170 if mms == nil {
171 return false
172 }
173 return mms.inGorootSrc[m]
174 }
175
176 func (mms *MainModuleSet) mustGetSingleMainModule() module.Version {
177 if mms == nil || len(mms.versions) == 0 {
178 panic("internal error: mustGetSingleMainModule called in context with no main modules")
179 }
180 if len(mms.versions) != 1 {
181 if inWorkspaceMode() {
182 panic("internal error: mustGetSingleMainModule called in workspace mode")
183 } else {
184 panic("internal error: multiple main modules present outside of workspace mode")
185 }
186 }
187 return mms.versions[0]
188 }
189
190 func (mms *MainModuleSet) GetSingleIndexOrNil() *modFileIndex {
191 if mms == nil {
192 return nil
193 }
194 if len(mms.versions) == 0 {
195 return nil
196 }
197 return mms.indices[mms.mustGetSingleMainModule()]
198 }
199
200 func (mms *MainModuleSet) Index(m module.Version) *modFileIndex {
201 mms.indexMu.Lock()
202 defer mms.indexMu.Unlock()
203 return mms.indices[m]
204 }
205
206 func (mms *MainModuleSet) SetIndex(m module.Version, index *modFileIndex) {
207 mms.indexMu.Lock()
208 defer mms.indexMu.Unlock()
209 mms.indices[m] = index
210 }
211
212 func (mms *MainModuleSet) ModFile(m module.Version) *modfile.File {
213 return mms.modFiles[m]
214 }
215
216 func (mms *MainModuleSet) WorkFile() *modfile.WorkFile {
217 return mms.workFile
218 }
219
220 func (mms *MainModuleSet) Len() int {
221 if mms == nil {
222 return 0
223 }
224 return len(mms.versions)
225 }
226
227
228
229
230 func (mms *MainModuleSet) ModContainingCWD() module.Version {
231 return mms.modContainingCWD
232 }
233
234 func (mms *MainModuleSet) HighestReplaced() map[string]string {
235 return mms.highestReplaced
236 }
237
238
239
240 func (mms *MainModuleSet) GoVersion() string {
241 if inWorkspaceMode() {
242 return gover.FromGoWork(mms.workFile)
243 }
244 if mms != nil && len(mms.versions) == 1 {
245 f := mms.ModFile(mms.mustGetSingleMainModule())
246 if f == nil {
247
248
249
250 return gover.Local()
251 }
252 return gover.FromGoMod(f)
253 }
254 return gover.DefaultGoModVersion
255 }
256
257
258
259
260 func (mms *MainModuleSet) Godebugs() []*modfile.Godebug {
261 if inWorkspaceMode() {
262 if mms.workFile != nil {
263 return mms.workFile.Godebug
264 }
265 return nil
266 }
267 if mms != nil && len(mms.versions) == 1 {
268 f := mms.ModFile(mms.mustGetSingleMainModule())
269 if f == nil {
270
271 return nil
272 }
273 return f.Godebug
274 }
275 return nil
276 }
277
278
279
280 func (mms *MainModuleSet) Toolchain() string {
281 if inWorkspaceMode() {
282 if mms.workFile != nil && mms.workFile.Toolchain != nil {
283 return mms.workFile.Toolchain.Name
284 }
285 return "go" + mms.GoVersion()
286 }
287 if mms != nil && len(mms.versions) == 1 {
288 f := mms.ModFile(mms.mustGetSingleMainModule())
289 if f == nil {
290
291
292
293 return gover.LocalToolchain()
294 }
295 if f.Toolchain != nil {
296 return f.Toolchain.Name
297 }
298 }
299 return "go" + mms.GoVersion()
300 }
301
302 func (mms *MainModuleSet) WorkFileReplaceMap() map[module.Version]module.Version {
303 return mms.workFileReplaceMap
304 }
305
306 var MainModules *MainModuleSet
307
308 type Root int
309
310 const (
311
312
313
314
315 AutoRoot Root = iota
316
317
318
319 NoRoot
320
321
322
323 NeedRoot
324 )
325
326
327
328
329
330
331
332
333
334 func ModFile() *modfile.File {
335 Init()
336 modFile := MainModules.ModFile(MainModules.mustGetSingleMainModule())
337 if modFile == nil {
338 die()
339 }
340 return modFile
341 }
342
343 func BinDir() string {
344 Init()
345 if cfg.GOBIN != "" {
346 return cfg.GOBIN
347 }
348 if gopath == "" {
349 return ""
350 }
351 return filepath.Join(gopath, "bin")
352 }
353
354
355
356
357 func InitWorkfile() {
358
359 fips140.Init()
360 if err := fsys.Init(); err != nil {
361 base.Fatal(err)
362 }
363 workFilePath = FindGoWork(base.Cwd())
364 }
365
366
367
368
369
370
371 func FindGoWork(wd string) string {
372 if RootMode == NoRoot {
373 return ""
374 }
375
376 switch gowork := cfg.Getenv("GOWORK"); gowork {
377 case "off":
378 return ""
379 case "", "auto":
380 return findWorkspaceFile(wd)
381 default:
382 if !filepath.IsAbs(gowork) {
383 base.Fatalf("go: invalid GOWORK: not an absolute path")
384 }
385 return gowork
386 }
387 }
388
389
390
391 func WorkFilePath() string {
392 return workFilePath
393 }
394
395
396
397 func Reset() {
398 initialized = false
399 ForceUseModules = false
400 RootMode = 0
401 modRoots = nil
402 cfg.ModulesEnabled = false
403 MainModules = nil
404 requirements = nil
405 workFilePath = ""
406 modfetch.Reset()
407 }
408
409
410
411
412
413 func Init() {
414 if initialized {
415 return
416 }
417 initialized = true
418
419 fips140.Init()
420
421
422
423
424 var mustUseModules bool
425 env := cfg.Getenv("GO111MODULE")
426 switch env {
427 default:
428 base.Fatalf("go: unknown environment setting GO111MODULE=%s", env)
429 case "auto":
430 mustUseModules = ForceUseModules
431 case "on", "":
432 mustUseModules = true
433 case "off":
434 if ForceUseModules {
435 base.Fatalf("go: modules disabled by GO111MODULE=off; see 'go help modules'")
436 }
437 mustUseModules = false
438 return
439 }
440
441 if err := fsys.Init(); err != nil {
442 base.Fatal(err)
443 }
444
445
446
447
448
449
450
451 if os.Getenv("GIT_TERMINAL_PROMPT") == "" {
452 os.Setenv("GIT_TERMINAL_PROMPT", "0")
453 }
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468 if os.Getenv("GIT_SSH") == "" && os.Getenv("GIT_SSH_COMMAND") == "" {
469 os.Setenv("GIT_SSH_COMMAND", "ssh -o ControlMaster=no -o BatchMode=yes")
470 }
471
472 if os.Getenv("GCM_INTERACTIVE") == "" {
473 os.Setenv("GCM_INTERACTIVE", "never")
474 }
475 if modRoots != nil {
476
477
478 } else if RootMode == NoRoot {
479 if cfg.ModFile != "" && !base.InGOFLAGS("-modfile") {
480 base.Fatalf("go: -modfile cannot be used with commands that ignore the current module")
481 }
482 modRoots = nil
483 } else if workFilePath != "" {
484
485 if cfg.ModFile != "" {
486 base.Fatalf("go: -modfile cannot be used in workspace mode")
487 }
488 } else {
489 if modRoot := findModuleRoot(base.Cwd()); modRoot == "" {
490 if cfg.ModFile != "" {
491 base.Fatalf("go: cannot find main module, but -modfile was set.\n\t-modfile cannot be used to set the module root directory.")
492 }
493 if RootMode == NeedRoot {
494 base.Fatal(ErrNoModRoot)
495 }
496 if !mustUseModules {
497
498
499 return
500 }
501 } else if search.InDir(modRoot, os.TempDir()) == "." {
502
503
504
505
506
507 fmt.Fprintf(os.Stderr, "go: warning: ignoring go.mod in system temp root %v\n", os.TempDir())
508 if RootMode == NeedRoot {
509 base.Fatal(ErrNoModRoot)
510 }
511 if !mustUseModules {
512 return
513 }
514 } else {
515 modRoots = []string{modRoot}
516 }
517 }
518 if cfg.ModFile != "" && !strings.HasSuffix(cfg.ModFile, ".mod") {
519 base.Fatalf("go: -modfile=%s: file does not have .mod extension", cfg.ModFile)
520 }
521
522
523 cfg.ModulesEnabled = true
524 setDefaultBuildMod()
525 list := filepath.SplitList(cfg.BuildContext.GOPATH)
526 if len(list) > 0 && list[0] != "" {
527 gopath = list[0]
528 if _, err := fsys.Stat(filepath.Join(gopath, "go.mod")); err == nil {
529 fmt.Fprintf(os.Stderr, "go: warning: ignoring go.mod in $GOPATH %v\n", gopath)
530 if RootMode == NeedRoot {
531 base.Fatal(ErrNoModRoot)
532 }
533 if !mustUseModules {
534 return
535 }
536 }
537 }
538 }
539
540
541
542
543
544
545
546
547
548
549 func WillBeEnabled() bool {
550 if modRoots != nil || cfg.ModulesEnabled {
551
552 return true
553 }
554 if initialized {
555
556 return false
557 }
558
559
560
561 env := cfg.Getenv("GO111MODULE")
562 switch env {
563 case "on", "":
564 return true
565 case "auto":
566 break
567 default:
568 return false
569 }
570
571 return FindGoMod(base.Cwd()) != ""
572 }
573
574
575
576
577
578
579 func FindGoMod(wd string) string {
580 modRoot := findModuleRoot(wd)
581 if modRoot == "" {
582
583
584 return ""
585 }
586 if search.InDir(modRoot, os.TempDir()) == "." {
587
588
589
590
591
592 return ""
593 }
594 return filepath.Join(modRoot, "go.mod")
595 }
596
597
598
599
600
601 func Enabled() bool {
602 Init()
603 return modRoots != nil || cfg.ModulesEnabled
604 }
605
606 func VendorDir() string {
607 if inWorkspaceMode() {
608 return filepath.Join(filepath.Dir(WorkFilePath()), "vendor")
609 }
610
611
612
613 modRoot := MainModules.ModRoot(MainModules.mustGetSingleMainModule())
614 if modRoot == "" {
615 panic("vendor directory does not exist when in single module mode outside of a module")
616 }
617 return filepath.Join(modRoot, "vendor")
618 }
619
620 func inWorkspaceMode() bool {
621 if !initialized {
622 panic("inWorkspaceMode called before modload.Init called")
623 }
624 if !Enabled() {
625 return false
626 }
627 return workFilePath != ""
628 }
629
630
631
632
633 func HasModRoot() bool {
634 Init()
635 return modRoots != nil
636 }
637
638
639
640 func MustHaveModRoot() {
641 Init()
642 if !HasModRoot() {
643 die()
644 }
645 }
646
647
648
649
650 func ModFilePath() string {
651 MustHaveModRoot()
652 return modFilePath(findModuleRoot(base.Cwd()))
653 }
654
655 func modFilePath(modRoot string) string {
656 if cfg.ModFile != "" {
657 return cfg.ModFile
658 }
659 return filepath.Join(modRoot, "go.mod")
660 }
661
662 func die() {
663 if cfg.Getenv("GO111MODULE") == "off" {
664 base.Fatalf("go: modules disabled by GO111MODULE=off; see 'go help modules'")
665 }
666 if inWorkspaceMode() {
667 base.Fatalf("go: no modules were found in the current workspace; see 'go help work'")
668 }
669 if dir, name := findAltConfig(base.Cwd()); dir != "" {
670 rel, err := filepath.Rel(base.Cwd(), dir)
671 if err != nil {
672 rel = dir
673 }
674 cdCmd := ""
675 if rel != "." {
676 cdCmd = fmt.Sprintf("cd %s && ", rel)
677 }
678 base.Fatalf("go: cannot find main module, but found %s in %s\n\tto create a module there, run:\n\t%sgo mod init", name, dir, cdCmd)
679 }
680 base.Fatal(ErrNoModRoot)
681 }
682
683 var ErrNoModRoot = errors.New("go.mod file not found in current directory or any parent directory; see 'go help modules'")
684
685 type goModDirtyError struct{}
686
687 func (goModDirtyError) Error() string {
688 if cfg.BuildModExplicit {
689 return fmt.Sprintf("updates to go.mod needed, disabled by -mod=%v; to update it:\n\tgo mod tidy", cfg.BuildMod)
690 }
691 if cfg.BuildModReason != "" {
692 return fmt.Sprintf("updates to go.mod needed, disabled by -mod=%s\n\t(%s)\n\tto update it:\n\tgo mod tidy", cfg.BuildMod, cfg.BuildModReason)
693 }
694 return "updates to go.mod needed; to update it:\n\tgo mod tidy"
695 }
696
697 var errGoModDirty error = goModDirtyError{}
698
699 func loadWorkFile(path string) (workFile *modfile.WorkFile, modRoots []string, err error) {
700 workDir := filepath.Dir(path)
701 wf, err := ReadWorkFile(path)
702 if err != nil {
703 return nil, nil, err
704 }
705 seen := map[string]bool{}
706 for _, d := range wf.Use {
707 modRoot := d.Path
708 if !filepath.IsAbs(modRoot) {
709 modRoot = filepath.Join(workDir, modRoot)
710 }
711
712 if seen[modRoot] {
713 return nil, nil, fmt.Errorf("error loading go.work:\n%s:%d: path %s appears multiple times in workspace", base.ShortPath(path), d.Syntax.Start.Line, modRoot)
714 }
715 seen[modRoot] = true
716 modRoots = append(modRoots, modRoot)
717 }
718
719 for _, g := range wf.Godebug {
720 if err := CheckGodebug("godebug", g.Key, g.Value); err != nil {
721 return nil, nil, fmt.Errorf("error loading go.work:\n%s:%d: %w", base.ShortPath(path), g.Syntax.Start.Line, err)
722 }
723 }
724
725 return wf, modRoots, nil
726 }
727
728
729 func ReadWorkFile(path string) (*modfile.WorkFile, error) {
730 path = base.ShortPath(path)
731 workData, err := fsys.ReadFile(path)
732 if err != nil {
733 return nil, fmt.Errorf("reading go.work: %w", err)
734 }
735
736 f, err := modfile.ParseWork(path, workData, nil)
737 if err != nil {
738 return nil, fmt.Errorf("errors parsing go.work:\n%w", err)
739 }
740 if f.Go != nil && gover.Compare(f.Go.Version, gover.Local()) > 0 && cfg.CmdName != "work edit" {
741 base.Fatal(&gover.TooNewError{What: base.ShortPath(path), GoVersion: f.Go.Version})
742 }
743 return f, nil
744 }
745
746
747 func WriteWorkFile(path string, wf *modfile.WorkFile) error {
748 wf.SortBlocks()
749 wf.Cleanup()
750 out := modfile.Format(wf.Syntax)
751
752 return os.WriteFile(path, out, 0666)
753 }
754
755
756
757 func UpdateWorkGoVersion(wf *modfile.WorkFile, goVers string) (changed bool) {
758 old := gover.FromGoWork(wf)
759 if gover.Compare(old, goVers) >= 0 {
760 return false
761 }
762
763 wf.AddGoStmt(goVers)
764
765
766
767
768
769
770
771
772
773
774
775 toolchain := "go" + old
776 if wf.Toolchain != nil {
777 toolchain = wf.Toolchain.Name
778 }
779 if gover.IsLang(gover.Local()) {
780 toolchain = gover.ToolchainMax(toolchain, "go"+goVers)
781 } else {
782 toolchain = gover.ToolchainMax(toolchain, "go"+gover.Local())
783 }
784
785
786
787
788 if toolchain == "go"+goVers || gover.Compare(gover.FromToolchain(toolchain), gover.GoStrictVersion) < 0 {
789 wf.DropToolchainStmt()
790 } else {
791 wf.AddToolchainStmt(toolchain)
792 }
793 return true
794 }
795
796
797
798 func UpdateWorkFile(wf *modfile.WorkFile) {
799 missingModulePaths := map[string]string{}
800
801 for _, d := range wf.Use {
802 if d.Path == "" {
803 continue
804 }
805 modRoot := d.Path
806 if d.ModulePath == "" {
807 missingModulePaths[d.Path] = modRoot
808 }
809 }
810
811
812
813 for moddir, absmodroot := range missingModulePaths {
814 _, f, err := ReadModFile(filepath.Join(absmodroot, "go.mod"), nil)
815 if err != nil {
816 continue
817 }
818 wf.AddUse(moddir, f.Module.Mod.Path)
819 }
820 }
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840 func LoadModFile(ctx context.Context) *Requirements {
841 rs, err := loadModFile(ctx, nil)
842 if err != nil {
843 base.Fatal(err)
844 }
845 return rs
846 }
847
848 func loadModFile(ctx context.Context, opts *PackageOpts) (*Requirements, error) {
849 if requirements != nil {
850 return requirements, nil
851 }
852
853 Init()
854 var workFile *modfile.WorkFile
855 if inWorkspaceMode() {
856 var err error
857 workFile, modRoots, err = loadWorkFile(workFilePath)
858 if err != nil {
859 return nil, err
860 }
861 for _, modRoot := range modRoots {
862 sumFile := strings.TrimSuffix(modFilePath(modRoot), ".mod") + ".sum"
863 modfetch.WorkspaceGoSumFiles = append(modfetch.WorkspaceGoSumFiles, sumFile)
864 }
865 modfetch.GoSumFile = workFilePath + ".sum"
866 } else if len(modRoots) == 0 {
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884 } else {
885 modfetch.GoSumFile = strings.TrimSuffix(modFilePath(modRoots[0]), ".mod") + ".sum"
886 }
887 if len(modRoots) == 0 {
888
889
890
891 mainModule := module.Version{Path: "command-line-arguments"}
892 MainModules = makeMainModules([]module.Version{mainModule}, []string{""}, []*modfile.File{nil}, []*modFileIndex{nil}, nil)
893 var (
894 goVersion string
895 pruning modPruning
896 roots []module.Version
897 direct = map[string]bool{"go": true}
898 )
899 if inWorkspaceMode() {
900
901
902
903 goVersion = MainModules.GoVersion()
904 pruning = workspace
905 roots = []module.Version{
906 mainModule,
907 {Path: "go", Version: goVersion},
908 {Path: "toolchain", Version: gover.LocalToolchain()},
909 }
910 } else {
911 goVersion = gover.Local()
912 pruning = pruningForGoVersion(goVersion)
913 roots = []module.Version{
914 {Path: "go", Version: goVersion},
915 {Path: "toolchain", Version: gover.LocalToolchain()},
916 }
917 }
918 rawGoVersion.Store(mainModule, goVersion)
919 requirements = newRequirements(pruning, roots, direct)
920 if cfg.BuildMod == "vendor" {
921
922
923
924 requirements.initVendor(nil)
925 }
926 return requirements, nil
927 }
928
929 var modFiles []*modfile.File
930 var mainModules []module.Version
931 var indices []*modFileIndex
932 var errs []error
933 for _, modroot := range modRoots {
934 gomod := modFilePath(modroot)
935 var fixed bool
936 data, f, err := ReadModFile(gomod, fixVersion(ctx, &fixed))
937 if err != nil {
938 if inWorkspaceMode() {
939 if tooNew, ok := err.(*gover.TooNewError); ok && !strings.HasPrefix(cfg.CmdName, "work ") {
940
941
942
943
944 err = errWorkTooOld(gomod, workFile, tooNew.GoVersion)
945 } else {
946 err = fmt.Errorf("cannot load module %s listed in go.work file: %w",
947 base.ShortPath(filepath.Dir(gomod)), base.ShortPathError(err))
948 }
949 }
950 errs = append(errs, err)
951 continue
952 }
953 if inWorkspaceMode() && !strings.HasPrefix(cfg.CmdName, "work ") {
954
955
956
957 mv := gover.FromGoMod(f)
958 wv := gover.FromGoWork(workFile)
959 if gover.Compare(mv, wv) > 0 && gover.Compare(mv, gover.GoStrictVersion) >= 0 {
960 errs = append(errs, errWorkTooOld(gomod, workFile, mv))
961 continue
962 }
963 }
964
965 if !inWorkspaceMode() {
966 ok := true
967 for _, g := range f.Godebug {
968 if err := CheckGodebug("godebug", g.Key, g.Value); err != nil {
969 errs = append(errs, fmt.Errorf("error loading go.mod:\n%s:%d: %v", base.ShortPath(gomod), g.Syntax.Start.Line, err))
970 ok = false
971 }
972 }
973 if !ok {
974 continue
975 }
976 }
977
978 modFiles = append(modFiles, f)
979 mainModule := f.Module.Mod
980 mainModules = append(mainModules, mainModule)
981 indices = append(indices, indexModFile(data, f, mainModule, fixed))
982
983 if err := module.CheckImportPath(f.Module.Mod.Path); err != nil {
984 if pathErr, ok := err.(*module.InvalidPathError); ok {
985 pathErr.Kind = "module"
986 }
987 errs = append(errs, err)
988 }
989 }
990 if len(errs) > 0 {
991 return nil, errors.Join(errs...)
992 }
993
994 MainModules = makeMainModules(mainModules, modRoots, modFiles, indices, workFile)
995 setDefaultBuildMod()
996 rs := requirementsFromModFiles(ctx, workFile, modFiles, opts)
997
998 if cfg.BuildMod == "vendor" {
999 readVendorList(VendorDir())
1000 versions := MainModules.Versions()
1001 indexes := make([]*modFileIndex, 0, len(versions))
1002 modFiles := make([]*modfile.File, 0, len(versions))
1003 modRoots := make([]string, 0, len(versions))
1004 for _, m := range versions {
1005 indexes = append(indexes, MainModules.Index(m))
1006 modFiles = append(modFiles, MainModules.ModFile(m))
1007 modRoots = append(modRoots, MainModules.ModRoot(m))
1008 }
1009 checkVendorConsistency(indexes, modFiles, modRoots)
1010 rs.initVendor(vendorList)
1011 }
1012
1013 if inWorkspaceMode() {
1014
1015 requirements = rs
1016 return rs, nil
1017 }
1018
1019 mainModule := MainModules.mustGetSingleMainModule()
1020
1021 if rs.hasRedundantRoot() {
1022
1023
1024
1025 var err error
1026 rs, err = updateRoots(ctx, rs.direct, rs, nil, nil, false)
1027 if err != nil {
1028 return nil, err
1029 }
1030 }
1031
1032 if MainModules.Index(mainModule).goVersion == "" && rs.pruning != workspace {
1033
1034
1035 if cfg.BuildMod == "mod" && cfg.CmdName != "mod graph" && cfg.CmdName != "mod why" {
1036
1037 v := gover.Local()
1038 if opts != nil && opts.TidyGoVersion != "" {
1039 v = opts.TidyGoVersion
1040 }
1041 addGoStmt(MainModules.ModFile(mainModule), mainModule, v)
1042 rs = overrideRoots(ctx, rs, []module.Version{{Path: "go", Version: v}})
1043
1044
1045
1046
1047
1048
1049 if gover.Compare(v, gover.ExplicitIndirectVersion) >= 0 {
1050 var err error
1051 rs, err = convertPruning(ctx, rs, pruned)
1052 if err != nil {
1053 return nil, err
1054 }
1055 }
1056 } else {
1057 rawGoVersion.Store(mainModule, gover.DefaultGoModVersion)
1058 }
1059 }
1060
1061 requirements = rs
1062 return requirements, nil
1063 }
1064
1065 func errWorkTooOld(gomod string, wf *modfile.WorkFile, goVers string) error {
1066 verb := "lists"
1067 if wf == nil || wf.Go == nil {
1068
1069
1070 verb = "implicitly requires"
1071 }
1072 return fmt.Errorf("module %s listed in go.work file requires go >= %s, but go.work %s go %s; to update it:\n\tgo work use",
1073 base.ShortPath(filepath.Dir(gomod)), goVers, verb, gover.FromGoWork(wf))
1074 }
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085 func CreateModFile(ctx context.Context, modPath string) {
1086 modRoot := base.Cwd()
1087 modRoots = []string{modRoot}
1088 Init()
1089 modFilePath := modFilePath(modRoot)
1090 if _, err := fsys.Stat(modFilePath); err == nil {
1091 base.Fatalf("go: %s already exists", modFilePath)
1092 }
1093
1094 if modPath == "" {
1095 var err error
1096 modPath, err = findModulePath(modRoot)
1097 if err != nil {
1098 base.Fatal(err)
1099 }
1100 } else if err := module.CheckImportPath(modPath); err != nil {
1101 if pathErr, ok := err.(*module.InvalidPathError); ok {
1102 pathErr.Kind = "module"
1103
1104 if pathErr.Path == "." || pathErr.Path == ".." ||
1105 strings.HasPrefix(pathErr.Path, "./") || strings.HasPrefix(pathErr.Path, "../") {
1106 pathErr.Err = errors.New("is a local import path")
1107 }
1108 }
1109 base.Fatal(err)
1110 } else if _, _, ok := module.SplitPathVersion(modPath); !ok {
1111 if strings.HasPrefix(modPath, "gopkg.in/") {
1112 invalidMajorVersionMsg := fmt.Errorf("module paths beginning with gopkg.in/ must always have a major version suffix in the form of .vN:\n\tgo mod init %s", suggestGopkgIn(modPath))
1113 base.Fatalf(`go: invalid module path "%v": %v`, modPath, invalidMajorVersionMsg)
1114 }
1115 invalidMajorVersionMsg := fmt.Errorf("major version suffixes must be in the form of /vN and are only allowed for v2 or later:\n\tgo mod init %s", suggestModulePath(modPath))
1116 base.Fatalf(`go: invalid module path "%v": %v`, modPath, invalidMajorVersionMsg)
1117 }
1118
1119 fmt.Fprintf(os.Stderr, "go: creating new go.mod: module %s\n", modPath)
1120 modFile := new(modfile.File)
1121 modFile.AddModuleStmt(modPath)
1122 MainModules = makeMainModules([]module.Version{modFile.Module.Mod}, []string{modRoot}, []*modfile.File{modFile}, []*modFileIndex{nil}, nil)
1123 addGoStmt(modFile, modFile.Module.Mod, gover.Local())
1124
1125 rs := requirementsFromModFiles(ctx, nil, []*modfile.File{modFile}, nil)
1126 rs, err := updateRoots(ctx, rs.direct, rs, nil, nil, false)
1127 if err != nil {
1128 base.Fatal(err)
1129 }
1130 requirements = rs
1131 if err := commitRequirements(ctx, WriteOpts{}); err != nil {
1132 base.Fatal(err)
1133 }
1134
1135
1136
1137
1138
1139
1140
1141
1142 empty := true
1143 files, _ := os.ReadDir(modRoot)
1144 for _, f := range files {
1145 name := f.Name()
1146 if strings.HasPrefix(name, ".") || strings.HasPrefix(name, "_") {
1147 continue
1148 }
1149 if strings.HasSuffix(name, ".go") || f.IsDir() {
1150 empty = false
1151 break
1152 }
1153 }
1154 if !empty {
1155 fmt.Fprintf(os.Stderr, "go: to add module requirements and sums:\n\tgo mod tidy\n")
1156 }
1157 }
1158
1159
1160
1161
1162
1163
1164
1165
1166 func fixVersion(ctx context.Context, fixed *bool) modfile.VersionFixer {
1167 return func(path, vers string) (resolved string, err error) {
1168 defer func() {
1169 if err == nil && resolved != vers {
1170 *fixed = true
1171 }
1172 }()
1173
1174
1175 if strings.HasPrefix(path, "gopkg.in/") && strings.Contains(vers, "-gopkgin-") {
1176 vers = vers[strings.Index(vers, "-gopkgin-")+len("-gopkgin-"):]
1177 }
1178
1179
1180
1181
1182 _, pathMajor, ok := module.SplitPathVersion(path)
1183 if !ok {
1184 return "", &module.ModuleError{
1185 Path: path,
1186 Err: &module.InvalidVersionError{
1187 Version: vers,
1188 Err: fmt.Errorf("malformed module path %q", path),
1189 },
1190 }
1191 }
1192 if vers != "" && module.CanonicalVersion(vers) == vers {
1193 if err := module.CheckPathMajor(vers, pathMajor); err != nil {
1194 return "", module.VersionError(module.Version{Path: path, Version: vers}, err)
1195 }
1196 return vers, nil
1197 }
1198
1199 info, err := Query(ctx, path, vers, "", nil)
1200 if err != nil {
1201 return "", err
1202 }
1203 return info.Version, nil
1204 }
1205 }
1206
1207
1208
1209
1210
1211
1212
1213
1214 func AllowMissingModuleImports() {
1215 if initialized {
1216 panic("AllowMissingModuleImports after Init")
1217 }
1218 allowMissingModuleImports = true
1219 }
1220
1221
1222
1223 func makeMainModules(ms []module.Version, rootDirs []string, modFiles []*modfile.File, indices []*modFileIndex, workFile *modfile.WorkFile) *MainModuleSet {
1224 for _, m := range ms {
1225 if m.Version != "" {
1226 panic("mainModulesCalled with module.Version with non empty Version field: " + fmt.Sprintf("%#v", m))
1227 }
1228 }
1229 modRootContainingCWD := findModuleRoot(base.Cwd())
1230 mainModules := &MainModuleSet{
1231 versions: slices.Clip(ms),
1232 inGorootSrc: map[module.Version]bool{},
1233 pathPrefix: map[module.Version]string{},
1234 modRoot: map[module.Version]string{},
1235 modFiles: map[module.Version]*modfile.File{},
1236 indices: map[module.Version]*modFileIndex{},
1237 highestReplaced: map[string]string{},
1238 tools: map[string]bool{},
1239 workFile: workFile,
1240 }
1241 var workFileReplaces []*modfile.Replace
1242 if workFile != nil {
1243 workFileReplaces = workFile.Replace
1244 mainModules.workFileReplaceMap = toReplaceMap(workFile.Replace)
1245 }
1246 mainModulePaths := make(map[string]bool)
1247 for _, m := range ms {
1248 if mainModulePaths[m.Path] {
1249 base.Errorf("go: module %s appears multiple times in workspace", m.Path)
1250 }
1251 mainModulePaths[m.Path] = true
1252 }
1253 replacedByWorkFile := make(map[string]bool)
1254 replacements := make(map[module.Version]module.Version)
1255 for _, r := range workFileReplaces {
1256 if mainModulePaths[r.Old.Path] && r.Old.Version == "" {
1257 base.Errorf("go: workspace module %v is replaced at all versions in the go.work file. To fix, remove the replacement from the go.work file or specify the version at which to replace the module.", r.Old.Path)
1258 }
1259 replacedByWorkFile[r.Old.Path] = true
1260 v, ok := mainModules.highestReplaced[r.Old.Path]
1261 if !ok || gover.ModCompare(r.Old.Path, r.Old.Version, v) > 0 {
1262 mainModules.highestReplaced[r.Old.Path] = r.Old.Version
1263 }
1264 replacements[r.Old] = r.New
1265 }
1266 for i, m := range ms {
1267 mainModules.pathPrefix[m] = m.Path
1268 mainModules.modRoot[m] = rootDirs[i]
1269 mainModules.modFiles[m] = modFiles[i]
1270 mainModules.indices[m] = indices[i]
1271
1272 if mainModules.modRoot[m] == modRootContainingCWD {
1273 mainModules.modContainingCWD = m
1274 }
1275
1276 if rel := search.InDir(rootDirs[i], cfg.GOROOTsrc); rel != "" {
1277 mainModules.inGorootSrc[m] = true
1278 if m.Path == "std" {
1279
1280
1281
1282
1283
1284
1285
1286
1287 mainModules.pathPrefix[m] = ""
1288 }
1289 }
1290
1291 if modFiles[i] != nil {
1292 curModuleReplaces := make(map[module.Version]bool)
1293 for _, r := range modFiles[i].Replace {
1294 if replacedByWorkFile[r.Old.Path] {
1295 continue
1296 }
1297 var newV module.Version = r.New
1298 if WorkFilePath() != "" && newV.Version == "" && !filepath.IsAbs(newV.Path) {
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308 newV.Path = filepath.Join(rootDirs[i], newV.Path)
1309 }
1310 if prev, ok := replacements[r.Old]; ok && !curModuleReplaces[r.Old] && prev != newV {
1311 base.Fatalf("go: conflicting replacements for %v:\n\t%v\n\t%v\nuse \"go work edit -replace %v=[override]\" to resolve", r.Old, prev, newV, r.Old)
1312 }
1313 curModuleReplaces[r.Old] = true
1314 replacements[r.Old] = newV
1315
1316 v, ok := mainModules.highestReplaced[r.Old.Path]
1317 if !ok || gover.ModCompare(r.Old.Path, r.Old.Version, v) > 0 {
1318 mainModules.highestReplaced[r.Old.Path] = r.Old.Version
1319 }
1320 }
1321
1322 for _, t := range modFiles[i].Tool {
1323 if err := module.CheckImportPath(t.Path); err != nil {
1324 if e, ok := err.(*module.InvalidPathError); ok {
1325 e.Kind = "tool"
1326 }
1327 base.Fatal(err)
1328 }
1329
1330 mainModules.tools[t.Path] = true
1331 }
1332 }
1333 }
1334
1335 return mainModules
1336 }
1337
1338
1339
1340 func requirementsFromModFiles(ctx context.Context, workFile *modfile.WorkFile, modFiles []*modfile.File, opts *PackageOpts) *Requirements {
1341 var roots []module.Version
1342 direct := map[string]bool{}
1343 var pruning modPruning
1344 if inWorkspaceMode() {
1345 pruning = workspace
1346 roots = make([]module.Version, len(MainModules.Versions()), 2+len(MainModules.Versions()))
1347 copy(roots, MainModules.Versions())
1348 goVersion := gover.FromGoWork(workFile)
1349 var toolchain string
1350 if workFile.Toolchain != nil {
1351 toolchain = workFile.Toolchain.Name
1352 }
1353 roots = appendGoAndToolchainRoots(roots, goVersion, toolchain, direct)
1354 direct = directRequirements(modFiles)
1355 } else {
1356 pruning = pruningForGoVersion(MainModules.GoVersion())
1357 if len(modFiles) != 1 {
1358 panic(fmt.Errorf("requirementsFromModFiles called with %v modfiles outside workspace mode", len(modFiles)))
1359 }
1360 modFile := modFiles[0]
1361 roots, direct = rootsFromModFile(MainModules.mustGetSingleMainModule(), modFile, withToolchainRoot)
1362 }
1363
1364 gover.ModSort(roots)
1365 rs := newRequirements(pruning, roots, direct)
1366 return rs
1367 }
1368
1369 type addToolchainRoot bool
1370
1371 const (
1372 omitToolchainRoot addToolchainRoot = false
1373 withToolchainRoot = true
1374 )
1375
1376 func directRequirements(modFiles []*modfile.File) map[string]bool {
1377 direct := make(map[string]bool)
1378 for _, modFile := range modFiles {
1379 for _, r := range modFile.Require {
1380 if !r.Indirect {
1381 direct[r.Mod.Path] = true
1382 }
1383 }
1384 }
1385 return direct
1386 }
1387
1388 func rootsFromModFile(m module.Version, modFile *modfile.File, addToolchainRoot addToolchainRoot) (roots []module.Version, direct map[string]bool) {
1389 direct = make(map[string]bool)
1390 padding := 2
1391 if !addToolchainRoot {
1392 padding = 1
1393 }
1394 roots = make([]module.Version, 0, padding+len(modFile.Require))
1395 for _, r := range modFile.Require {
1396 if index := MainModules.Index(m); index != nil && index.exclude[r.Mod] {
1397 if cfg.BuildMod == "mod" {
1398 fmt.Fprintf(os.Stderr, "go: dropping requirement on excluded version %s %s\n", r.Mod.Path, r.Mod.Version)
1399 } else {
1400 fmt.Fprintf(os.Stderr, "go: ignoring requirement on excluded version %s %s\n", r.Mod.Path, r.Mod.Version)
1401 }
1402 continue
1403 }
1404
1405 roots = append(roots, r.Mod)
1406 if !r.Indirect {
1407 direct[r.Mod.Path] = true
1408 }
1409 }
1410 goVersion := gover.FromGoMod(modFile)
1411 var toolchain string
1412 if addToolchainRoot && modFile.Toolchain != nil {
1413 toolchain = modFile.Toolchain.Name
1414 }
1415 roots = appendGoAndToolchainRoots(roots, goVersion, toolchain, direct)
1416 return roots, direct
1417 }
1418
1419 func appendGoAndToolchainRoots(roots []module.Version, goVersion, toolchain string, direct map[string]bool) []module.Version {
1420
1421 roots = append(roots, module.Version{Path: "go", Version: goVersion})
1422 direct["go"] = true
1423
1424 if toolchain != "" {
1425 roots = append(roots, module.Version{Path: "toolchain", Version: toolchain})
1426
1427
1428
1429
1430
1431 }
1432 return roots
1433 }
1434
1435
1436
1437 func setDefaultBuildMod() {
1438 if cfg.BuildModExplicit {
1439 if inWorkspaceMode() && cfg.BuildMod != "readonly" && cfg.BuildMod != "vendor" {
1440 switch cfg.CmdName {
1441 case "work sync", "mod graph", "mod verify", "mod why":
1442
1443
1444 panic("in workspace mode and -mod was set explicitly, but command doesn't support setting -mod")
1445 default:
1446 base.Fatalf("go: -mod may only be set to readonly or vendor when in workspace mode, but it is set to %q"+
1447 "\n\tRemove the -mod flag to use the default readonly value, "+
1448 "\n\tor set GOWORK=off to disable workspace mode.", cfg.BuildMod)
1449 }
1450 }
1451
1452 return
1453 }
1454
1455
1456
1457
1458 switch cfg.CmdName {
1459 case "get", "mod download", "mod init", "mod tidy", "work sync":
1460
1461 cfg.BuildMod = "mod"
1462 return
1463 case "mod graph", "mod verify", "mod why":
1464
1465
1466
1467
1468 cfg.BuildMod = "mod"
1469 return
1470 case "mod vendor", "work vendor":
1471 cfg.BuildMod = "readonly"
1472 return
1473 }
1474 if modRoots == nil {
1475 if allowMissingModuleImports {
1476 cfg.BuildMod = "mod"
1477 } else {
1478 cfg.BuildMod = "readonly"
1479 }
1480 return
1481 }
1482
1483 if len(modRoots) >= 1 {
1484 var goVersion string
1485 var versionSource string
1486 if inWorkspaceMode() {
1487 versionSource = "go.work"
1488 if wfg := MainModules.WorkFile().Go; wfg != nil {
1489 goVersion = wfg.Version
1490 }
1491 } else {
1492 versionSource = "go.mod"
1493 index := MainModules.GetSingleIndexOrNil()
1494 if index != nil {
1495 goVersion = index.goVersion
1496 }
1497 }
1498 vendorDir := ""
1499 if workFilePath != "" {
1500 vendorDir = filepath.Join(filepath.Dir(workFilePath), "vendor")
1501 } else {
1502 if len(modRoots) != 1 {
1503 panic(fmt.Errorf("outside workspace mode, but have %v modRoots", modRoots))
1504 }
1505 vendorDir = filepath.Join(modRoots[0], "vendor")
1506 }
1507 if fi, err := fsys.Stat(vendorDir); err == nil && fi.IsDir() {
1508 if goVersion != "" {
1509 if gover.Compare(goVersion, "1.14") < 0 {
1510
1511
1512
1513 cfg.BuildModReason = fmt.Sprintf("Go version in "+versionSource+" is %s, so vendor directory was not used.", goVersion)
1514 } else {
1515 vendoredWorkspace, err := modulesTextIsForWorkspace(vendorDir)
1516 if err != nil {
1517 base.Fatalf("go: reading modules.txt for vendor directory: %v", err)
1518 }
1519 if vendoredWorkspace != (versionSource == "go.work") {
1520 if vendoredWorkspace {
1521 cfg.BuildModReason = "Outside workspace mode, but vendor directory is for a workspace."
1522 } else {
1523 cfg.BuildModReason = "In workspace mode, but vendor directory is not for a workspace"
1524 }
1525 } else {
1526
1527
1528
1529 cfg.BuildMod = "vendor"
1530 cfg.BuildModReason = "Go version in " + versionSource + " is at least 1.14 and vendor directory exists."
1531 return
1532 }
1533 }
1534 } else {
1535 cfg.BuildModReason = fmt.Sprintf("Go version in %s is unspecified, so vendor directory was not used.", versionSource)
1536 }
1537 }
1538 }
1539
1540 cfg.BuildMod = "readonly"
1541 }
1542
1543 func modulesTextIsForWorkspace(vendorDir string) (bool, error) {
1544 f, err := fsys.Open(filepath.Join(vendorDir, "modules.txt"))
1545 if errors.Is(err, os.ErrNotExist) {
1546
1547
1548
1549
1550 return false, nil
1551 }
1552 if err != nil {
1553 return false, err
1554 }
1555 defer f.Close()
1556 var buf [512]byte
1557 n, err := f.Read(buf[:])
1558 if err != nil && err != io.EOF {
1559 return false, err
1560 }
1561 line, _, _ := strings.Cut(string(buf[:n]), "\n")
1562 if annotations, ok := strings.CutPrefix(line, "## "); ok {
1563 for _, entry := range strings.Split(annotations, ";") {
1564 entry = strings.TrimSpace(entry)
1565 if entry == "workspace" {
1566 return true, nil
1567 }
1568 }
1569 }
1570 return false, nil
1571 }
1572
1573 func mustHaveCompleteRequirements() bool {
1574 return cfg.BuildMod != "mod" && !inWorkspaceMode()
1575 }
1576
1577
1578
1579
1580 func addGoStmt(modFile *modfile.File, mod module.Version, v string) {
1581 if modFile.Go != nil && modFile.Go.Version != "" {
1582 return
1583 }
1584 forceGoStmt(modFile, mod, v)
1585 }
1586
1587 func forceGoStmt(modFile *modfile.File, mod module.Version, v string) {
1588 if err := modFile.AddGoStmt(v); err != nil {
1589 base.Fatalf("go: internal error: %v", err)
1590 }
1591 rawGoVersion.Store(mod, v)
1592 }
1593
1594 var altConfigs = []string{
1595 ".git/config",
1596 }
1597
1598 func findModuleRoot(dir string) (roots string) {
1599 if dir == "" {
1600 panic("dir not set")
1601 }
1602 dir = filepath.Clean(dir)
1603
1604
1605 for {
1606 if fi, err := fsys.Stat(filepath.Join(dir, "go.mod")); err == nil && !fi.IsDir() {
1607 return dir
1608 }
1609 d := filepath.Dir(dir)
1610 if d == dir {
1611 break
1612 }
1613 dir = d
1614 }
1615 return ""
1616 }
1617
1618 func findWorkspaceFile(dir string) (root string) {
1619 if dir == "" {
1620 panic("dir not set")
1621 }
1622 dir = filepath.Clean(dir)
1623
1624
1625 for {
1626 f := filepath.Join(dir, "go.work")
1627 if fi, err := fsys.Stat(f); err == nil && !fi.IsDir() {
1628 return f
1629 }
1630 d := filepath.Dir(dir)
1631 if d == dir {
1632 break
1633 }
1634 if d == cfg.GOROOT {
1635
1636
1637
1638 return ""
1639 }
1640 dir = d
1641 }
1642 return ""
1643 }
1644
1645 func findAltConfig(dir string) (root, name string) {
1646 if dir == "" {
1647 panic("dir not set")
1648 }
1649 dir = filepath.Clean(dir)
1650 if rel := search.InDir(dir, cfg.BuildContext.GOROOT); rel != "" {
1651
1652
1653 return "", ""
1654 }
1655 for {
1656 for _, name := range altConfigs {
1657 if fi, err := fsys.Stat(filepath.Join(dir, name)); err == nil && !fi.IsDir() {
1658 return dir, name
1659 }
1660 }
1661 d := filepath.Dir(dir)
1662 if d == dir {
1663 break
1664 }
1665 dir = d
1666 }
1667 return "", ""
1668 }
1669
1670 func findModulePath(dir string) (string, error) {
1671
1672
1673
1674
1675
1676
1677
1678
1679 list, _ := os.ReadDir(dir)
1680 for _, info := range list {
1681 if info.Type().IsRegular() && strings.HasSuffix(info.Name(), ".go") {
1682 if com := findImportComment(filepath.Join(dir, info.Name())); com != "" {
1683 return com, nil
1684 }
1685 }
1686 }
1687 for _, info1 := range list {
1688 if info1.IsDir() {
1689 files, _ := os.ReadDir(filepath.Join(dir, info1.Name()))
1690 for _, info2 := range files {
1691 if info2.Type().IsRegular() && strings.HasSuffix(info2.Name(), ".go") {
1692 if com := findImportComment(filepath.Join(dir, info1.Name(), info2.Name())); com != "" {
1693 return path.Dir(com), nil
1694 }
1695 }
1696 }
1697 }
1698 }
1699
1700
1701 data, _ := os.ReadFile(filepath.Join(dir, "Godeps/Godeps.json"))
1702 var cfg1 struct{ ImportPath string }
1703 json.Unmarshal(data, &cfg1)
1704 if cfg1.ImportPath != "" {
1705 return cfg1.ImportPath, nil
1706 }
1707
1708
1709 data, _ = os.ReadFile(filepath.Join(dir, "vendor/vendor.json"))
1710 var cfg2 struct{ RootPath string }
1711 json.Unmarshal(data, &cfg2)
1712 if cfg2.RootPath != "" {
1713 return cfg2.RootPath, nil
1714 }
1715
1716
1717 var badPathErr error
1718 for _, gpdir := range filepath.SplitList(cfg.BuildContext.GOPATH) {
1719 if gpdir == "" {
1720 continue
1721 }
1722 if rel := search.InDir(dir, filepath.Join(gpdir, "src")); rel != "" && rel != "." {
1723 path := filepath.ToSlash(rel)
1724
1725 if err := module.CheckImportPath(path); err != nil {
1726 badPathErr = err
1727 break
1728 }
1729 return path, nil
1730 }
1731 }
1732
1733 reason := "outside GOPATH, module path must be specified"
1734 if badPathErr != nil {
1735
1736
1737 reason = fmt.Sprintf("bad module path inferred from directory in GOPATH: %v", badPathErr)
1738 }
1739 msg := `cannot determine module path for source directory %s (%s)
1740
1741 Example usage:
1742 'go mod init example.com/m' to initialize a v0 or v1 module
1743 'go mod init example.com/m/v2' to initialize a v2 module
1744
1745 Run 'go help mod init' for more information.
1746 `
1747 return "", fmt.Errorf(msg, dir, reason)
1748 }
1749
1750 var (
1751 importCommentRE = lazyregexp.New(`(?m)^package[ \t]+[^ \t\r\n/]+[ \t]+//[ \t]+import[ \t]+(\"[^"]+\")[ \t]*\r?\n`)
1752 )
1753
1754 func findImportComment(file string) string {
1755 data, err := os.ReadFile(file)
1756 if err != nil {
1757 return ""
1758 }
1759 m := importCommentRE.FindSubmatch(data)
1760 if m == nil {
1761 return ""
1762 }
1763 path, err := strconv.Unquote(string(m[1]))
1764 if err != nil {
1765 return ""
1766 }
1767 return path
1768 }
1769
1770
1771 type WriteOpts struct {
1772 DropToolchain bool
1773 ExplicitToolchain bool
1774
1775 AddTools []string
1776 DropTools []string
1777
1778
1779
1780 TidyWroteGo bool
1781 }
1782
1783
1784 func WriteGoMod(ctx context.Context, opts WriteOpts) error {
1785 requirements = LoadModFile(ctx)
1786 return commitRequirements(ctx, opts)
1787 }
1788
1789 var errNoChange = errors.New("no update needed")
1790
1791
1792
1793 func UpdateGoModFromReqs(ctx context.Context, opts WriteOpts) (before, after []byte, modFile *modfile.File, err error) {
1794 if MainModules.Len() != 1 || MainModules.ModRoot(MainModules.Versions()[0]) == "" {
1795
1796 return nil, nil, nil, errNoChange
1797 }
1798 mainModule := MainModules.mustGetSingleMainModule()
1799 modFile = MainModules.ModFile(mainModule)
1800 if modFile == nil {
1801
1802 return nil, nil, nil, errNoChange
1803 }
1804 before, err = modFile.Format()
1805 if err != nil {
1806 return nil, nil, nil, err
1807 }
1808
1809 var list []*modfile.Require
1810 toolchain := ""
1811 goVersion := ""
1812 for _, m := range requirements.rootModules {
1813 if m.Path == "go" {
1814 goVersion = m.Version
1815 continue
1816 }
1817 if m.Path == "toolchain" {
1818 toolchain = m.Version
1819 continue
1820 }
1821 list = append(list, &modfile.Require{
1822 Mod: m,
1823 Indirect: !requirements.direct[m.Path],
1824 })
1825 }
1826
1827
1828
1829
1830 if goVersion == "" {
1831 base.Fatalf("go: internal error: missing go root module in WriteGoMod")
1832 }
1833 if gover.Compare(goVersion, gover.Local()) > 0 {
1834
1835 return nil, nil, nil, &gover.TooNewError{What: "updating go.mod", GoVersion: goVersion}
1836 }
1837 wroteGo := opts.TidyWroteGo
1838 if !wroteGo && modFile.Go == nil || modFile.Go.Version != goVersion {
1839 alwaysUpdate := cfg.BuildMod == "mod" || cfg.CmdName == "mod tidy" || cfg.CmdName == "get"
1840 if modFile.Go == nil && goVersion == gover.DefaultGoModVersion && !alwaysUpdate {
1841
1842
1843
1844 } else {
1845 wroteGo = true
1846 forceGoStmt(modFile, mainModule, goVersion)
1847 }
1848 }
1849 if toolchain == "" {
1850 toolchain = "go" + goVersion
1851 }
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861 toolVers := gover.FromToolchain(toolchain)
1862 if wroteGo && !opts.DropToolchain && !opts.ExplicitToolchain &&
1863 gover.Compare(goVersion, gover.GoStrictVersion) >= 0 &&
1864 (gover.Compare(gover.Local(), toolVers) > 0 && !gover.IsLang(gover.Local())) {
1865 toolchain = "go" + gover.Local()
1866 toolVers = gover.FromToolchain(toolchain)
1867 }
1868
1869 if opts.DropToolchain || toolchain == "go"+goVersion || (gover.Compare(toolVers, gover.GoStrictVersion) < 0 && !opts.ExplicitToolchain) {
1870
1871
1872 modFile.DropToolchainStmt()
1873 } else {
1874 modFile.AddToolchainStmt(toolchain)
1875 }
1876
1877 for _, path := range opts.AddTools {
1878 modFile.AddTool(path)
1879 }
1880
1881 for _, path := range opts.DropTools {
1882 modFile.DropTool(path)
1883 }
1884
1885
1886 if gover.Compare(goVersion, gover.SeparateIndirectVersion) < 0 {
1887 modFile.SetRequire(list)
1888 } else {
1889 modFile.SetRequireSeparateIndirect(list)
1890 }
1891 modFile.Cleanup()
1892 after, err = modFile.Format()
1893 if err != nil {
1894 return nil, nil, nil, err
1895 }
1896 return before, after, modFile, nil
1897 }
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908 func commitRequirements(ctx context.Context, opts WriteOpts) (err error) {
1909 if inWorkspaceMode() {
1910
1911
1912 return modfetch.WriteGoSum(ctx, keepSums(ctx, loaded, requirements, addBuildListZipSums), mustHaveCompleteRequirements())
1913 }
1914 _, updatedGoMod, modFile, err := UpdateGoModFromReqs(ctx, opts)
1915 if err != nil {
1916 if errors.Is(err, errNoChange) {
1917 return nil
1918 }
1919 return err
1920 }
1921
1922 index := MainModules.GetSingleIndexOrNil()
1923 dirty := index.modFileIsDirty(modFile) || len(opts.DropTools) > 0 || len(opts.AddTools) > 0
1924 if dirty && cfg.BuildMod != "mod" {
1925
1926
1927 return errGoModDirty
1928 }
1929
1930 if !dirty && cfg.CmdName != "mod tidy" {
1931
1932
1933
1934
1935 if cfg.CmdName != "mod init" {
1936 if err := modfetch.WriteGoSum(ctx, keepSums(ctx, loaded, requirements, addBuildListZipSums), mustHaveCompleteRequirements()); err != nil {
1937 return err
1938 }
1939 }
1940 return nil
1941 }
1942
1943 mainModule := MainModules.mustGetSingleMainModule()
1944 modFilePath := modFilePath(MainModules.ModRoot(mainModule))
1945 if fsys.Replaced(modFilePath) {
1946 if dirty {
1947 return errors.New("updates to go.mod needed, but go.mod is part of the overlay specified with -overlay")
1948 }
1949 return nil
1950 }
1951 defer func() {
1952
1953 MainModules.SetIndex(mainModule, indexModFile(updatedGoMod, modFile, mainModule, false))
1954
1955
1956
1957 if cfg.CmdName != "mod init" {
1958 if err == nil {
1959 err = modfetch.WriteGoSum(ctx, keepSums(ctx, loaded, requirements, addBuildListZipSums), mustHaveCompleteRequirements())
1960 }
1961 }
1962 }()
1963
1964
1965
1966 if unlock, err := modfetch.SideLock(ctx); err == nil {
1967 defer unlock()
1968 }
1969
1970 err = lockedfile.Transform(modFilePath, func(old []byte) ([]byte, error) {
1971 if bytes.Equal(old, updatedGoMod) {
1972
1973
1974 return nil, errNoChange
1975 }
1976
1977 if index != nil && !bytes.Equal(old, index.data) {
1978
1979
1980
1981
1982
1983
1984 return nil, fmt.Errorf("existing contents have changed since last read")
1985 }
1986
1987 return updatedGoMod, nil
1988 })
1989
1990 if err != nil && err != errNoChange {
1991 return fmt.Errorf("updating go.mod: %w", err)
1992 }
1993 return nil
1994 }
1995
1996
1997
1998
1999
2000
2001
2002 func keepSums(ctx context.Context, ld *loader, rs *Requirements, which whichSums) map[module.Version]bool {
2003
2004
2005
2006
2007 keep := make(map[module.Version]bool)
2008
2009
2010
2011
2012
2013 keepModSumsForZipSums := true
2014 if ld == nil {
2015 if gover.Compare(MainModules.GoVersion(), gover.TidyGoModSumVersion) < 0 && cfg.BuildMod != "mod" {
2016 keepModSumsForZipSums = false
2017 }
2018 } else {
2019 keepPkgGoModSums := true
2020 if gover.Compare(ld.requirements.GoVersion(), gover.TidyGoModSumVersion) < 0 && (ld.Tidy || cfg.BuildMod != "mod") {
2021 keepPkgGoModSums = false
2022 keepModSumsForZipSums = false
2023 }
2024 for _, pkg := range ld.pkgs {
2025
2026
2027
2028 if pkg.testOf != nil || (pkg.mod.Path == "" && pkg.err == nil) || module.CheckImportPath(pkg.path) != nil {
2029 continue
2030 }
2031
2032
2033
2034
2035
2036
2037 if keepPkgGoModSums {
2038 r := resolveReplacement(pkg.mod)
2039 keep[modkey(r)] = true
2040 }
2041
2042 if rs.pruning == pruned && pkg.mod.Path != "" {
2043 if v, ok := rs.rootSelected(pkg.mod.Path); ok && v == pkg.mod.Version {
2044
2045
2046
2047
2048
2049 for prefix := pkg.path; prefix != "."; prefix = path.Dir(prefix) {
2050 if v, ok := rs.rootSelected(prefix); ok && v != "none" {
2051 m := module.Version{Path: prefix, Version: v}
2052 r := resolveReplacement(m)
2053 keep[r] = true
2054 }
2055 }
2056 continue
2057 }
2058 }
2059
2060 mg, _ := rs.Graph(ctx)
2061 for prefix := pkg.path; prefix != "."; prefix = path.Dir(prefix) {
2062 if v := mg.Selected(prefix); v != "none" {
2063 m := module.Version{Path: prefix, Version: v}
2064 r := resolveReplacement(m)
2065 keep[r] = true
2066 }
2067 }
2068 }
2069 }
2070
2071 if rs.graph.Load() == nil {
2072
2073
2074
2075 for _, m := range rs.rootModules {
2076 r := resolveReplacement(m)
2077 keep[modkey(r)] = true
2078 if which == addBuildListZipSums {
2079 keep[r] = true
2080 }
2081 }
2082 } else {
2083 mg, _ := rs.Graph(ctx)
2084 mg.WalkBreadthFirst(func(m module.Version) {
2085 if _, ok := mg.RequiredBy(m); ok {
2086
2087
2088
2089 r := resolveReplacement(m)
2090 keep[modkey(r)] = true
2091 }
2092 })
2093
2094 if which == addBuildListZipSums {
2095 for _, m := range mg.BuildList() {
2096 r := resolveReplacement(m)
2097 if keepModSumsForZipSums {
2098 keep[modkey(r)] = true
2099 }
2100 keep[r] = true
2101 }
2102 }
2103 }
2104
2105 return keep
2106 }
2107
2108 type whichSums int8
2109
2110 const (
2111 loadedZipSumsOnly = whichSums(iota)
2112 addBuildListZipSums
2113 )
2114
2115
2116
2117 func modkey(m module.Version) module.Version {
2118 return module.Version{Path: m.Path, Version: m.Version + "/go.mod"}
2119 }
2120
2121 func suggestModulePath(path string) string {
2122 var m string
2123
2124 i := len(path)
2125 for i > 0 && ('0' <= path[i-1] && path[i-1] <= '9' || path[i-1] == '.') {
2126 i--
2127 }
2128 url := path[:i]
2129 url = strings.TrimSuffix(url, "/v")
2130 url = strings.TrimSuffix(url, "/")
2131
2132 f := func(c rune) bool {
2133 return c > '9' || c < '0'
2134 }
2135 s := strings.FieldsFunc(path[i:], f)
2136 if len(s) > 0 {
2137 m = s[0]
2138 }
2139 m = strings.TrimLeft(m, "0")
2140 if m == "" || m == "1" {
2141 return url + "/v2"
2142 }
2143
2144 return url + "/v" + m
2145 }
2146
2147 func suggestGopkgIn(path string) string {
2148 var m string
2149 i := len(path)
2150 for i > 0 && (('0' <= path[i-1] && path[i-1] <= '9') || (path[i-1] == '.')) {
2151 i--
2152 }
2153 url := path[:i]
2154 url = strings.TrimSuffix(url, ".v")
2155 url = strings.TrimSuffix(url, "/v")
2156 url = strings.TrimSuffix(url, "/")
2157
2158 f := func(c rune) bool {
2159 return c > '9' || c < '0'
2160 }
2161 s := strings.FieldsFunc(path, f)
2162 if len(s) > 0 {
2163 m = s[0]
2164 }
2165
2166 m = strings.TrimLeft(m, "0")
2167
2168 if m == "" {
2169 return url + ".v1"
2170 }
2171 return url + ".v" + m
2172 }
2173
2174 func CheckGodebug(verb, k, v string) error {
2175 if strings.ContainsAny(k, " \t") {
2176 return fmt.Errorf("key contains space")
2177 }
2178 if strings.ContainsAny(v, " \t") {
2179 return fmt.Errorf("value contains space")
2180 }
2181 if strings.ContainsAny(k, ",") {
2182 return fmt.Errorf("key contains comma")
2183 }
2184 if strings.ContainsAny(v, ",") {
2185 return fmt.Errorf("value contains comma")
2186 }
2187 if k == "default" {
2188 if !strings.HasPrefix(v, "go") || !gover.IsValid(v[len("go"):]) {
2189 return fmt.Errorf("value for default= must be goVERSION")
2190 }
2191 if gover.Compare(v[len("go"):], gover.Local()) > 0 {
2192 return fmt.Errorf("default=%s too new (toolchain is go%s)", v, gover.Local())
2193 }
2194 return nil
2195 }
2196 for _, info := range godebugs.All {
2197 if k == info.Name {
2198 return nil
2199 }
2200 }
2201 return fmt.Errorf("unknown %s %q", verb, k)
2202 }
2203
View as plain text