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

     1  // Copyright 2018 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  package modload
     6  
     7  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  // Variables set by other packages.
    38  //
    39  // TODO(#40775): See if these can be plumbed as explicit parameters.
    40  var (
    41  	// RootMode determines whether a module root is needed.
    42  	RootMode Root
    43  
    44  	// ForceUseModules may be set to force modules to be enabled when
    45  	// GO111MODULE=auto or to report an error when GO111MODULE=off.
    46  	ForceUseModules bool
    47  
    48  	allowMissingModuleImports bool
    49  
    50  	// ExplicitWriteGoMod prevents LoadPackages, ListModules, and other functions
    51  	// from updating go.mod and go.sum or reporting errors when updates are
    52  	// needed. A package should set this if it would cause go.mod to be written
    53  	// multiple times (for example, 'go get' calls LoadPackages multiple times) or
    54  	// if it needs some other operation to be successful before go.mod and go.sum
    55  	// can be written (for example, 'go mod download' must download modules before
    56  	// adding sums to go.sum). Packages that set this are responsible for calling
    57  	// WriteGoMod explicitly.
    58  	ExplicitWriteGoMod bool
    59  )
    60  
    61  // Variables set in Init.
    62  var (
    63  	initialized bool
    64  
    65  	// These are primarily used to initialize the MainModules, and should be
    66  	// eventually superseded by them but are still used in cases where the module
    67  	// roots are required but MainModules hasn't been initialized yet. Set to
    68  	// the modRoots of the main modules.
    69  	// modRoots != nil implies len(modRoots) > 0
    70  	modRoots []string
    71  	gopath   string
    72  )
    73  
    74  // EnterModule resets MainModules and requirements to refer to just this one module.
    75  func EnterModule(ctx context.Context, enterModroot string) {
    76  	MainModules = nil // reset MainModules
    77  	requirements = nil
    78  	workFilePath = "" // Force module mode
    79  	modfetch.Reset()
    80  
    81  	modRoots = []string{enterModroot}
    82  	LoadModFile(ctx)
    83  }
    84  
    85  // Variable set in InitWorkfile
    86  var (
    87  	// Set to the path to the go.work file, or "" if workspace mode is disabled.
    88  	workFilePath string
    89  )
    90  
    91  type MainModuleSet struct {
    92  	// versions are the module.Version values of each of the main modules.
    93  	// For each of them, the Path fields are ordinary module paths and the Version
    94  	// fields are empty strings.
    95  	// versions is clipped (len=cap).
    96  	versions []module.Version
    97  
    98  	// modRoot maps each module in versions to its absolute filesystem path.
    99  	modRoot map[module.Version]string
   100  
   101  	// pathPrefix is the path prefix for packages in the module, without a trailing
   102  	// slash. For most modules, pathPrefix is just version.Path, but the
   103  	// standard-library module "std" has an empty prefix.
   104  	pathPrefix map[module.Version]string
   105  
   106  	// inGorootSrc caches whether modRoot is within GOROOT/src.
   107  	// The "std" module is special within GOROOT/src, but not otherwise.
   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  	// highest replaced version of each module path; empty string for wildcard-only replacements
   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  // Versions returns the module.Version values of each of the main modules.
   131  // For each of them, the Path fields are ordinary module paths and the Version
   132  // fields are empty strings.
   133  // Callers should not modify the returned slice.
   134  func (mms *MainModuleSet) Versions() []module.Version {
   135  	if mms == nil {
   136  		return nil
   137  	}
   138  	return mms.versions
   139  }
   140  
   141  // Tools returns the tools defined by all the main modules.
   142  // The key is the absolute package path of the tool.
   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  // ModContainingCWD returns the main module containing the working directory,
   228  // or module.Version{} if none of the main modules contain the working
   229  // directory.
   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  // GoVersion returns the go version set on the single module, in module mode,
   239  // or the go.work file in workspace mode.
   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  			// Special case: we are outside a module, like 'go run x.go'.
   248  			// Assume the local Go version.
   249  			// TODO(#49228): Clean this up; see loadModFile.
   250  			return gover.Local()
   251  		}
   252  		return gover.FromGoMod(f)
   253  	}
   254  	return gover.DefaultGoModVersion
   255  }
   256  
   257  // Godebugs returns the godebug lines set on the single module, in module mode,
   258  // or on the go.work file in workspace mode.
   259  // The caller must not modify the result.
   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  			// Special case: we are outside a module, like 'go run x.go'.
   271  			return nil
   272  		}
   273  		return f.Godebug
   274  	}
   275  	return nil
   276  }
   277  
   278  // Toolchain returns the toolchain set on the single module, in module mode,
   279  // or the go.work file in workspace mode.
   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  			// Special case: we are outside a module, like 'go run x.go'.
   291  			// Assume the local Go version.
   292  			// TODO(#49228): Clean this up; see loadModFile.
   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  	// AutoRoot is the default for most commands. modload.Init will look for
   312  	// a go.mod file in the current directory or any parent. If none is found,
   313  	// modules may be disabled (GO111MODULE=auto) or commands may run in a
   314  	// limited module mode.
   315  	AutoRoot Root = iota
   316  
   317  	// NoRoot is used for commands that run in module mode and ignore any go.mod
   318  	// file the current directory or in parent directories.
   319  	NoRoot
   320  
   321  	// NeedRoot is used for commands that must run in module mode and don't
   322  	// make sense without a main module.
   323  	NeedRoot
   324  )
   325  
   326  // ModFile returns the parsed go.mod file.
   327  //
   328  // Note that after calling LoadPackages or LoadModGraph,
   329  // the require statements in the modfile.File are no longer
   330  // the source of truth and will be ignored: edits made directly
   331  // will be lost at the next call to WriteGoMod.
   332  // To make permanent changes to the require statements
   333  // in go.mod, edit it before loading.
   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  // InitWorkfile initializes the workFilePath variable for commands that
   355  // operate in workspace mode. It should not be called by other commands,
   356  // for example 'go mod tidy', that don't operate in workspace mode.
   357  func InitWorkfile() {
   358  	// Initialize fsys early because we need overlay to read go.work file.
   359  	fips140.Init()
   360  	if err := fsys.Init(); err != nil {
   361  		base.Fatal(err)
   362  	}
   363  	workFilePath = FindGoWork(base.Cwd())
   364  }
   365  
   366  // FindGoWork returns the name of the go.work file for this command,
   367  // or the empty string if there isn't one.
   368  // Most code should use Init and Enabled rather than use this directly.
   369  // It is exported mainly for Go toolchain switching, which must process
   370  // the go.work very early at startup.
   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  // WorkFilePath returns the absolute path of the go.work file, or "" if not in
   390  // workspace mode. WorkFilePath must be called after InitWorkfile.
   391  func WorkFilePath() string {
   392  	return workFilePath
   393  }
   394  
   395  // Reset clears all the initialized, cached state about the use of modules,
   396  // so that we can start over.
   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  // Init determines whether module mode is enabled, locates the root of the
   410  // current module (if any), sets environment variables for Git subprocesses, and
   411  // configures the cfg, codehost, load, modfetch, and search packages for use
   412  // with modules.
   413  func Init() {
   414  	if initialized {
   415  		return
   416  	}
   417  	initialized = true
   418  
   419  	fips140.Init()
   420  
   421  	// Keep in sync with WillBeEnabled. We perform extra validation here, and
   422  	// there are lots of diagnostics and side effects, so we can't use
   423  	// WillBeEnabled directly.
   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  	// Disable any prompting for passwords by Git.
   446  	// Only has an effect for 2.3.0 or later, but avoiding
   447  	// the prompt in earlier versions is just too hard.
   448  	// If user has explicitly set GIT_TERMINAL_PROMPT=1, keep
   449  	// prompting.
   450  	// See golang.org/issue/9341 and golang.org/issue/12706.
   451  	if os.Getenv("GIT_TERMINAL_PROMPT") == "" {
   452  		os.Setenv("GIT_TERMINAL_PROMPT", "0")
   453  	}
   454  
   455  	// Disable any ssh connection pooling by Git.
   456  	// If a Git subprocess forks a child into the background to cache a new connection,
   457  	// that child keeps stdout/stderr open. After the Git subprocess exits,
   458  	// os/exec expects to be able to read from the stdout/stderr pipe
   459  	// until EOF to get all the data that the Git subprocess wrote before exiting.
   460  	// The EOF doesn't come until the child exits too, because the child
   461  	// is holding the write end of the pipe.
   462  	// This is unfortunate, but it has come up at least twice
   463  	// (see golang.org/issue/13453 and golang.org/issue/16104)
   464  	// and confuses users when it does.
   465  	// If the user has explicitly set GIT_SSH or GIT_SSH_COMMAND,
   466  	// assume they know what they are doing and don't step on it.
   467  	// But default to turning off ControlMaster.
   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  		// modRoot set before Init was called ("go mod init" does this).
   477  		// No need to search for go.mod.
   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  		// We're in workspace mode, which implies module mode.
   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  				// GO111MODULE is 'auto', and we can't find a module root.
   498  				// Stay in GOPATH mode.
   499  				return
   500  			}
   501  		} else if search.InDir(modRoot, os.TempDir()) == "." {
   502  			// If you create /tmp/go.mod for experimenting,
   503  			// then any tests that create work directories under /tmp
   504  			// will find it and get modules when they're not expecting them.
   505  			// It's a bit of a peculiar thing to disallow but quite mysterious
   506  			// when it happens. See golang.org/issue/26708.
   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  	// We're in module mode. Set any global variables that need to be set.
   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  // WillBeEnabled checks whether modules should be enabled but does not
   541  // initialize modules by installing hooks. If Init has already been called,
   542  // WillBeEnabled returns the same result as Enabled.
   543  //
   544  // This function is needed to break a cycle. The main package needs to know
   545  // whether modules are enabled in order to install the module or GOPATH version
   546  // of 'go get', but Init reads the -modfile flag in 'go get', so it shouldn't
   547  // be called until the command is installed and flags are parsed. Instead of
   548  // calling Init and Enabled, the main package can call this function.
   549  func WillBeEnabled() bool {
   550  	if modRoots != nil || cfg.ModulesEnabled {
   551  		// Already enabled.
   552  		return true
   553  	}
   554  	if initialized {
   555  		// Initialized, not enabled.
   556  		return false
   557  	}
   558  
   559  	// Keep in sync with Init. Init does extra validation and prints warnings or
   560  	// exits, so it can't call this function directly.
   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  // FindGoMod returns the name of the go.mod file for this command,
   575  // or the empty string if there isn't one.
   576  // Most code should use Init and Enabled rather than use this directly.
   577  // It is exported mainly for Go toolchain switching, which must process
   578  // the go.mod very early at startup.
   579  func FindGoMod(wd string) string {
   580  	modRoot := findModuleRoot(wd)
   581  	if modRoot == "" {
   582  		// GO111MODULE is 'auto', and we can't find a module root.
   583  		// Stay in GOPATH mode.
   584  		return ""
   585  	}
   586  	if search.InDir(modRoot, os.TempDir()) == "." {
   587  		// If you create /tmp/go.mod for experimenting,
   588  		// then any tests that create work directories under /tmp
   589  		// will find it and get modules when they're not expecting them.
   590  		// It's a bit of a peculiar thing to disallow but quite mysterious
   591  		// when it happens. See golang.org/issue/26708.
   592  		return ""
   593  	}
   594  	return filepath.Join(modRoot, "go.mod")
   595  }
   596  
   597  // Enabled reports whether modules are (or must be) enabled.
   598  // If modules are enabled but there is no main module, Enabled returns true
   599  // and then the first use of module information will call die
   600  // (usually through MustModRoot).
   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  	// Even if -mod=vendor, we could be operating with no mod root (and thus no
   611  	// vendor directory). As long as there are no dependencies that is expected
   612  	// to work. See script/vendor_outside_module.txt.
   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  // HasModRoot reports whether a main module is present.
   631  // HasModRoot may return false even if Enabled returns true: for example, 'get'
   632  // does not require a main module.
   633  func HasModRoot() bool {
   634  	Init()
   635  	return modRoots != nil
   636  }
   637  
   638  // MustHaveModRoot checks that a main module or main modules are present,
   639  // and calls base.Fatalf if there are no main modules.
   640  func MustHaveModRoot() {
   641  	Init()
   642  	if !HasModRoot() {
   643  		die()
   644  	}
   645  }
   646  
   647  // ModFilePath returns the path that would be used for the go.mod
   648  // file, if in module mode. ModFilePath calls base.Fatalf if there is no main
   649  // module, even if -modfile is set.
   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  // ReadWorkFile reads and parses the go.work file at the given path.
   729  func ReadWorkFile(path string) (*modfile.WorkFile, error) {
   730  	path = base.ShortPath(path) // use short path in any errors
   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  // WriteWorkFile cleans and writes out the go.work file to the given path.
   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  // UpdateWorkGoVersion updates the go line in wf to be at least goVers,
   756  // reporting whether it changed the file.
   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  	// We wrote a new go line. For reproducibility,
   766  	// if the toolchain running right now is newer than the new toolchain line,
   767  	// update the toolchain line to record the newer toolchain.
   768  	// The user never sets the toolchain explicitly in a 'go work' command,
   769  	// so this is only happening as a result of a go or toolchain line found
   770  	// in a module.
   771  	// If the toolchain running right now is a dev toolchain (like "go1.21")
   772  	// writing 'toolchain go1.21' will not be useful, since that's not an actual
   773  	// toolchain you can download and run. In that case fall back to at least
   774  	// checking that the toolchain is new enough for the Go version.
   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  	// Drop the toolchain line if it is implied by the go line
   786  	// or if it is asking for a toolchain older than Go 1.21,
   787  	// which will not understand the toolchain line.
   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  // UpdateWorkFile updates comments on directory directives in the go.work
   797  // file to include the associated module path.
   798  func UpdateWorkFile(wf *modfile.WorkFile) {
   799  	missingModulePaths := map[string]string{} // module directory listed in file -> abspath modroot
   800  
   801  	for _, d := range wf.Use {
   802  		if d.Path == "" {
   803  			continue // d is marked for deletion.
   804  		}
   805  		modRoot := d.Path
   806  		if d.ModulePath == "" {
   807  			missingModulePaths[d.Path] = modRoot
   808  		}
   809  	}
   810  
   811  	// Clean up and annotate directories.
   812  	// TODO(matloob): update x/mod to actually add module paths.
   813  	for moddir, absmodroot := range missingModulePaths {
   814  		_, f, err := ReadModFile(filepath.Join(absmodroot, "go.mod"), nil)
   815  		if err != nil {
   816  			continue // Error will be reported if modules are loaded.
   817  		}
   818  		wf.AddUse(moddir, f.Module.Mod.Path)
   819  	}
   820  }
   821  
   822  // LoadModFile sets Target and, if there is a main module, parses the initial
   823  // build list from its go.mod file.
   824  //
   825  // LoadModFile may make changes in memory, like adding a go directive and
   826  // ensuring requirements are consistent. The caller is responsible for ensuring
   827  // those changes are written to disk by calling LoadPackages or ListModules
   828  // (unless ExplicitWriteGoMod is set) or by calling WriteGoMod directly.
   829  //
   830  // As a side-effect, LoadModFile may change cfg.BuildMod to "vendor" if
   831  // -mod wasn't set explicitly and automatic vendoring should be enabled.
   832  //
   833  // If LoadModFile or CreateModFile has already been called, LoadModFile returns
   834  // the existing in-memory requirements (rather than re-reading them from disk).
   835  //
   836  // LoadModFile checks the roots of the module graph for consistency with each
   837  // other, but unlike LoadModGraph does not load the full module graph or check
   838  // it for global consistency. Most callers outside of the modload package should
   839  // use LoadModGraph instead.
   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  		// We're in module mode, but not inside a module.
   868  		//
   869  		// Commands like 'go build', 'go run', 'go list' have no go.mod file to
   870  		// read or write. They would need to find and download the latest versions
   871  		// of a potentially large number of modules with no way to save version
   872  		// information. We can succeed slowly (but not reproducibly), but that's
   873  		// not usually a good experience.
   874  		//
   875  		// Instead, we forbid resolving import paths to modules other than std and
   876  		// cmd. Users may still build packages specified with .go files on the
   877  		// command line, but they'll see an error if those files import anything
   878  		// outside std.
   879  		//
   880  		// This can be overridden by calling AllowMissingModuleImports.
   881  		// For example, 'go get' does this, since it is expected to resolve paths.
   882  		//
   883  		// See golang.org/issue/32027.
   884  	} else {
   885  		modfetch.GoSumFile = strings.TrimSuffix(modFilePath(modRoots[0]), ".mod") + ".sum"
   886  	}
   887  	if len(modRoots) == 0 {
   888  		// TODO(#49228): Instead of creating a fake module with an empty modroot,
   889  		// make MainModules.Len() == 0 mean that we're in module mode but not inside
   890  		// any module.
   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  			// Since we are in a workspace, the Go version for the synthetic
   901  			// "command-line-arguments" module must not exceed the Go version
   902  			// for the workspace.
   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  			// For issue 56536: Some users may have GOFLAGS=-mod=vendor set.
   922  			// Make sure it behaves as though the fake module is vendored
   923  			// with no dependencies.
   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  					// Switching to a newer toolchain won't help - the go.work has the wrong version.
   941  					// Report this more specific error, unless we are a command like 'go work use'
   942  					// or 'go work sync', which will fix the problem after the caller sees the TooNewError
   943  					// and switches to a newer toolchain.
   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  			// Refuse to use workspace if its go version is too old.
   955  			// Disable this check if we are a workspace command like work use or work sync,
   956  			// which will fix the problem.
   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() // possibly enable automatic vendoring
   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  		// We don't need to update the mod file so return early.
  1015  		requirements = rs
  1016  		return rs, nil
  1017  	}
  1018  
  1019  	mainModule := MainModules.mustGetSingleMainModule()
  1020  
  1021  	if rs.hasRedundantRoot() {
  1022  		// If any module path appears more than once in the roots, we know that the
  1023  		// go.mod file needs to be updated even though we have not yet loaded any
  1024  		// transitive dependencies.
  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  		// TODO(#45551): Do something more principled instead of checking
  1034  		// cfg.CmdName directly here.
  1035  		if cfg.BuildMod == "mod" && cfg.CmdName != "mod graph" && cfg.CmdName != "mod why" {
  1036  			// go line is missing from go.mod; add one there and add to derived requirements.
  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  			// We need to add a 'go' version to the go.mod file, but we must assume
  1045  			// that its existing contents match something between Go 1.11 and 1.16.
  1046  			// Go 1.11 through 1.16 do not support graph pruning, but the latest Go
  1047  			// version uses a pruned module graph — so we need to convert the
  1048  			// requirements to support pruning.
  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  		// A go.work file implicitly requires go1.18
  1069  		// even when it doesn't list any version.
  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  // CreateModFile initializes a new module by creating a go.mod file.
  1077  //
  1078  // If modPath is empty, CreateModFile will attempt to infer the path from the
  1079  // directory location within GOPATH.
  1080  //
  1081  // If a vendoring configuration file is present, CreateModFile will attempt to
  1082  // translate it to go.mod directives. The resulting build list may not be
  1083  // exactly the same as in the legacy configuration (for example, we can't get
  1084  // packages at multiple versions from the same module).
  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  			// Same as build.IsLocalPath()
  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()) // Add the go directive before converted module requirements.
  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  	// Suggest running 'go mod tidy' unless the project is empty. Even if we
  1136  	// imported all the correct requirements above, we're probably missing
  1137  	// some sums, so the next build command in -mod=readonly will likely fail.
  1138  	//
  1139  	// We look for non-hidden .go files or subdirectories to determine whether
  1140  	// this is an existing project. Walking the tree for packages would be more
  1141  	// accurate, but could take much longer.
  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  // fixVersion returns a modfile.VersionFixer implemented using the Query function.
  1160  //
  1161  // It resolves commit hashes and branch names to versions,
  1162  // canonicalizes versions that appeared in early vgo drafts,
  1163  // and does nothing for versions that already appear to be canonical.
  1164  //
  1165  // The VersionFixer sets 'fixed' if it ever returns a non-canonical version.
  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  		// Special case: remove the old -gopkgin- hack.
  1175  		if strings.HasPrefix(path, "gopkg.in/") && strings.Contains(vers, "-gopkgin-") {
  1176  			vers = vers[strings.Index(vers, "-gopkgin-")+len("-gopkgin-"):]
  1177  		}
  1178  
  1179  		// fixVersion is called speculatively on every
  1180  		// module, version pair from every go.mod file.
  1181  		// Avoid the query if it looks OK.
  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  // AllowMissingModuleImports allows import paths to be resolved to modules
  1208  // when there is no module root. Normally, this is forbidden because it's slow
  1209  // and there's no way to make the result reproducible, but some commands
  1210  // like 'go get' are expected to do this.
  1211  //
  1212  // This function affects the default cfg.BuildMod when outside of a module,
  1213  // so it can only be called prior to Init.
  1214  func AllowMissingModuleImports() {
  1215  	if initialized {
  1216  		panic("AllowMissingModuleImports after Init")
  1217  	}
  1218  	allowMissingModuleImports = true
  1219  }
  1220  
  1221  // makeMainModules creates a MainModuleSet and associated variables according to
  1222  // the given main modules.
  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  				// The "std" module in GOROOT/src is the Go standard library. Unlike other
  1280  				// modules, the packages in the "std" module have no import-path prefix.
  1281  				//
  1282  				// Modules named "std" outside of GOROOT/src do not receive this special
  1283  				// treatment, so it is possible to run 'go test .' in other GOROOTs to
  1284  				// test individual packages using a combination of the modified package
  1285  				// and the ordinary standard library.
  1286  				// (See https://golang.org/issue/30756.)
  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  					// Since we are in a workspace, we may be loading replacements from
  1300  					// multiple go.mod files. Relative paths in those replacement are
  1301  					// relative to the go.mod file, not the workspace, so the same string
  1302  					// may refer to two different paths and different strings may refer to
  1303  					// the same path. Convert them all to be absolute instead.
  1304  					//
  1305  					// (We could do this outside of a workspace too, but it would mean that
  1306  					// replacement paths in error strings needlessly differ from what's in
  1307  					// the go.mod file.)
  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  // requirementsFromModFiles returns the set of non-excluded requirements from
  1339  // the global modFile.
  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 // Add padding for the toolchain and go version, added upon return.
  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  	// Add explicit go and toolchain versions, inferring as needed.
  1421  	roots = append(roots, module.Version{Path: "go", Version: goVersion})
  1422  	direct["go"] = true // Every module directly uses the language and runtime.
  1423  
  1424  	if toolchain != "" {
  1425  		roots = append(roots, module.Version{Path: "toolchain", Version: toolchain})
  1426  		// Leave the toolchain as indirect: nothing in the user's module directly
  1427  		// imports a package from the toolchain, and (like an indirect dependency in
  1428  		// a module without graph pruning) we may remove the toolchain line
  1429  		// automatically if the 'go' version is changed so that it implies the exact
  1430  		// same toolchain.
  1431  	}
  1432  	return roots
  1433  }
  1434  
  1435  // setDefaultBuildMod sets a default value for cfg.BuildMod if the -mod flag
  1436  // wasn't provided. setDefaultBuildMod may be called multiple times.
  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  				// These commands run with BuildMod set to mod, but they don't take the
  1443  				// -mod flag, so we should never get here.
  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  		// Don't override an explicit '-mod=' argument.
  1452  		return
  1453  	}
  1454  
  1455  	// TODO(#40775): commands should pass in the module mode as an option
  1456  	// to modload functions instead of relying on an implicit setting
  1457  	// based on command name.
  1458  	switch cfg.CmdName {
  1459  	case "get", "mod download", "mod init", "mod tidy", "work sync":
  1460  		// These commands are intended to update go.mod and go.sum.
  1461  		cfg.BuildMod = "mod"
  1462  		return
  1463  	case "mod graph", "mod verify", "mod why":
  1464  		// These commands should not update go.mod or go.sum, but they should be
  1465  		// able to fetch modules not in go.sum and should not report errors if
  1466  		// go.mod is inconsistent. They're useful for debugging, and they need
  1467  		// to work in buggy situations.
  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  					// The go version is less than 1.14. Don't set -mod=vendor by default.
  1511  					// Since a vendor directory exists, we should record why we didn't use it.
  1512  					// This message won't normally be shown, but it may appear with import errors.
  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  						// The Go version is at least 1.14, a vendor directory exists, and
  1527  						// the modules.txt was generated in the same mode the command is running in.
  1528  						// Set -mod=vendor by default.
  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  		// Some vendor directories exist that don't contain modules.txt.
  1547  		// This mostly happens when converting to modules.
  1548  		// We want to preserve the behavior that mod=vendor is set (even though
  1549  		// readVendorList does nothing in that case).
  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  // addGoStmt adds a go directive to the go.mod file if it does not already
  1578  // include one. The 'go' version added, if any, is the latest version supported
  1579  // by this toolchain.
  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  	// Look for enclosing go.mod.
  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  	// Look for enclosing go.mod.
  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  			// As a special case, don't cross GOROOT to find a go.work file.
  1636  			// The standard library and commands built in go always use the vendored
  1637  			// dependencies, so avoid using a most likely irrelevant go.work file.
  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  		// Don't suggest creating a module from $GOROOT/.git/config
  1652  		// or a config file found in any parent of $GOROOT (see #34191).
  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  	// TODO(bcmills): once we have located a plausible module path, we should
  1672  	// query version control (if available) to verify that it matches the major
  1673  	// version of the most recent tag.
  1674  	// See https://golang.org/issue/29433, https://golang.org/issue/27009, and
  1675  	// https://golang.org/issue/31549.
  1676  
  1677  	// Cast about for import comments,
  1678  	// first in top-level directory, then in subdirectories.
  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  	// Look for Godeps.json declaring import path.
  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  	// Look for vendor.json declaring import path.
  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  	// Look for path in GOPATH.
  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  			// gorelease will alert users publishing their modules to fix their paths.
  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  		// return a different error message if the module was in GOPATH, but
  1736  		// the module path determined above would be an invalid path.
  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  // WriteOpts control the behavior of WriteGoMod.
  1771  type WriteOpts struct {
  1772  	DropToolchain     bool // go get toolchain@none
  1773  	ExplicitToolchain bool // go get has set explicit toolchain version
  1774  
  1775  	AddTools  []string // go get -tool example.com/m1
  1776  	DropTools []string // go get -tool example.com/m1@none
  1777  
  1778  	// TODO(bcmills): Make 'go mod tidy' update the go version in the Requirements
  1779  	// instead of writing directly to the modfile.File
  1780  	TidyWroteGo bool // Go.Version field already updated by 'go mod tidy'
  1781  }
  1782  
  1783  // WriteGoMod writes the current build list back to go.mod.
  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  // UpdateGoModFromReqs returns a modified go.mod file using the current
  1792  // requirements. It does not commit these changes to disk.
  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  		// We aren't in a module, so we don't have anywhere to write a go.mod file.
  1796  		return nil, nil, nil, errNoChange
  1797  	}
  1798  	mainModule := MainModules.mustGetSingleMainModule()
  1799  	modFile = MainModules.ModFile(mainModule)
  1800  	if modFile == nil {
  1801  		// command-line-arguments has no .mod file to write.
  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  	// Update go line.
  1828  	// Every MVS graph we consider should have go as a root,
  1829  	// and toolchain is either implied by the go line or explicitly a root.
  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  		// We cannot assume that we know how to update a go.mod to a newer version.
  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  			// The go.mod has no go line, the implied default Go version matches
  1842  			// what we've computed for the graph, and we're not in one of the
  1843  			// traditional go.mod-updating programs, so leave it alone.
  1844  		} else {
  1845  			wroteGo = true
  1846  			forceGoStmt(modFile, mainModule, goVersion)
  1847  		}
  1848  	}
  1849  	if toolchain == "" {
  1850  		toolchain = "go" + goVersion
  1851  	}
  1852  
  1853  	// For reproducibility, if we are writing a new go line,
  1854  	// and we're not explicitly modifying the toolchain line with 'go get toolchain@something',
  1855  	// and the go version is one that supports switching toolchains,
  1856  	// and the toolchain running right now is newer than the current toolchain line,
  1857  	// then update the toolchain line to record the newer toolchain.
  1858  	//
  1859  	// TODO(#57001): This condition feels too complicated. Can we simplify it?
  1860  	// TODO(#57001): Add more tests for toolchain lines.
  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  		// go get toolchain@none or toolchain matches go line or isn't valid; drop it.
  1871  		// TODO(#57001): 'go get' should reject explicit toolchains below GoStrictVersion.
  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  	// Update require blocks.
  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  // commitRequirements ensures go.mod and go.sum are up to date with the current
  1900  // requirements.
  1901  //
  1902  // In "mod" mode, commitRequirements writes changes to go.mod and go.sum.
  1903  //
  1904  // In "readonly" and "vendor" modes, commitRequirements returns an error if
  1905  // go.mod or go.sum are out of date in a semantically significant way.
  1906  //
  1907  // In workspace mode, commitRequirements only writes changes to go.work.sum.
  1908  func commitRequirements(ctx context.Context, opts WriteOpts) (err error) {
  1909  	if inWorkspaceMode() {
  1910  		// go.mod files aren't updated in workspace mode, but we still want to
  1911  		// update the go.work.sum file.
  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  		// If we're about to fail due to -mod=readonly,
  1926  		// prefer to report a dirty go.mod over a dirty go.sum
  1927  		return errGoModDirty
  1928  	}
  1929  
  1930  	if !dirty && cfg.CmdName != "mod tidy" {
  1931  		// The go.mod file has the same semantic content that it had before
  1932  		// (but not necessarily the same exact bytes).
  1933  		// Don't write go.mod, but write go.sum in case we added or trimmed sums.
  1934  		// 'go mod init' shouldn't write go.sum, since it will be incomplete.
  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  		// At this point we have determined to make the go.mod file on disk equal to new.
  1953  		MainModules.SetIndex(mainModule, indexModFile(updatedGoMod, modFile, mainModule, false))
  1954  
  1955  		// Update go.sum after releasing the side lock and refreshing the index.
  1956  		// 'go mod init' shouldn't write go.sum, since it will be incomplete.
  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  	// Make a best-effort attempt to acquire the side lock, only to exclude
  1965  	// previous versions of the 'go' command from making simultaneous edits.
  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  			// The go.mod file is already equal to new, possibly as the result of some
  1973  			// other process.
  1974  			return nil, errNoChange
  1975  		}
  1976  
  1977  		if index != nil && !bytes.Equal(old, index.data) {
  1978  			// The contents of the go.mod file have changed. In theory we could add all
  1979  			// of the new modules to the build list, recompute, and check whether any
  1980  			// module in *our* build list got bumped to a different version, but that's
  1981  			// a lot of work for marginal benefit. Instead, fail the command: if users
  1982  			// want to run concurrent commands, they need to start with a complete,
  1983  			// consistent module definition.
  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  // keepSums returns the set of modules (and go.mod file entries) for which
  1997  // checksums would be needed in order to reload the same set of packages
  1998  // loaded by the most recent call to LoadPackages or ImportFromFiles,
  1999  // including any go.mod files needed to reconstruct the MVS result
  2000  // or identify go versions,
  2001  // in addition to the checksums for every module in keepMods.
  2002  func keepSums(ctx context.Context, ld *loader, rs *Requirements, which whichSums) map[module.Version]bool {
  2003  	// Every module in the full module graph contributes its requirements,
  2004  	// so in order to ensure that the build list itself is reproducible,
  2005  	// we need sums for every go.mod in the graph (regardless of whether
  2006  	// that version is selected).
  2007  	keep := make(map[module.Version]bool)
  2008  
  2009  	// Add entries for modules in the build list with paths that are prefixes of
  2010  	// paths of loaded packages. We need to retain sums for all of these modules —
  2011  	// not just the modules containing the actual packages — in order to rule out
  2012  	// ambiguous import errors the next time we load the package.
  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  			// We check pkg.mod.Path here instead of pkg.inStd because the
  2026  			// pseudo-package "C" is not in std, but not provided by any module (and
  2027  			// shouldn't force loading the whole module graph).
  2028  			if pkg.testOf != nil || (pkg.mod.Path == "" && pkg.err == nil) || module.CheckImportPath(pkg.path) != nil {
  2029  				continue
  2030  			}
  2031  
  2032  			// We need the checksum for the go.mod file for pkg.mod
  2033  			// so that we know what Go version to use to compile pkg.
  2034  			// However, we didn't do so before Go 1.21, and the bug is relatively
  2035  			// minor, so we maintain the previous (buggy) behavior in 'go mod tidy' to
  2036  			// avoid introducing unnecessary churn.
  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  					// pkg was loaded from a root module, and because the main module has
  2045  					// a pruned module graph we do not check non-root modules for
  2046  					// conflicts for packages that can be found in roots. So we only need
  2047  					// the checksums for the root modules that may contain pkg, not all
  2048  					// possible modules.
  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  		// We haven't needed to load the module graph so far.
  2073  		// Save sums for the root modules (or their replacements), but don't
  2074  		// incur the cost of loading the graph just to find and retain the sums.
  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  				// The requirements from m's go.mod file are present in the module graph,
  2087  				// so they are relevant to the MVS result regardless of whether m was
  2088  				// actually selected.
  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 // we need the go version from the go.mod file to do anything useful with the zipfile
  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  // modkey returns the module.Version under which the checksum for m's go.mod
  2116  // file is stored in the go.sum file.
  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