Source file src/cmd/go/internal/work/exec.go

     1  // Copyright 2011 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  // Action graph execution.
     6  
     7  package work
     8  
     9  import (
    10  	"bytes"
    11  	"cmd/internal/cov/covcmd"
    12  	"cmd/internal/pathcache"
    13  	"context"
    14  	"crypto/sha256"
    15  	"encoding/json"
    16  	"errors"
    17  	"fmt"
    18  	"go/token"
    19  	"internal/lazyregexp"
    20  	"io"
    21  	"io/fs"
    22  	"log"
    23  	"math/rand"
    24  	"os"
    25  	"os/exec"
    26  	"path/filepath"
    27  	"regexp"
    28  	"runtime"
    29  	"slices"
    30  	"sort"
    31  	"strconv"
    32  	"strings"
    33  	"sync"
    34  	"time"
    35  
    36  	"cmd/go/internal/base"
    37  	"cmd/go/internal/cache"
    38  	"cmd/go/internal/cfg"
    39  	"cmd/go/internal/fsys"
    40  	"cmd/go/internal/gover"
    41  	"cmd/go/internal/load"
    42  	"cmd/go/internal/modload"
    43  	"cmd/go/internal/str"
    44  	"cmd/go/internal/trace"
    45  	"cmd/internal/buildid"
    46  	"cmd/internal/quoted"
    47  	"cmd/internal/sys"
    48  )
    49  
    50  const DefaultCFlags = "-O2 -g"
    51  
    52  // actionList returns the list of actions in the dag rooted at root
    53  // as visited in a depth-first post-order traversal.
    54  func actionList(root *Action) []*Action {
    55  	seen := map[*Action]bool{}
    56  	all := []*Action{}
    57  	var walk func(*Action)
    58  	walk = func(a *Action) {
    59  		if seen[a] {
    60  			return
    61  		}
    62  		seen[a] = true
    63  		for _, a1 := range a.Deps {
    64  			walk(a1)
    65  		}
    66  		all = append(all, a)
    67  	}
    68  	walk(root)
    69  	return all
    70  }
    71  
    72  // Do runs the action graph rooted at root.
    73  func (b *Builder) Do(ctx context.Context, root *Action) {
    74  	ctx, span := trace.StartSpan(ctx, "exec.Builder.Do ("+root.Mode+" "+root.Target+")")
    75  	defer span.Done()
    76  
    77  	if !b.IsCmdList {
    78  		// If we're doing real work, take time at the end to trim the cache.
    79  		c := cache.Default()
    80  		defer func() {
    81  			if err := c.Close(); err != nil {
    82  				base.Fatalf("go: failed to trim cache: %v", err)
    83  			}
    84  		}()
    85  	}
    86  
    87  	// Build list of all actions, assigning depth-first post-order priority.
    88  	// The original implementation here was a true queue
    89  	// (using a channel) but it had the effect of getting
    90  	// distracted by low-level leaf actions to the detriment
    91  	// of completing higher-level actions. The order of
    92  	// work does not matter much to overall execution time,
    93  	// but when running "go test std" it is nice to see each test
    94  	// results as soon as possible. The priorities assigned
    95  	// ensure that, all else being equal, the execution prefers
    96  	// to do what it would have done first in a simple depth-first
    97  	// dependency order traversal.
    98  	all := actionList(root)
    99  	for i, a := range all {
   100  		a.priority = i
   101  	}
   102  
   103  	// Write action graph, without timing information, in case we fail and exit early.
   104  	writeActionGraph := func() {
   105  		if file := cfg.DebugActiongraph; file != "" {
   106  			if strings.HasSuffix(file, ".go") {
   107  				// Do not overwrite Go source code in:
   108  				//	go build -debug-actiongraph x.go
   109  				base.Fatalf("go: refusing to write action graph to %v\n", file)
   110  			}
   111  			js := actionGraphJSON(root)
   112  			if err := os.WriteFile(file, []byte(js), 0666); err != nil {
   113  				fmt.Fprintf(os.Stderr, "go: writing action graph: %v\n", err)
   114  				base.SetExitStatus(1)
   115  			}
   116  		}
   117  	}
   118  	writeActionGraph()
   119  
   120  	b.readySema = make(chan bool, len(all))
   121  
   122  	// Initialize per-action execution state.
   123  	for _, a := range all {
   124  		for _, a1 := range a.Deps {
   125  			a1.triggers = append(a1.triggers, a)
   126  		}
   127  		a.pending = len(a.Deps)
   128  		if a.pending == 0 {
   129  			b.ready.push(a)
   130  			b.readySema <- true
   131  		}
   132  	}
   133  
   134  	// Handle runs a single action and takes care of triggering
   135  	// any actions that are runnable as a result.
   136  	handle := func(ctx context.Context, a *Action) {
   137  		if a.json != nil {
   138  			a.json.TimeStart = time.Now()
   139  		}
   140  		var err error
   141  		if a.Actor != nil && (a.Failed == nil || a.IgnoreFail) {
   142  			// TODO(matloob): Better action descriptions
   143  			desc := "Executing action (" + a.Mode
   144  			if a.Package != nil {
   145  				desc += " " + a.Package.Desc()
   146  			}
   147  			desc += ")"
   148  			ctx, span := trace.StartSpan(ctx, desc)
   149  			a.traceSpan = span
   150  			for _, d := range a.Deps {
   151  				trace.Flow(ctx, d.traceSpan, a.traceSpan)
   152  			}
   153  			err = a.Actor.Act(b, ctx, a)
   154  			span.Done()
   155  		}
   156  		if a.json != nil {
   157  			a.json.TimeDone = time.Now()
   158  		}
   159  
   160  		// The actions run in parallel but all the updates to the
   161  		// shared work state are serialized through b.exec.
   162  		b.exec.Lock()
   163  		defer b.exec.Unlock()
   164  
   165  		if err != nil {
   166  			if b.AllowErrors && a.Package != nil {
   167  				if a.Package.Error == nil {
   168  					a.Package.Error = &load.PackageError{Err: err}
   169  					a.Package.Incomplete = true
   170  				}
   171  			} else {
   172  				var ipe load.ImportPathError
   173  				if a.Package != nil && (!errors.As(err, &ipe) || ipe.ImportPath() != a.Package.ImportPath) {
   174  					err = fmt.Errorf("%s: %v", a.Package.ImportPath, err)
   175  				}
   176  				sh := b.Shell(a)
   177  				sh.Errorf("%s", err)
   178  			}
   179  			if a.Failed == nil {
   180  				a.Failed = a
   181  			}
   182  		}
   183  
   184  		for _, a0 := range a.triggers {
   185  			if a.Failed != nil {
   186  				a0.Failed = a.Failed
   187  			}
   188  			if a0.pending--; a0.pending == 0 {
   189  				b.ready.push(a0)
   190  				b.readySema <- true
   191  			}
   192  		}
   193  
   194  		if a == root {
   195  			close(b.readySema)
   196  		}
   197  	}
   198  
   199  	var wg sync.WaitGroup
   200  
   201  	// Kick off goroutines according to parallelism.
   202  	// If we are using the -n flag (just printing commands)
   203  	// drop the parallelism to 1, both to make the output
   204  	// deterministic and because there is no real work anyway.
   205  	par := cfg.BuildP
   206  	if cfg.BuildN {
   207  		par = 1
   208  	}
   209  	for i := 0; i < par; i++ {
   210  		wg.Add(1)
   211  		go func() {
   212  			ctx := trace.StartGoroutine(ctx)
   213  			defer wg.Done()
   214  			for {
   215  				select {
   216  				case _, ok := <-b.readySema:
   217  					if !ok {
   218  						return
   219  					}
   220  					// Receiving a value from b.readySema entitles
   221  					// us to take from the ready queue.
   222  					b.exec.Lock()
   223  					a := b.ready.pop()
   224  					b.exec.Unlock()
   225  					handle(ctx, a)
   226  				case <-base.Interrupted:
   227  					base.SetExitStatus(1)
   228  					return
   229  				}
   230  			}
   231  		}()
   232  	}
   233  
   234  	wg.Wait()
   235  
   236  	// Write action graph again, this time with timing information.
   237  	writeActionGraph()
   238  }
   239  
   240  // buildActionID computes the action ID for a build action.
   241  func (b *Builder) buildActionID(a *Action) cache.ActionID {
   242  	p := a.Package
   243  	h := cache.NewHash("build " + p.ImportPath)
   244  
   245  	// Configuration independent of compiler toolchain.
   246  	// Note: buildmode has already been accounted for in buildGcflags
   247  	// and should not be inserted explicitly. Most buildmodes use the
   248  	// same compiler settings and can reuse each other's results.
   249  	// If not, the reason is already recorded in buildGcflags.
   250  	fmt.Fprintf(h, "compile\n")
   251  
   252  	// Include information about the origin of the package that
   253  	// may be embedded in the debug info for the object file.
   254  	if cfg.BuildTrimpath {
   255  		// When -trimpath is used with a package built from the module cache,
   256  		// its debug information refers to the module path and version
   257  		// instead of the directory.
   258  		if p.Module != nil {
   259  			fmt.Fprintf(h, "module %s@%s\n", p.Module.Path, p.Module.Version)
   260  		}
   261  	} else if p.Goroot {
   262  		// The Go compiler always hides the exact value of $GOROOT
   263  		// when building things in GOROOT.
   264  		//
   265  		// The C compiler does not, but for packages in GOROOT we rewrite the path
   266  		// as though -trimpath were set. This used to be so that we did not invalidate
   267  		// the build cache (and especially precompiled archive files) when changing
   268  		// GOROOT_FINAL, but we no longer ship precompiled archive files as of Go 1.20
   269  		// (https://go.dev/issue/47257) and no longer support GOROOT_FINAL
   270  		// (https://go.dev/issue/62047).
   271  		// TODO(bcmills): Figure out whether this behavior is still useful.
   272  		//
   273  		// b.WorkDir is always either trimmed or rewritten to
   274  		// the literal string "/tmp/go-build".
   275  	} else if !strings.HasPrefix(p.Dir, b.WorkDir) {
   276  		// -trimpath is not set and no other rewrite rules apply,
   277  		// so the object file may refer to the absolute directory
   278  		// containing the package.
   279  		fmt.Fprintf(h, "dir %s\n", p.Dir)
   280  	}
   281  
   282  	if p.Module != nil {
   283  		fmt.Fprintf(h, "go %s\n", p.Module.GoVersion)
   284  	}
   285  	fmt.Fprintf(h, "goos %s goarch %s\n", cfg.Goos, cfg.Goarch)
   286  	fmt.Fprintf(h, "import %q\n", p.ImportPath)
   287  	fmt.Fprintf(h, "omitdebug %v standard %v local %v prefix %q\n", p.Internal.OmitDebug, p.Standard, p.Internal.Local, p.Internal.LocalPrefix)
   288  	if cfg.BuildTrimpath {
   289  		fmt.Fprintln(h, "trimpath")
   290  	}
   291  	if p.Internal.ForceLibrary {
   292  		fmt.Fprintf(h, "forcelibrary\n")
   293  	}
   294  	if len(p.CgoFiles)+len(p.SwigFiles)+len(p.SwigCXXFiles) > 0 {
   295  		fmt.Fprintf(h, "cgo %q\n", b.toolID("cgo"))
   296  		cppflags, cflags, cxxflags, fflags, ldflags, _ := b.CFlags(p)
   297  
   298  		ccExe := b.ccExe()
   299  		fmt.Fprintf(h, "CC=%q %q %q %q\n", ccExe, cppflags, cflags, ldflags)
   300  		// Include the C compiler tool ID so that if the C
   301  		// compiler changes we rebuild the package.
   302  		if ccID, _, err := b.gccToolID(ccExe[0], "c"); err == nil {
   303  			fmt.Fprintf(h, "CC ID=%q\n", ccID)
   304  		}
   305  		if len(p.CXXFiles)+len(p.SwigCXXFiles) > 0 {
   306  			cxxExe := b.cxxExe()
   307  			fmt.Fprintf(h, "CXX=%q %q\n", cxxExe, cxxflags)
   308  			if cxxID, _, err := b.gccToolID(cxxExe[0], "c++"); err == nil {
   309  				fmt.Fprintf(h, "CXX ID=%q\n", cxxID)
   310  			}
   311  		}
   312  		if len(p.FFiles) > 0 {
   313  			fcExe := b.fcExe()
   314  			fmt.Fprintf(h, "FC=%q %q\n", fcExe, fflags)
   315  			if fcID, _, err := b.gccToolID(fcExe[0], "f95"); err == nil {
   316  				fmt.Fprintf(h, "FC ID=%q\n", fcID)
   317  			}
   318  		}
   319  		// TODO(rsc): Should we include the SWIG version?
   320  	}
   321  	if p.Internal.Cover.Mode != "" {
   322  		fmt.Fprintf(h, "cover %q %q\n", p.Internal.Cover.Mode, b.toolID("cover"))
   323  	}
   324  	if p.Internal.FuzzInstrument {
   325  		if fuzzFlags := fuzzInstrumentFlags(); fuzzFlags != nil {
   326  			fmt.Fprintf(h, "fuzz %q\n", fuzzFlags)
   327  		}
   328  	}
   329  	if p.Internal.BuildInfo != nil {
   330  		fmt.Fprintf(h, "modinfo %q\n", p.Internal.BuildInfo.String())
   331  	}
   332  
   333  	// Configuration specific to compiler toolchain.
   334  	switch cfg.BuildToolchainName {
   335  	default:
   336  		base.Fatalf("buildActionID: unknown build toolchain %q", cfg.BuildToolchainName)
   337  	case "gc":
   338  		fmt.Fprintf(h, "compile %s %q %q\n", b.toolID("compile"), forcedGcflags, p.Internal.Gcflags)
   339  		if len(p.SFiles) > 0 {
   340  			fmt.Fprintf(h, "asm %q %q %q\n", b.toolID("asm"), forcedAsmflags, p.Internal.Asmflags)
   341  		}
   342  
   343  		// GOARM, GOMIPS, etc.
   344  		key, val, _ := cfg.GetArchEnv()
   345  		fmt.Fprintf(h, "%s=%s\n", key, val)
   346  
   347  		if cfg.CleanGOEXPERIMENT != "" {
   348  			fmt.Fprintf(h, "GOEXPERIMENT=%q\n", cfg.CleanGOEXPERIMENT)
   349  		}
   350  
   351  		// TODO(rsc): Convince compiler team not to add more magic environment variables,
   352  		// or perhaps restrict the environment variables passed to subprocesses.
   353  		// Because these are clumsy, undocumented special-case hacks
   354  		// for debugging the compiler, they are not settable using 'go env -w',
   355  		// and so here we use os.Getenv, not cfg.Getenv.
   356  		magic := []string{
   357  			"GOCLOBBERDEADHASH",
   358  			"GOSSAFUNC",
   359  			"GOSSADIR",
   360  			"GOCOMPILEDEBUG",
   361  		}
   362  		for _, env := range magic {
   363  			if x := os.Getenv(env); x != "" {
   364  				fmt.Fprintf(h, "magic %s=%s\n", env, x)
   365  			}
   366  		}
   367  
   368  	case "gccgo":
   369  		id, _, err := b.gccToolID(BuildToolchain.compiler(), "go")
   370  		if err != nil {
   371  			base.Fatalf("%v", err)
   372  		}
   373  		fmt.Fprintf(h, "compile %s %q %q\n", id, forcedGccgoflags, p.Internal.Gccgoflags)
   374  		fmt.Fprintf(h, "pkgpath %s\n", gccgoPkgpath(p))
   375  		fmt.Fprintf(h, "ar %q\n", BuildToolchain.(gccgoToolchain).ar())
   376  		if len(p.SFiles) > 0 {
   377  			id, _, _ = b.gccToolID(BuildToolchain.compiler(), "assembler-with-cpp")
   378  			// Ignore error; different assembler versions
   379  			// are unlikely to make any difference anyhow.
   380  			fmt.Fprintf(h, "asm %q\n", id)
   381  		}
   382  	}
   383  
   384  	// Input files.
   385  	inputFiles := str.StringList(
   386  		p.GoFiles,
   387  		p.CgoFiles,
   388  		p.CFiles,
   389  		p.CXXFiles,
   390  		p.FFiles,
   391  		p.MFiles,
   392  		p.HFiles,
   393  		p.SFiles,
   394  		p.SysoFiles,
   395  		p.SwigFiles,
   396  		p.SwigCXXFiles,
   397  		p.EmbedFiles,
   398  	)
   399  	for _, file := range inputFiles {
   400  		fmt.Fprintf(h, "file %s %s\n", file, b.fileHash(filepath.Join(p.Dir, file)))
   401  	}
   402  	for _, a1 := range a.Deps {
   403  		p1 := a1.Package
   404  		if p1 != nil {
   405  			fmt.Fprintf(h, "import %s %s\n", p1.ImportPath, contentID(a1.buildID))
   406  		}
   407  		if a1.Mode == "preprocess PGO profile" {
   408  			fmt.Fprintf(h, "pgofile %s\n", b.fileHash(a1.built))
   409  		}
   410  	}
   411  
   412  	return h.Sum()
   413  }
   414  
   415  // needCgoHdr reports whether the actions triggered by this one
   416  // expect to be able to access the cgo-generated header file.
   417  func (b *Builder) needCgoHdr(a *Action) bool {
   418  	// If this build triggers a header install, run cgo to get the header.
   419  	if !b.IsCmdList && (a.Package.UsesCgo() || a.Package.UsesSwig()) && (cfg.BuildBuildmode == "c-archive" || cfg.BuildBuildmode == "c-shared") {
   420  		for _, t1 := range a.triggers {
   421  			if t1.Mode == "install header" {
   422  				return true
   423  			}
   424  		}
   425  		for _, t1 := range a.triggers {
   426  			for _, t2 := range t1.triggers {
   427  				if t2.Mode == "install header" {
   428  					return true
   429  				}
   430  			}
   431  		}
   432  	}
   433  	return false
   434  }
   435  
   436  // allowedVersion reports whether the version v is an allowed version of go
   437  // (one that we can compile).
   438  // v is known to be of the form "1.23".
   439  func allowedVersion(v string) bool {
   440  	// Special case: no requirement.
   441  	if v == "" {
   442  		return true
   443  	}
   444  	return gover.Compare(gover.Local(), v) >= 0
   445  }
   446  
   447  const (
   448  	needBuild uint32 = 1 << iota
   449  	needCgoHdr
   450  	needVet
   451  	needCompiledGoFiles
   452  	needCovMetaFile
   453  	needStale
   454  )
   455  
   456  // build is the action for building a single package.
   457  // Note that any new influence on this logic must be reported in b.buildActionID above as well.
   458  func (b *Builder) build(ctx context.Context, a *Action) (err error) {
   459  	p := a.Package
   460  	sh := b.Shell(a)
   461  
   462  	bit := func(x uint32, b bool) uint32 {
   463  		if b {
   464  			return x
   465  		}
   466  		return 0
   467  	}
   468  
   469  	cachedBuild := false
   470  	needCovMeta := p.Internal.Cover.GenMeta
   471  	need := bit(needBuild, !b.IsCmdList && a.needBuild || b.NeedExport) |
   472  		bit(needCgoHdr, b.needCgoHdr(a)) |
   473  		bit(needVet, a.needVet) |
   474  		bit(needCovMetaFile, needCovMeta) |
   475  		bit(needCompiledGoFiles, b.NeedCompiledGoFiles)
   476  
   477  	if !p.BinaryOnly {
   478  		if b.useCache(a, b.buildActionID(a), p.Target, need&needBuild != 0) {
   479  			// We found the main output in the cache.
   480  			// If we don't need any other outputs, we can stop.
   481  			// Otherwise, we need to write files to a.Objdir (needVet, needCgoHdr).
   482  			// Remember that we might have them in cache
   483  			// and check again after we create a.Objdir.
   484  			cachedBuild = true
   485  			a.output = []byte{} // start saving output in case we miss any cache results
   486  			need &^= needBuild
   487  			if b.NeedExport {
   488  				p.Export = a.built
   489  				p.BuildID = a.buildID
   490  			}
   491  			if need&needCompiledGoFiles != 0 {
   492  				if err := b.loadCachedCompiledGoFiles(a); err == nil {
   493  					need &^= needCompiledGoFiles
   494  				}
   495  			}
   496  		}
   497  
   498  		// Source files might be cached, even if the full action is not
   499  		// (e.g., go list -compiled -find).
   500  		if !cachedBuild && need&needCompiledGoFiles != 0 {
   501  			if err := b.loadCachedCompiledGoFiles(a); err == nil {
   502  				need &^= needCompiledGoFiles
   503  			}
   504  		}
   505  
   506  		if need == 0 {
   507  			return nil
   508  		}
   509  		defer b.flushOutput(a)
   510  	}
   511  
   512  	defer func() {
   513  		if err != nil && b.IsCmdList && b.NeedError && p.Error == nil {
   514  			p.Error = &load.PackageError{Err: err}
   515  		}
   516  	}()
   517  	if cfg.BuildN {
   518  		// In -n mode, print a banner between packages.
   519  		// The banner is five lines so that when changes to
   520  		// different sections of the bootstrap script have to
   521  		// be merged, the banners give patch something
   522  		// to use to find its context.
   523  		sh.Printf("\n#\n# %s\n#\n\n", p.ImportPath)
   524  	}
   525  
   526  	if cfg.BuildV {
   527  		sh.Printf("%s\n", p.ImportPath)
   528  	}
   529  
   530  	if p.Error != nil {
   531  		// Don't try to build anything for packages with errors. There may be a
   532  		// problem with the inputs that makes the package unsafe to build.
   533  		return p.Error
   534  	}
   535  
   536  	if p.BinaryOnly {
   537  		p.Stale = true
   538  		p.StaleReason = "binary-only packages are no longer supported"
   539  		if b.IsCmdList {
   540  			return nil
   541  		}
   542  		return errors.New("binary-only packages are no longer supported")
   543  	}
   544  
   545  	if p.Module != nil && !allowedVersion(p.Module.GoVersion) {
   546  		return errors.New("module requires Go " + p.Module.GoVersion + " or later")
   547  	}
   548  
   549  	if err := b.checkDirectives(a); err != nil {
   550  		return err
   551  	}
   552  
   553  	if err := sh.Mkdir(a.Objdir); err != nil {
   554  		return err
   555  	}
   556  	objdir := a.Objdir
   557  
   558  	// Load cached cgo header, but only if we're skipping the main build (cachedBuild==true).
   559  	if cachedBuild && need&needCgoHdr != 0 {
   560  		if err := b.loadCachedCgoHdr(a); err == nil {
   561  			need &^= needCgoHdr
   562  		}
   563  	}
   564  
   565  	// Load cached coverage meta-data file fragment, but only if we're
   566  	// skipping the main build (cachedBuild==true).
   567  	if cachedBuild && need&needCovMetaFile != 0 {
   568  		bact := a.Actor.(*buildActor)
   569  		if err := b.loadCachedObjdirFile(a, cache.Default(), bact.covMetaFileName); err == nil {
   570  			need &^= needCovMetaFile
   571  		}
   572  	}
   573  
   574  	// Load cached vet config, but only if that's all we have left
   575  	// (need == needVet, not testing just the one bit).
   576  	// If we are going to do a full build anyway,
   577  	// we're going to regenerate the files below anyway.
   578  	if need == needVet {
   579  		if err := b.loadCachedVet(a); err == nil {
   580  			need &^= needVet
   581  		}
   582  	}
   583  	if need == 0 {
   584  		return nil
   585  	}
   586  
   587  	if err := AllowInstall(a); err != nil {
   588  		return err
   589  	}
   590  
   591  	// make target directory
   592  	dir, _ := filepath.Split(a.Target)
   593  	if dir != "" {
   594  		if err := sh.Mkdir(dir); err != nil {
   595  			return err
   596  		}
   597  	}
   598  
   599  	gofiles := str.StringList(p.GoFiles)
   600  	cgofiles := str.StringList(p.CgoFiles)
   601  	cfiles := str.StringList(p.CFiles)
   602  	sfiles := str.StringList(p.SFiles)
   603  	cxxfiles := str.StringList(p.CXXFiles)
   604  	var objects, cgoObjects, pcCFLAGS, pcLDFLAGS []string
   605  
   606  	if p.UsesCgo() || p.UsesSwig() {
   607  		if pcCFLAGS, pcLDFLAGS, err = b.getPkgConfigFlags(a); err != nil {
   608  			return
   609  		}
   610  	}
   611  
   612  	// Compute overlays for .c/.cc/.h/etc. and if there are any overlays
   613  	// put correct contents of all those files in the objdir, to ensure
   614  	// the correct headers are included. nonGoOverlay is the overlay that
   615  	// points from nongo files to the copied files in objdir.
   616  	nonGoFileLists := [][]string{p.CFiles, p.SFiles, p.CXXFiles, p.HFiles, p.FFiles}
   617  OverlayLoop:
   618  	for _, fs := range nonGoFileLists {
   619  		for _, f := range fs {
   620  			if fsys.Replaced(mkAbs(p.Dir, f)) {
   621  				a.nonGoOverlay = make(map[string]string)
   622  				break OverlayLoop
   623  			}
   624  		}
   625  	}
   626  	if a.nonGoOverlay != nil {
   627  		for _, fs := range nonGoFileLists {
   628  			for i := range fs {
   629  				from := mkAbs(p.Dir, fs[i])
   630  				dst := objdir + filepath.Base(fs[i])
   631  				if err := sh.CopyFile(dst, fsys.Actual(from), 0666, false); err != nil {
   632  					return err
   633  				}
   634  				a.nonGoOverlay[from] = dst
   635  			}
   636  		}
   637  	}
   638  
   639  	// If we're doing coverage, preprocess the .go files and put them in the work directory
   640  	if p.Internal.Cover.Mode != "" {
   641  		outfiles := []string{}
   642  		infiles := []string{}
   643  		for i, file := range str.StringList(gofiles, cgofiles) {
   644  			if base.IsTestFile(file) {
   645  				continue // Not covering this file.
   646  			}
   647  
   648  			var sourceFile string
   649  			var coverFile string
   650  			var key string
   651  			if base, found := strings.CutSuffix(file, ".cgo1.go"); found {
   652  				// cgo files have absolute paths
   653  				base = filepath.Base(base)
   654  				sourceFile = file
   655  				coverFile = objdir + base + ".cgo1.go"
   656  				key = base + ".go"
   657  			} else {
   658  				sourceFile = filepath.Join(p.Dir, file)
   659  				coverFile = objdir + file
   660  				key = file
   661  			}
   662  			coverFile = strings.TrimSuffix(coverFile, ".go") + ".cover.go"
   663  			if cfg.Experiment.CoverageRedesign {
   664  				infiles = append(infiles, sourceFile)
   665  				outfiles = append(outfiles, coverFile)
   666  			} else {
   667  				cover := p.Internal.CoverVars[key]
   668  				if cover == nil {
   669  					continue // Not covering this file.
   670  				}
   671  				if err := b.cover(a, coverFile, sourceFile, cover.Var); err != nil {
   672  					return err
   673  				}
   674  			}
   675  			if i < len(gofiles) {
   676  				gofiles[i] = coverFile
   677  			} else {
   678  				cgofiles[i-len(gofiles)] = coverFile
   679  			}
   680  		}
   681  
   682  		if cfg.Experiment.CoverageRedesign {
   683  			if len(infiles) != 0 {
   684  				// Coverage instrumentation creates new top level
   685  				// variables in the target package for things like
   686  				// meta-data containers, counter vars, etc. To avoid
   687  				// collisions with user variables, suffix the var name
   688  				// with 12 hex digits from the SHA-256 hash of the
   689  				// import path. Choice of 12 digits is historical/arbitrary,
   690  				// we just need enough of the hash to avoid accidents,
   691  				// as opposed to precluding determined attempts by
   692  				// users to break things.
   693  				sum := sha256.Sum256([]byte(a.Package.ImportPath))
   694  				coverVar := fmt.Sprintf("goCover_%x_", sum[:6])
   695  				mode := a.Package.Internal.Cover.Mode
   696  				if mode == "" {
   697  					panic("covermode should be set at this point")
   698  				}
   699  				if newoutfiles, err := b.cover2(a, infiles, outfiles, coverVar, mode); err != nil {
   700  					return err
   701  				} else {
   702  					outfiles = newoutfiles
   703  					gofiles = append([]string{newoutfiles[0]}, gofiles...)
   704  				}
   705  			} else {
   706  				// If there are no input files passed to cmd/cover,
   707  				// then we don't want to pass -covercfg when building
   708  				// the package with the compiler, so set covermode to
   709  				// the empty string so as to signal that we need to do
   710  				// that.
   711  				p.Internal.Cover.Mode = ""
   712  			}
   713  			if ba, ok := a.Actor.(*buildActor); ok && ba.covMetaFileName != "" {
   714  				b.cacheObjdirFile(a, cache.Default(), ba.covMetaFileName)
   715  			}
   716  		}
   717  	}
   718  
   719  	// Run SWIG on each .swig and .swigcxx file.
   720  	// Each run will generate two files, a .go file and a .c or .cxx file.
   721  	// The .go file will use import "C" and is to be processed by cgo.
   722  	// For -cover test or build runs, this needs to happen after the cover
   723  	// tool is run; we don't want to instrument swig-generated Go files,
   724  	// see issue #64661.
   725  	if p.UsesSwig() {
   726  		outGo, outC, outCXX, err := b.swig(a, objdir, pcCFLAGS)
   727  		if err != nil {
   728  			return err
   729  		}
   730  		cgofiles = append(cgofiles, outGo...)
   731  		cfiles = append(cfiles, outC...)
   732  		cxxfiles = append(cxxfiles, outCXX...)
   733  	}
   734  
   735  	// Run cgo.
   736  	if p.UsesCgo() || p.UsesSwig() {
   737  		// In a package using cgo, cgo compiles the C, C++ and assembly files with gcc.
   738  		// There is one exception: runtime/cgo's job is to bridge the
   739  		// cgo and non-cgo worlds, so it necessarily has files in both.
   740  		// In that case gcc only gets the gcc_* files.
   741  		var gccfiles []string
   742  		gccfiles = append(gccfiles, cfiles...)
   743  		cfiles = nil
   744  		if p.Standard && p.ImportPath == "runtime/cgo" {
   745  			filter := func(files, nongcc, gcc []string) ([]string, []string) {
   746  				for _, f := range files {
   747  					if strings.HasPrefix(f, "gcc_") {
   748  						gcc = append(gcc, f)
   749  					} else {
   750  						nongcc = append(nongcc, f)
   751  					}
   752  				}
   753  				return nongcc, gcc
   754  			}
   755  			sfiles, gccfiles = filter(sfiles, sfiles[:0], gccfiles)
   756  		} else {
   757  			for _, sfile := range sfiles {
   758  				data, err := os.ReadFile(filepath.Join(p.Dir, sfile))
   759  				if err == nil {
   760  					if bytes.HasPrefix(data, []byte("TEXT")) || bytes.Contains(data, []byte("\nTEXT")) ||
   761  						bytes.HasPrefix(data, []byte("DATA")) || bytes.Contains(data, []byte("\nDATA")) ||
   762  						bytes.HasPrefix(data, []byte("GLOBL")) || bytes.Contains(data, []byte("\nGLOBL")) {
   763  						return fmt.Errorf("package using cgo has Go assembly file %s", sfile)
   764  					}
   765  				}
   766  			}
   767  			gccfiles = append(gccfiles, sfiles...)
   768  			sfiles = nil
   769  		}
   770  
   771  		outGo, outObj, err := b.cgo(a, base.Tool("cgo"), objdir, pcCFLAGS, pcLDFLAGS, mkAbsFiles(p.Dir, cgofiles), gccfiles, cxxfiles, p.MFiles, p.FFiles)
   772  
   773  		// The files in cxxfiles have now been handled by b.cgo.
   774  		cxxfiles = nil
   775  
   776  		if err != nil {
   777  			return err
   778  		}
   779  		if cfg.BuildToolchainName == "gccgo" {
   780  			cgoObjects = append(cgoObjects, a.Objdir+"_cgo_flags")
   781  		}
   782  		cgoObjects = append(cgoObjects, outObj...)
   783  		gofiles = append(gofiles, outGo...)
   784  
   785  		switch cfg.BuildBuildmode {
   786  		case "c-archive", "c-shared":
   787  			b.cacheCgoHdr(a)
   788  		}
   789  	}
   790  
   791  	var srcfiles []string // .go and non-.go
   792  	srcfiles = append(srcfiles, gofiles...)
   793  	srcfiles = append(srcfiles, sfiles...)
   794  	srcfiles = append(srcfiles, cfiles...)
   795  	srcfiles = append(srcfiles, cxxfiles...)
   796  	b.cacheSrcFiles(a, srcfiles)
   797  
   798  	// Running cgo generated the cgo header.
   799  	need &^= needCgoHdr
   800  
   801  	// Sanity check only, since Package.load already checked as well.
   802  	if len(gofiles) == 0 {
   803  		return &load.NoGoError{Package: p}
   804  	}
   805  
   806  	// Prepare Go vet config if needed.
   807  	if need&needVet != 0 {
   808  		buildVetConfig(a, srcfiles)
   809  		need &^= needVet
   810  	}
   811  	if need&needCompiledGoFiles != 0 {
   812  		if err := b.loadCachedCompiledGoFiles(a); err != nil {
   813  			return fmt.Errorf("loading compiled Go files from cache: %w", err)
   814  		}
   815  		need &^= needCompiledGoFiles
   816  	}
   817  	if need == 0 {
   818  		// Nothing left to do.
   819  		return nil
   820  	}
   821  
   822  	// Collect symbol ABI requirements from assembly.
   823  	symabis, err := BuildToolchain.symabis(b, a, sfiles)
   824  	if err != nil {
   825  		return err
   826  	}
   827  
   828  	// Prepare Go import config.
   829  	// We start it off with a comment so it can't be empty, so icfg.Bytes() below is never nil.
   830  	// It should never be empty anyway, but there have been bugs in the past that resulted
   831  	// in empty configs, which then unfortunately turn into "no config passed to compiler",
   832  	// and the compiler falls back to looking in pkg itself, which mostly works,
   833  	// except when it doesn't.
   834  	var icfg bytes.Buffer
   835  	fmt.Fprintf(&icfg, "# import config\n")
   836  	for i, raw := range p.Internal.RawImports {
   837  		final := p.Imports[i]
   838  		if final != raw {
   839  			fmt.Fprintf(&icfg, "importmap %s=%s\n", raw, final)
   840  		}
   841  	}
   842  	for _, a1 := range a.Deps {
   843  		p1 := a1.Package
   844  		if p1 == nil || p1.ImportPath == "" || a1.built == "" {
   845  			continue
   846  		}
   847  		fmt.Fprintf(&icfg, "packagefile %s=%s\n", p1.ImportPath, a1.built)
   848  	}
   849  
   850  	// Prepare Go embed config if needed.
   851  	// Unlike the import config, it's okay for the embed config to be empty.
   852  	var embedcfg []byte
   853  	if len(p.Internal.Embed) > 0 {
   854  		var embed struct {
   855  			Patterns map[string][]string
   856  			Files    map[string]string
   857  		}
   858  		embed.Patterns = p.Internal.Embed
   859  		embed.Files = make(map[string]string)
   860  		for _, file := range p.EmbedFiles {
   861  			embed.Files[file] = fsys.Actual(filepath.Join(p.Dir, file))
   862  		}
   863  		js, err := json.MarshalIndent(&embed, "", "\t")
   864  		if err != nil {
   865  			return fmt.Errorf("marshal embedcfg: %v", err)
   866  		}
   867  		embedcfg = js
   868  	}
   869  
   870  	// Find PGO profile if needed.
   871  	var pgoProfile string
   872  	for _, a1 := range a.Deps {
   873  		if a1.Mode != "preprocess PGO profile" {
   874  			continue
   875  		}
   876  		if pgoProfile != "" {
   877  			return fmt.Errorf("action contains multiple PGO profile dependencies")
   878  		}
   879  		pgoProfile = a1.built
   880  	}
   881  
   882  	if p.Internal.BuildInfo != nil && cfg.ModulesEnabled {
   883  		prog := modload.ModInfoProg(p.Internal.BuildInfo.String(), cfg.BuildToolchainName == "gccgo")
   884  		if len(prog) > 0 {
   885  			if err := sh.writeFile(objdir+"_gomod_.go", prog); err != nil {
   886  				return err
   887  			}
   888  			gofiles = append(gofiles, objdir+"_gomod_.go")
   889  		}
   890  	}
   891  
   892  	// Compile Go.
   893  	objpkg := objdir + "_pkg_.a"
   894  	ofile, out, err := BuildToolchain.gc(b, a, objpkg, icfg.Bytes(), embedcfg, symabis, len(sfiles) > 0, pgoProfile, gofiles)
   895  	if err := sh.reportCmd("", "", out, err); err != nil {
   896  		return err
   897  	}
   898  	if ofile != objpkg {
   899  		objects = append(objects, ofile)
   900  	}
   901  
   902  	// Copy .h files named for goos or goarch or goos_goarch
   903  	// to names using GOOS and GOARCH.
   904  	// For example, defs_linux_amd64.h becomes defs_GOOS_GOARCH.h.
   905  	_goos_goarch := "_" + cfg.Goos + "_" + cfg.Goarch
   906  	_goos := "_" + cfg.Goos
   907  	_goarch := "_" + cfg.Goarch
   908  	for _, file := range p.HFiles {
   909  		name, ext := fileExtSplit(file)
   910  		switch {
   911  		case strings.HasSuffix(name, _goos_goarch):
   912  			targ := file[:len(name)-len(_goos_goarch)] + "_GOOS_GOARCH." + ext
   913  			if err := sh.CopyFile(objdir+targ, filepath.Join(p.Dir, file), 0666, true); err != nil {
   914  				return err
   915  			}
   916  		case strings.HasSuffix(name, _goarch):
   917  			targ := file[:len(name)-len(_goarch)] + "_GOARCH." + ext
   918  			if err := sh.CopyFile(objdir+targ, filepath.Join(p.Dir, file), 0666, true); err != nil {
   919  				return err
   920  			}
   921  		case strings.HasSuffix(name, _goos):
   922  			targ := file[:len(name)-len(_goos)] + "_GOOS." + ext
   923  			if err := sh.CopyFile(objdir+targ, filepath.Join(p.Dir, file), 0666, true); err != nil {
   924  				return err
   925  			}
   926  		}
   927  	}
   928  
   929  	for _, file := range cfiles {
   930  		out := file[:len(file)-len(".c")] + ".o"
   931  		if err := BuildToolchain.cc(b, a, objdir+out, file); err != nil {
   932  			return err
   933  		}
   934  		objects = append(objects, out)
   935  	}
   936  
   937  	// Assemble .s files.
   938  	if len(sfiles) > 0 {
   939  		ofiles, err := BuildToolchain.asm(b, a, sfiles)
   940  		if err != nil {
   941  			return err
   942  		}
   943  		objects = append(objects, ofiles...)
   944  	}
   945  
   946  	// For gccgo on ELF systems, we write the build ID as an assembler file.
   947  	// This lets us set the SHF_EXCLUDE flag.
   948  	// This is read by readGccgoArchive in cmd/internal/buildid/buildid.go.
   949  	if a.buildID != "" && cfg.BuildToolchainName == "gccgo" {
   950  		switch cfg.Goos {
   951  		case "aix", "android", "dragonfly", "freebsd", "illumos", "linux", "netbsd", "openbsd", "solaris":
   952  			asmfile, err := b.gccgoBuildIDFile(a)
   953  			if err != nil {
   954  				return err
   955  			}
   956  			ofiles, err := BuildToolchain.asm(b, a, []string{asmfile})
   957  			if err != nil {
   958  				return err
   959  			}
   960  			objects = append(objects, ofiles...)
   961  		}
   962  	}
   963  
   964  	// NOTE(rsc): On Windows, it is critically important that the
   965  	// gcc-compiled objects (cgoObjects) be listed after the ordinary
   966  	// objects in the archive. I do not know why this is.
   967  	// https://golang.org/issue/2601
   968  	objects = append(objects, cgoObjects...)
   969  
   970  	// Add system object files.
   971  	for _, syso := range p.SysoFiles {
   972  		objects = append(objects, filepath.Join(p.Dir, syso))
   973  	}
   974  
   975  	// Pack into archive in objdir directory.
   976  	// If the Go compiler wrote an archive, we only need to add the
   977  	// object files for non-Go sources to the archive.
   978  	// If the Go compiler wrote an archive and the package is entirely
   979  	// Go sources, there is no pack to execute at all.
   980  	if len(objects) > 0 {
   981  		if err := BuildToolchain.pack(b, a, objpkg, objects); err != nil {
   982  			return err
   983  		}
   984  	}
   985  
   986  	if err := b.updateBuildID(a, objpkg); err != nil {
   987  		return err
   988  	}
   989  
   990  	a.built = objpkg
   991  	return nil
   992  }
   993  
   994  func (b *Builder) checkDirectives(a *Action) error {
   995  	var msg []byte
   996  	p := a.Package
   997  	var seen map[string]token.Position
   998  	for _, d := range p.Internal.Build.Directives {
   999  		if strings.HasPrefix(d.Text, "//go:debug") {
  1000  			key, _, err := load.ParseGoDebug(d.Text)
  1001  			if err != nil && err != load.ErrNotGoDebug {
  1002  				msg = fmt.Appendf(msg, "%s: invalid //go:debug: %v\n", d.Pos, err)
  1003  				continue
  1004  			}
  1005  			if pos, ok := seen[key]; ok {
  1006  				msg = fmt.Appendf(msg, "%s: repeated //go:debug for %v\n\t%s: previous //go:debug\n", d.Pos, key, pos)
  1007  				continue
  1008  			}
  1009  			if seen == nil {
  1010  				seen = make(map[string]token.Position)
  1011  			}
  1012  			seen[key] = d.Pos
  1013  		}
  1014  	}
  1015  	if len(msg) > 0 {
  1016  		// We pass a non-nil error to reportCmd to trigger the failure reporting
  1017  		// path, but the content of the error doesn't matter because msg is
  1018  		// non-empty.
  1019  		err := errors.New("invalid directive")
  1020  		return b.Shell(a).reportCmd("", "", msg, err)
  1021  	}
  1022  	return nil
  1023  }
  1024  
  1025  func (b *Builder) cacheObjdirFile(a *Action, c cache.Cache, name string) error {
  1026  	f, err := os.Open(a.Objdir + name)
  1027  	if err != nil {
  1028  		return err
  1029  	}
  1030  	defer f.Close()
  1031  	_, _, err = c.Put(cache.Subkey(a.actionID, name), f)
  1032  	return err
  1033  }
  1034  
  1035  func (b *Builder) findCachedObjdirFile(a *Action, c cache.Cache, name string) (string, error) {
  1036  	file, _, err := cache.GetFile(c, cache.Subkey(a.actionID, name))
  1037  	if err != nil {
  1038  		return "", fmt.Errorf("loading cached file %s: %w", name, err)
  1039  	}
  1040  	return file, nil
  1041  }
  1042  
  1043  func (b *Builder) loadCachedObjdirFile(a *Action, c cache.Cache, name string) error {
  1044  	cached, err := b.findCachedObjdirFile(a, c, name)
  1045  	if err != nil {
  1046  		return err
  1047  	}
  1048  	return b.Shell(a).CopyFile(a.Objdir+name, cached, 0666, true)
  1049  }
  1050  
  1051  func (b *Builder) cacheCgoHdr(a *Action) {
  1052  	c := cache.Default()
  1053  	b.cacheObjdirFile(a, c, "_cgo_install.h")
  1054  }
  1055  
  1056  func (b *Builder) loadCachedCgoHdr(a *Action) error {
  1057  	c := cache.Default()
  1058  	return b.loadCachedObjdirFile(a, c, "_cgo_install.h")
  1059  }
  1060  
  1061  func (b *Builder) cacheSrcFiles(a *Action, srcfiles []string) {
  1062  	c := cache.Default()
  1063  	var buf bytes.Buffer
  1064  	for _, file := range srcfiles {
  1065  		if !strings.HasPrefix(file, a.Objdir) {
  1066  			// not generated
  1067  			buf.WriteString("./")
  1068  			buf.WriteString(file)
  1069  			buf.WriteString("\n")
  1070  			continue
  1071  		}
  1072  		name := file[len(a.Objdir):]
  1073  		buf.WriteString(name)
  1074  		buf.WriteString("\n")
  1075  		if err := b.cacheObjdirFile(a, c, name); err != nil {
  1076  			return
  1077  		}
  1078  	}
  1079  	cache.PutBytes(c, cache.Subkey(a.actionID, "srcfiles"), buf.Bytes())
  1080  }
  1081  
  1082  func (b *Builder) loadCachedVet(a *Action) error {
  1083  	c := cache.Default()
  1084  	list, _, err := cache.GetBytes(c, cache.Subkey(a.actionID, "srcfiles"))
  1085  	if err != nil {
  1086  		return fmt.Errorf("reading srcfiles list: %w", err)
  1087  	}
  1088  	var srcfiles []string
  1089  	for _, name := range strings.Split(string(list), "\n") {
  1090  		if name == "" { // end of list
  1091  			continue
  1092  		}
  1093  		if strings.HasPrefix(name, "./") {
  1094  			srcfiles = append(srcfiles, name[2:])
  1095  			continue
  1096  		}
  1097  		if err := b.loadCachedObjdirFile(a, c, name); err != nil {
  1098  			return err
  1099  		}
  1100  		srcfiles = append(srcfiles, a.Objdir+name)
  1101  	}
  1102  	buildVetConfig(a, srcfiles)
  1103  	return nil
  1104  }
  1105  
  1106  func (b *Builder) loadCachedCompiledGoFiles(a *Action) error {
  1107  	c := cache.Default()
  1108  	list, _, err := cache.GetBytes(c, cache.Subkey(a.actionID, "srcfiles"))
  1109  	if err != nil {
  1110  		return fmt.Errorf("reading srcfiles list: %w", err)
  1111  	}
  1112  	var gofiles []string
  1113  	for _, name := range strings.Split(string(list), "\n") {
  1114  		if name == "" { // end of list
  1115  			continue
  1116  		} else if !strings.HasSuffix(name, ".go") {
  1117  			continue
  1118  		}
  1119  		if strings.HasPrefix(name, "./") {
  1120  			gofiles = append(gofiles, name[len("./"):])
  1121  			continue
  1122  		}
  1123  		file, err := b.findCachedObjdirFile(a, c, name)
  1124  		if err != nil {
  1125  			return fmt.Errorf("finding %s: %w", name, err)
  1126  		}
  1127  		gofiles = append(gofiles, file)
  1128  	}
  1129  	a.Package.CompiledGoFiles = gofiles
  1130  	return nil
  1131  }
  1132  
  1133  // vetConfig is the configuration passed to vet describing a single package.
  1134  type vetConfig struct {
  1135  	ID           string   // package ID (example: "fmt [fmt.test]")
  1136  	Compiler     string   // compiler name (gc, gccgo)
  1137  	Dir          string   // directory containing package
  1138  	ImportPath   string   // canonical import path ("package path")
  1139  	GoFiles      []string // absolute paths to package source files
  1140  	NonGoFiles   []string // absolute paths to package non-Go files
  1141  	IgnoredFiles []string // absolute paths to ignored source files
  1142  
  1143  	ModulePath    string            // module path (may be "" on module error)
  1144  	ModuleVersion string            // module version (may be "" on main module or module error)
  1145  	ImportMap     map[string]string // map import path in source code to package path
  1146  	PackageFile   map[string]string // map package path to .a file with export data
  1147  	Standard      map[string]bool   // map package path to whether it's in the standard library
  1148  	PackageVetx   map[string]string // map package path to vetx data from earlier vet run
  1149  	VetxOnly      bool              // only compute vetx data; don't report detected problems
  1150  	VetxOutput    string            // write vetx data to this output file
  1151  	GoVersion     string            // Go version for package
  1152  
  1153  	SucceedOnTypecheckFailure bool // awful hack; see #18395 and below
  1154  }
  1155  
  1156  func buildVetConfig(a *Action, srcfiles []string) {
  1157  	// Classify files based on .go extension.
  1158  	// srcfiles does not include raw cgo files.
  1159  	var gofiles, nongofiles []string
  1160  	for _, name := range srcfiles {
  1161  		if strings.HasSuffix(name, ".go") {
  1162  			gofiles = append(gofiles, name)
  1163  		} else {
  1164  			nongofiles = append(nongofiles, name)
  1165  		}
  1166  	}
  1167  
  1168  	ignored := str.StringList(a.Package.IgnoredGoFiles, a.Package.IgnoredOtherFiles)
  1169  
  1170  	// Pass list of absolute paths to vet,
  1171  	// so that vet's error messages will use absolute paths,
  1172  	// so that we can reformat them relative to the directory
  1173  	// in which the go command is invoked.
  1174  	vcfg := &vetConfig{
  1175  		ID:           a.Package.ImportPath,
  1176  		Compiler:     cfg.BuildToolchainName,
  1177  		Dir:          a.Package.Dir,
  1178  		GoFiles:      actualFiles(mkAbsFiles(a.Package.Dir, gofiles)),
  1179  		NonGoFiles:   actualFiles(mkAbsFiles(a.Package.Dir, nongofiles)),
  1180  		IgnoredFiles: actualFiles(mkAbsFiles(a.Package.Dir, ignored)),
  1181  		ImportPath:   a.Package.ImportPath,
  1182  		ImportMap:    make(map[string]string),
  1183  		PackageFile:  make(map[string]string),
  1184  		Standard:     make(map[string]bool),
  1185  	}
  1186  	vcfg.GoVersion = "go" + gover.Local()
  1187  	if a.Package.Module != nil {
  1188  		v := a.Package.Module.GoVersion
  1189  		if v == "" {
  1190  			v = gover.DefaultGoModVersion
  1191  		}
  1192  		vcfg.GoVersion = "go" + v
  1193  
  1194  		if a.Package.Module.Error == nil {
  1195  			vcfg.ModulePath = a.Package.Module.Path
  1196  			vcfg.ModuleVersion = a.Package.Module.Version
  1197  		}
  1198  	}
  1199  	a.vetCfg = vcfg
  1200  	for i, raw := range a.Package.Internal.RawImports {
  1201  		final := a.Package.Imports[i]
  1202  		vcfg.ImportMap[raw] = final
  1203  	}
  1204  
  1205  	// Compute the list of mapped imports in the vet config
  1206  	// so that we can add any missing mappings below.
  1207  	vcfgMapped := make(map[string]bool)
  1208  	for _, p := range vcfg.ImportMap {
  1209  		vcfgMapped[p] = true
  1210  	}
  1211  
  1212  	for _, a1 := range a.Deps {
  1213  		p1 := a1.Package
  1214  		if p1 == nil || p1.ImportPath == "" {
  1215  			continue
  1216  		}
  1217  		// Add import mapping if needed
  1218  		// (for imports like "runtime/cgo" that appear only in generated code).
  1219  		if !vcfgMapped[p1.ImportPath] {
  1220  			vcfg.ImportMap[p1.ImportPath] = p1.ImportPath
  1221  		}
  1222  		if a1.built != "" {
  1223  			vcfg.PackageFile[p1.ImportPath] = a1.built
  1224  		}
  1225  		if p1.Standard {
  1226  			vcfg.Standard[p1.ImportPath] = true
  1227  		}
  1228  	}
  1229  }
  1230  
  1231  // VetTool is the path to an alternate vet tool binary.
  1232  // The caller is expected to set it (if needed) before executing any vet actions.
  1233  var VetTool string
  1234  
  1235  // VetFlags are the default flags to pass to vet.
  1236  // The caller is expected to set them before executing any vet actions.
  1237  var VetFlags []string
  1238  
  1239  // VetExplicit records whether the vet flags were set explicitly on the command line.
  1240  var VetExplicit bool
  1241  
  1242  func (b *Builder) vet(ctx context.Context, a *Action) error {
  1243  	// a.Deps[0] is the build of the package being vetted.
  1244  	// a.Deps[1] is the build of the "fmt" package.
  1245  
  1246  	a.Failed = nil // vet of dependency may have failed but we can still succeed
  1247  
  1248  	if a.Deps[0].Failed != nil {
  1249  		// The build of the package has failed. Skip vet check.
  1250  		// Vet could return export data for non-typecheck errors,
  1251  		// but we ignore it because the package cannot be compiled.
  1252  		return nil
  1253  	}
  1254  
  1255  	vcfg := a.Deps[0].vetCfg
  1256  	if vcfg == nil {
  1257  		// Vet config should only be missing if the build failed.
  1258  		return fmt.Errorf("vet config not found")
  1259  	}
  1260  
  1261  	sh := b.Shell(a)
  1262  
  1263  	vcfg.VetxOnly = a.VetxOnly
  1264  	vcfg.VetxOutput = a.Objdir + "vet.out"
  1265  	vcfg.PackageVetx = make(map[string]string)
  1266  
  1267  	h := cache.NewHash("vet " + a.Package.ImportPath)
  1268  	fmt.Fprintf(h, "vet %q\n", b.toolID("vet"))
  1269  
  1270  	vetFlags := VetFlags
  1271  
  1272  	// In GOROOT, we enable all the vet tests during 'go test',
  1273  	// not just the high-confidence subset. This gets us extra
  1274  	// checking for the standard library (at some compliance cost)
  1275  	// and helps us gain experience about how well the checks
  1276  	// work, to help decide which should be turned on by default.
  1277  	// The command-line still wins.
  1278  	//
  1279  	// Note that this flag change applies even when running vet as
  1280  	// a dependency of vetting a package outside std.
  1281  	// (Otherwise we'd have to introduce a whole separate
  1282  	// space of "vet fmt as a dependency of a std top-level vet"
  1283  	// versus "vet fmt as a dependency of a non-std top-level vet".)
  1284  	// This is OK as long as the packages that are farther down the
  1285  	// dependency tree turn on *more* analysis, as here.
  1286  	// (The unsafeptr check does not write any facts for use by
  1287  	// later vet runs, nor does unreachable.)
  1288  	if a.Package.Goroot && !VetExplicit && VetTool == "" {
  1289  		// Turn off -unsafeptr checks.
  1290  		// There's too much unsafe.Pointer code
  1291  		// that vet doesn't like in low-level packages
  1292  		// like runtime, sync, and reflect.
  1293  		// Note that $GOROOT/src/buildall.bash
  1294  		// does the same
  1295  		// and should be updated if these flags are
  1296  		// changed here.
  1297  		vetFlags = []string{"-unsafeptr=false"}
  1298  
  1299  		// Also turn off -unreachable checks during go test.
  1300  		// During testing it is very common to make changes
  1301  		// like hard-coded forced returns or panics that make
  1302  		// code unreachable. It's unreasonable to insist on files
  1303  		// not having any unreachable code during "go test".
  1304  		// (buildall.bash still has -unreachable enabled
  1305  		// for the overall whole-tree scan.)
  1306  		if cfg.CmdName == "test" {
  1307  			vetFlags = append(vetFlags, "-unreachable=false")
  1308  		}
  1309  	}
  1310  
  1311  	// Note: We could decide that vet should compute export data for
  1312  	// all analyses, in which case we don't need to include the flags here.
  1313  	// But that would mean that if an analysis causes problems like
  1314  	// unexpected crashes there would be no way to turn it off.
  1315  	// It seems better to let the flags disable export analysis too.
  1316  	fmt.Fprintf(h, "vetflags %q\n", vetFlags)
  1317  
  1318  	fmt.Fprintf(h, "pkg %q\n", a.Deps[0].actionID)
  1319  	for _, a1 := range a.Deps {
  1320  		if a1.Mode == "vet" && a1.built != "" {
  1321  			fmt.Fprintf(h, "vetout %q %s\n", a1.Package.ImportPath, b.fileHash(a1.built))
  1322  			vcfg.PackageVetx[a1.Package.ImportPath] = a1.built
  1323  		}
  1324  	}
  1325  	key := cache.ActionID(h.Sum())
  1326  
  1327  	if vcfg.VetxOnly && !cfg.BuildA {
  1328  		c := cache.Default()
  1329  		if file, _, err := cache.GetFile(c, key); err == nil {
  1330  			a.built = file
  1331  			return nil
  1332  		}
  1333  	}
  1334  
  1335  	js, err := json.MarshalIndent(vcfg, "", "\t")
  1336  	if err != nil {
  1337  		return fmt.Errorf("internal error marshaling vet config: %v", err)
  1338  	}
  1339  	js = append(js, '\n')
  1340  	if err := sh.writeFile(a.Objdir+"vet.cfg", js); err != nil {
  1341  		return err
  1342  	}
  1343  
  1344  	// TODO(rsc): Why do we pass $GCCGO to go vet?
  1345  	env := b.cCompilerEnv()
  1346  	if cfg.BuildToolchainName == "gccgo" {
  1347  		env = append(env, "GCCGO="+BuildToolchain.compiler())
  1348  	}
  1349  
  1350  	p := a.Package
  1351  	tool := VetTool
  1352  	if tool == "" {
  1353  		tool = base.Tool("vet")
  1354  	}
  1355  	runErr := sh.run(p.Dir, p.ImportPath, env, cfg.BuildToolexec, tool, vetFlags, a.Objdir+"vet.cfg")
  1356  
  1357  	// If vet wrote export data, save it for input to future vets.
  1358  	if f, err := os.Open(vcfg.VetxOutput); err == nil {
  1359  		a.built = vcfg.VetxOutput
  1360  		cache.Default().Put(key, f)
  1361  		f.Close()
  1362  	}
  1363  
  1364  	return runErr
  1365  }
  1366  
  1367  // linkActionID computes the action ID for a link action.
  1368  func (b *Builder) linkActionID(a *Action) cache.ActionID {
  1369  	p := a.Package
  1370  	h := cache.NewHash("link " + p.ImportPath)
  1371  
  1372  	// Toolchain-independent configuration.
  1373  	fmt.Fprintf(h, "link\n")
  1374  	fmt.Fprintf(h, "buildmode %s goos %s goarch %s\n", cfg.BuildBuildmode, cfg.Goos, cfg.Goarch)
  1375  	fmt.Fprintf(h, "import %q\n", p.ImportPath)
  1376  	fmt.Fprintf(h, "omitdebug %v standard %v local %v prefix %q\n", p.Internal.OmitDebug, p.Standard, p.Internal.Local, p.Internal.LocalPrefix)
  1377  	fmt.Fprintf(h, "defaultgodebug %q\n", p.DefaultGODEBUG)
  1378  	if cfg.BuildTrimpath {
  1379  		fmt.Fprintln(h, "trimpath")
  1380  	}
  1381  
  1382  	// Toolchain-dependent configuration, shared with b.linkSharedActionID.
  1383  	b.printLinkerConfig(h, p)
  1384  
  1385  	// Input files.
  1386  	for _, a1 := range a.Deps {
  1387  		p1 := a1.Package
  1388  		if p1 != nil {
  1389  			if a1.built != "" || a1.buildID != "" {
  1390  				buildID := a1.buildID
  1391  				if buildID == "" {
  1392  					buildID = b.buildID(a1.built)
  1393  				}
  1394  				fmt.Fprintf(h, "packagefile %s=%s\n", p1.ImportPath, contentID(buildID))
  1395  			}
  1396  			// Because we put package main's full action ID into the binary's build ID,
  1397  			// we must also put the full action ID into the binary's action ID hash.
  1398  			if p1.Name == "main" {
  1399  				fmt.Fprintf(h, "packagemain %s\n", a1.buildID)
  1400  			}
  1401  			if p1.Shlib != "" {
  1402  				fmt.Fprintf(h, "packageshlib %s=%s\n", p1.ImportPath, contentID(b.buildID(p1.Shlib)))
  1403  			}
  1404  		}
  1405  	}
  1406  
  1407  	return h.Sum()
  1408  }
  1409  
  1410  // printLinkerConfig prints the linker config into the hash h,
  1411  // as part of the computation of a linker-related action ID.
  1412  func (b *Builder) printLinkerConfig(h io.Writer, p *load.Package) {
  1413  	switch cfg.BuildToolchainName {
  1414  	default:
  1415  		base.Fatalf("linkActionID: unknown toolchain %q", cfg.BuildToolchainName)
  1416  
  1417  	case "gc":
  1418  		fmt.Fprintf(h, "link %s %q %s\n", b.toolID("link"), forcedLdflags, ldBuildmode)
  1419  		if p != nil {
  1420  			fmt.Fprintf(h, "linkflags %q\n", p.Internal.Ldflags)
  1421  		}
  1422  
  1423  		// GOARM, GOMIPS, etc.
  1424  		key, val, _ := cfg.GetArchEnv()
  1425  		fmt.Fprintf(h, "%s=%s\n", key, val)
  1426  
  1427  		if cfg.CleanGOEXPERIMENT != "" {
  1428  			fmt.Fprintf(h, "GOEXPERIMENT=%q\n", cfg.CleanGOEXPERIMENT)
  1429  		}
  1430  
  1431  		// The linker writes source file paths that refer to GOROOT,
  1432  		// but only if -trimpath is not specified (see [gctoolchain.ld] in gc.go).
  1433  		gorootFinal := cfg.GOROOT
  1434  		if cfg.BuildTrimpath {
  1435  			gorootFinal = ""
  1436  		}
  1437  		fmt.Fprintf(h, "GOROOT=%s\n", gorootFinal)
  1438  
  1439  		// GO_EXTLINK_ENABLED controls whether the external linker is used.
  1440  		fmt.Fprintf(h, "GO_EXTLINK_ENABLED=%s\n", cfg.Getenv("GO_EXTLINK_ENABLED"))
  1441  
  1442  		// TODO(rsc): Do cgo settings and flags need to be included?
  1443  		// Or external linker settings and flags?
  1444  
  1445  	case "gccgo":
  1446  		id, _, err := b.gccToolID(BuildToolchain.linker(), "go")
  1447  		if err != nil {
  1448  			base.Fatalf("%v", err)
  1449  		}
  1450  		fmt.Fprintf(h, "link %s %s\n", id, ldBuildmode)
  1451  		// TODO(iant): Should probably include cgo flags here.
  1452  	}
  1453  }
  1454  
  1455  // link is the action for linking a single command.
  1456  // Note that any new influence on this logic must be reported in b.linkActionID above as well.
  1457  func (b *Builder) link(ctx context.Context, a *Action) (err error) {
  1458  	if b.useCache(a, b.linkActionID(a), a.Package.Target, !b.IsCmdList) || b.IsCmdList {
  1459  		return nil
  1460  	}
  1461  	defer b.flushOutput(a)
  1462  
  1463  	sh := b.Shell(a)
  1464  	if err := sh.Mkdir(a.Objdir); err != nil {
  1465  		return err
  1466  	}
  1467  
  1468  	importcfg := a.Objdir + "importcfg.link"
  1469  	if err := b.writeLinkImportcfg(a, importcfg); err != nil {
  1470  		return err
  1471  	}
  1472  
  1473  	if err := AllowInstall(a); err != nil {
  1474  		return err
  1475  	}
  1476  
  1477  	// make target directory
  1478  	dir, _ := filepath.Split(a.Target)
  1479  	if dir != "" {
  1480  		if err := sh.Mkdir(dir); err != nil {
  1481  			return err
  1482  		}
  1483  	}
  1484  
  1485  	if err := BuildToolchain.ld(b, a, a.Target, importcfg, a.Deps[0].built); err != nil {
  1486  		return err
  1487  	}
  1488  
  1489  	// Update the binary with the final build ID.
  1490  	if err := b.updateBuildID(a, a.Target); err != nil {
  1491  		return err
  1492  	}
  1493  
  1494  	a.built = a.Target
  1495  	return nil
  1496  }
  1497  
  1498  func (b *Builder) writeLinkImportcfg(a *Action, file string) error {
  1499  	// Prepare Go import cfg.
  1500  	var icfg bytes.Buffer
  1501  	for _, a1 := range a.Deps {
  1502  		p1 := a1.Package
  1503  		if p1 == nil {
  1504  			continue
  1505  		}
  1506  		fmt.Fprintf(&icfg, "packagefile %s=%s\n", p1.ImportPath, a1.built)
  1507  		if p1.Shlib != "" {
  1508  			fmt.Fprintf(&icfg, "packageshlib %s=%s\n", p1.ImportPath, p1.Shlib)
  1509  		}
  1510  	}
  1511  	info := ""
  1512  	if a.Package.Internal.BuildInfo != nil {
  1513  		info = a.Package.Internal.BuildInfo.String()
  1514  	}
  1515  	fmt.Fprintf(&icfg, "modinfo %q\n", modload.ModInfoData(info))
  1516  	return b.Shell(a).writeFile(file, icfg.Bytes())
  1517  }
  1518  
  1519  // PkgconfigCmd returns a pkg-config binary name
  1520  // defaultPkgConfig is defined in zdefaultcc.go, written by cmd/dist.
  1521  func (b *Builder) PkgconfigCmd() string {
  1522  	return envList("PKG_CONFIG", cfg.DefaultPkgConfig)[0]
  1523  }
  1524  
  1525  // splitPkgConfigOutput parses the pkg-config output into a slice of flags.
  1526  // This implements the shell quoting semantics described in
  1527  // https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_02,
  1528  // except that it does not support parameter or arithmetic expansion or command
  1529  // substitution and hard-codes the <blank> delimiters instead of reading them
  1530  // from LC_LOCALE.
  1531  func splitPkgConfigOutput(out []byte) ([]string, error) {
  1532  	if len(out) == 0 {
  1533  		return nil, nil
  1534  	}
  1535  	var flags []string
  1536  	flag := make([]byte, 0, len(out))
  1537  	didQuote := false // was the current flag parsed from a quoted string?
  1538  	escaped := false  // did we just read `\` in a non-single-quoted context?
  1539  	quote := byte(0)  // what is the quote character around the current string?
  1540  
  1541  	for _, c := range out {
  1542  		if escaped {
  1543  			if quote == '"' {
  1544  				// “The <backslash> shall retain its special meaning as an escape
  1545  				// character … only when followed by one of the following characters
  1546  				// when considered special:”
  1547  				switch c {
  1548  				case '$', '`', '"', '\\', '\n':
  1549  					// Handle the escaped character normally.
  1550  				default:
  1551  					// Not an escape character after all.
  1552  					flag = append(flag, '\\', c)
  1553  					escaped = false
  1554  					continue
  1555  				}
  1556  			}
  1557  
  1558  			if c == '\n' {
  1559  				// “If a <newline> follows the <backslash>, the shell shall interpret
  1560  				// this as line continuation.”
  1561  			} else {
  1562  				flag = append(flag, c)
  1563  			}
  1564  			escaped = false
  1565  			continue
  1566  		}
  1567  
  1568  		if quote != 0 && c == quote {
  1569  			quote = 0
  1570  			continue
  1571  		}
  1572  		switch quote {
  1573  		case '\'':
  1574  			// “preserve the literal value of each character”
  1575  			flag = append(flag, c)
  1576  			continue
  1577  		case '"':
  1578  			// “preserve the literal value of all characters within the double-quotes,
  1579  			// with the exception of …”
  1580  			switch c {
  1581  			case '`', '$', '\\':
  1582  			default:
  1583  				flag = append(flag, c)
  1584  				continue
  1585  			}
  1586  		}
  1587  
  1588  		// “The application shall quote the following characters if they are to
  1589  		// represent themselves:”
  1590  		switch c {
  1591  		case '|', '&', ';', '<', '>', '(', ')', '$', '`':
  1592  			return nil, fmt.Errorf("unexpected shell character %q in pkgconf output", c)
  1593  
  1594  		case '\\':
  1595  			// “A <backslash> that is not quoted shall preserve the literal value of
  1596  			// the following character, with the exception of a <newline>.”
  1597  			escaped = true
  1598  			continue
  1599  
  1600  		case '"', '\'':
  1601  			quote = c
  1602  			didQuote = true
  1603  			continue
  1604  
  1605  		case ' ', '\t', '\n':
  1606  			if len(flag) > 0 || didQuote {
  1607  				flags = append(flags, string(flag))
  1608  			}
  1609  			flag, didQuote = flag[:0], false
  1610  			continue
  1611  		}
  1612  
  1613  		flag = append(flag, c)
  1614  	}
  1615  
  1616  	// Prefer to report a missing quote instead of a missing escape. If the string
  1617  	// is something like `"foo\`, it's ambiguous as to whether the trailing
  1618  	// backslash is really an escape at all.
  1619  	if quote != 0 {
  1620  		return nil, errors.New("unterminated quoted string in pkgconf output")
  1621  	}
  1622  	if escaped {
  1623  		return nil, errors.New("broken character escaping in pkgconf output")
  1624  	}
  1625  
  1626  	if len(flag) > 0 || didQuote {
  1627  		flags = append(flags, string(flag))
  1628  	}
  1629  	return flags, nil
  1630  }
  1631  
  1632  // Calls pkg-config if needed and returns the cflags/ldflags needed to build a's package.
  1633  func (b *Builder) getPkgConfigFlags(a *Action) (cflags, ldflags []string, err error) {
  1634  	p := a.Package
  1635  	sh := b.Shell(a)
  1636  	if pcargs := p.CgoPkgConfig; len(pcargs) > 0 {
  1637  		// pkg-config permits arguments to appear anywhere in
  1638  		// the command line. Move them all to the front, before --.
  1639  		var pcflags []string
  1640  		var pkgs []string
  1641  		for _, pcarg := range pcargs {
  1642  			if pcarg == "--" {
  1643  				// We're going to add our own "--" argument.
  1644  			} else if strings.HasPrefix(pcarg, "--") {
  1645  				pcflags = append(pcflags, pcarg)
  1646  			} else {
  1647  				pkgs = append(pkgs, pcarg)
  1648  			}
  1649  		}
  1650  		for _, pkg := range pkgs {
  1651  			if !load.SafeArg(pkg) {
  1652  				return nil, nil, fmt.Errorf("invalid pkg-config package name: %s", pkg)
  1653  			}
  1654  		}
  1655  		var out []byte
  1656  		out, err = sh.runOut(p.Dir, nil, b.PkgconfigCmd(), "--cflags", pcflags, "--", pkgs)
  1657  		if err != nil {
  1658  			desc := b.PkgconfigCmd() + " --cflags " + strings.Join(pcflags, " ") + " -- " + strings.Join(pkgs, " ")
  1659  			return nil, nil, sh.reportCmd(desc, "", out, err)
  1660  		}
  1661  		if len(out) > 0 {
  1662  			cflags, err = splitPkgConfigOutput(bytes.TrimSpace(out))
  1663  			if err != nil {
  1664  				return nil, nil, err
  1665  			}
  1666  			if err := checkCompilerFlags("CFLAGS", "pkg-config --cflags", cflags); err != nil {
  1667  				return nil, nil, err
  1668  			}
  1669  		}
  1670  		out, err = sh.runOut(p.Dir, nil, b.PkgconfigCmd(), "--libs", pcflags, "--", pkgs)
  1671  		if err != nil {
  1672  			desc := b.PkgconfigCmd() + " --libs " + strings.Join(pcflags, " ") + " -- " + strings.Join(pkgs, " ")
  1673  			return nil, nil, sh.reportCmd(desc, "", out, err)
  1674  		}
  1675  		if len(out) > 0 {
  1676  			// We need to handle path with spaces so that C:/Program\ Files can pass
  1677  			// checkLinkerFlags. Use splitPkgConfigOutput here just like we treat cflags.
  1678  			ldflags, err = splitPkgConfigOutput(bytes.TrimSpace(out))
  1679  			if err != nil {
  1680  				return nil, nil, err
  1681  			}
  1682  			if err := checkLinkerFlags("LDFLAGS", "pkg-config --libs", ldflags); err != nil {
  1683  				return nil, nil, err
  1684  			}
  1685  		}
  1686  	}
  1687  
  1688  	return
  1689  }
  1690  
  1691  func (b *Builder) installShlibname(ctx context.Context, a *Action) error {
  1692  	if err := AllowInstall(a); err != nil {
  1693  		return err
  1694  	}
  1695  
  1696  	sh := b.Shell(a)
  1697  	a1 := a.Deps[0]
  1698  	if !cfg.BuildN {
  1699  		if err := sh.Mkdir(filepath.Dir(a.Target)); err != nil {
  1700  			return err
  1701  		}
  1702  	}
  1703  	return sh.writeFile(a.Target, []byte(filepath.Base(a1.Target)+"\n"))
  1704  }
  1705  
  1706  func (b *Builder) linkSharedActionID(a *Action) cache.ActionID {
  1707  	h := cache.NewHash("linkShared")
  1708  
  1709  	// Toolchain-independent configuration.
  1710  	fmt.Fprintf(h, "linkShared\n")
  1711  	fmt.Fprintf(h, "goos %s goarch %s\n", cfg.Goos, cfg.Goarch)
  1712  
  1713  	// Toolchain-dependent configuration, shared with b.linkActionID.
  1714  	b.printLinkerConfig(h, nil)
  1715  
  1716  	// Input files.
  1717  	for _, a1 := range a.Deps {
  1718  		p1 := a1.Package
  1719  		if a1.built == "" {
  1720  			continue
  1721  		}
  1722  		if p1 != nil {
  1723  			fmt.Fprintf(h, "packagefile %s=%s\n", p1.ImportPath, contentID(b.buildID(a1.built)))
  1724  			if p1.Shlib != "" {
  1725  				fmt.Fprintf(h, "packageshlib %s=%s\n", p1.ImportPath, contentID(b.buildID(p1.Shlib)))
  1726  			}
  1727  		}
  1728  	}
  1729  	// Files named on command line are special.
  1730  	for _, a1 := range a.Deps[0].Deps {
  1731  		p1 := a1.Package
  1732  		fmt.Fprintf(h, "top %s=%s\n", p1.ImportPath, contentID(b.buildID(a1.built)))
  1733  	}
  1734  
  1735  	return h.Sum()
  1736  }
  1737  
  1738  func (b *Builder) linkShared(ctx context.Context, a *Action) (err error) {
  1739  	if b.useCache(a, b.linkSharedActionID(a), a.Target, !b.IsCmdList) || b.IsCmdList {
  1740  		return nil
  1741  	}
  1742  	defer b.flushOutput(a)
  1743  
  1744  	if err := AllowInstall(a); err != nil {
  1745  		return err
  1746  	}
  1747  
  1748  	if err := b.Shell(a).Mkdir(a.Objdir); err != nil {
  1749  		return err
  1750  	}
  1751  
  1752  	importcfg := a.Objdir + "importcfg.link"
  1753  	if err := b.writeLinkImportcfg(a, importcfg); err != nil {
  1754  		return err
  1755  	}
  1756  
  1757  	// TODO(rsc): There is a missing updateBuildID here,
  1758  	// but we have to decide where to store the build ID in these files.
  1759  	a.built = a.Target
  1760  	return BuildToolchain.ldShared(b, a, a.Deps[0].Deps, a.Target, importcfg, a.Deps)
  1761  }
  1762  
  1763  // BuildInstallFunc is the action for installing a single package or executable.
  1764  func BuildInstallFunc(b *Builder, ctx context.Context, a *Action) (err error) {
  1765  	defer func() {
  1766  		if err != nil {
  1767  			// a.Package == nil is possible for the go install -buildmode=shared
  1768  			// action that installs libmangledname.so, which corresponds to
  1769  			// a list of packages, not just one.
  1770  			sep, path := "", ""
  1771  			if a.Package != nil {
  1772  				sep, path = " ", a.Package.ImportPath
  1773  			}
  1774  			err = fmt.Errorf("go %s%s%s: %v", cfg.CmdName, sep, path, err)
  1775  		}
  1776  	}()
  1777  	sh := b.Shell(a)
  1778  
  1779  	a1 := a.Deps[0]
  1780  	a.buildID = a1.buildID
  1781  	if a.json != nil {
  1782  		a.json.BuildID = a.buildID
  1783  	}
  1784  
  1785  	// If we are using the eventual install target as an up-to-date
  1786  	// cached copy of the thing we built, then there's no need to
  1787  	// copy it into itself (and that would probably fail anyway).
  1788  	// In this case a1.built == a.Target because a1.built == p.Target,
  1789  	// so the built target is not in the a1.Objdir tree that b.cleanup(a1) removes.
  1790  	if a1.built == a.Target {
  1791  		a.built = a.Target
  1792  		if !a.buggyInstall {
  1793  			b.cleanup(a1)
  1794  		}
  1795  		// Whether we're smart enough to avoid a complete rebuild
  1796  		// depends on exactly what the staleness and rebuild algorithms
  1797  		// are, as well as potentially the state of the Go build cache.
  1798  		// We don't really want users to be able to infer (or worse start depending on)
  1799  		// those details from whether the modification time changes during
  1800  		// "go install", so do a best-effort update of the file times to make it
  1801  		// look like we rewrote a.Target even if we did not. Updating the mtime
  1802  		// may also help other mtime-based systems that depend on our
  1803  		// previous mtime updates that happened more often.
  1804  		// This is still not perfect - we ignore the error result, and if the file was
  1805  		// unwritable for some reason then pretending to have written it is also
  1806  		// confusing - but it's probably better than not doing the mtime update.
  1807  		//
  1808  		// But don't do that for the special case where building an executable
  1809  		// with -linkshared implicitly installs all its dependent libraries.
  1810  		// We want to hide that awful detail as much as possible, so don't
  1811  		// advertise it by touching the mtimes (usually the libraries are up
  1812  		// to date).
  1813  		if !a.buggyInstall && !b.IsCmdList {
  1814  			if cfg.BuildN {
  1815  				sh.ShowCmd("", "touch %s", a.Target)
  1816  			} else if err := AllowInstall(a); err == nil {
  1817  				now := time.Now()
  1818  				os.Chtimes(a.Target, now, now)
  1819  			}
  1820  		}
  1821  		return nil
  1822  	}
  1823  
  1824  	// If we're building for go list -export,
  1825  	// never install anything; just keep the cache reference.
  1826  	if b.IsCmdList {
  1827  		a.built = a1.built
  1828  		return nil
  1829  	}
  1830  	if err := AllowInstall(a); err != nil {
  1831  		return err
  1832  	}
  1833  
  1834  	if err := sh.Mkdir(a.Objdir); err != nil {
  1835  		return err
  1836  	}
  1837  
  1838  	perm := fs.FileMode(0666)
  1839  	if a1.Mode == "link" {
  1840  		switch cfg.BuildBuildmode {
  1841  		case "c-archive", "c-shared", "plugin":
  1842  		default:
  1843  			perm = 0777
  1844  		}
  1845  	}
  1846  
  1847  	// make target directory
  1848  	dir, _ := filepath.Split(a.Target)
  1849  	if dir != "" {
  1850  		if err := sh.Mkdir(dir); err != nil {
  1851  			return err
  1852  		}
  1853  	}
  1854  
  1855  	if !a.buggyInstall {
  1856  		defer b.cleanup(a1)
  1857  	}
  1858  
  1859  	return sh.moveOrCopyFile(a.Target, a1.built, perm, false)
  1860  }
  1861  
  1862  // AllowInstall returns a non-nil error if this invocation of the go command is
  1863  // allowed to install a.Target.
  1864  //
  1865  // The build of cmd/go running under its own test is forbidden from installing
  1866  // to its original GOROOT. The var is exported so it can be set by TestMain.
  1867  var AllowInstall = func(*Action) error { return nil }
  1868  
  1869  // cleanup removes a's object dir to keep the amount of
  1870  // on-disk garbage down in a large build. On an operating system
  1871  // with aggressive buffering, cleaning incrementally like
  1872  // this keeps the intermediate objects from hitting the disk.
  1873  func (b *Builder) cleanup(a *Action) {
  1874  	if !cfg.BuildWork {
  1875  		b.Shell(a).RemoveAll(a.Objdir)
  1876  	}
  1877  }
  1878  
  1879  // Install the cgo export header file, if there is one.
  1880  func (b *Builder) installHeader(ctx context.Context, a *Action) error {
  1881  	sh := b.Shell(a)
  1882  
  1883  	src := a.Objdir + "_cgo_install.h"
  1884  	if _, err := os.Stat(src); os.IsNotExist(err) {
  1885  		// If the file does not exist, there are no exported
  1886  		// functions, and we do not install anything.
  1887  		// TODO(rsc): Once we know that caching is rebuilding
  1888  		// at the right times (not missing rebuilds), here we should
  1889  		// probably delete the installed header, if any.
  1890  		if cfg.BuildX {
  1891  			sh.ShowCmd("", "# %s not created", src)
  1892  		}
  1893  		return nil
  1894  	}
  1895  
  1896  	if err := AllowInstall(a); err != nil {
  1897  		return err
  1898  	}
  1899  
  1900  	dir, _ := filepath.Split(a.Target)
  1901  	if dir != "" {
  1902  		if err := sh.Mkdir(dir); err != nil {
  1903  			return err
  1904  		}
  1905  	}
  1906  
  1907  	return sh.moveOrCopyFile(a.Target, src, 0666, true)
  1908  }
  1909  
  1910  // cover runs, in effect,
  1911  //
  1912  //	go tool cover -mode=b.coverMode -var="varName" -o dst.go src.go
  1913  func (b *Builder) cover(a *Action, dst, src string, varName string) error {
  1914  	return b.Shell(a).run(a.Objdir, "", nil,
  1915  		cfg.BuildToolexec,
  1916  		base.Tool("cover"),
  1917  		"-mode", a.Package.Internal.Cover.Mode,
  1918  		"-var", varName,
  1919  		"-o", dst,
  1920  		src)
  1921  }
  1922  
  1923  // cover2 runs, in effect,
  1924  //
  1925  //	go tool cover -pkgcfg=<config file> -mode=b.coverMode -var="varName" -o <outfiles> <infiles>
  1926  //
  1927  // Return value is an updated output files list; in addition to the
  1928  // regular outputs (instrumented source files) the cover tool also
  1929  // writes a separate file (appearing first in the list of outputs)
  1930  // that will contain coverage counters and meta-data.
  1931  func (b *Builder) cover2(a *Action, infiles, outfiles []string, varName string, mode string) ([]string, error) {
  1932  	pkgcfg := a.Objdir + "pkgcfg.txt"
  1933  	covoutputs := a.Objdir + "coveroutfiles.txt"
  1934  	odir := filepath.Dir(outfiles[0])
  1935  	cv := filepath.Join(odir, "covervars.go")
  1936  	outfiles = append([]string{cv}, outfiles...)
  1937  	if err := b.writeCoverPkgInputs(a, pkgcfg, covoutputs, outfiles); err != nil {
  1938  		return nil, err
  1939  	}
  1940  	args := []string{base.Tool("cover"),
  1941  		"-pkgcfg", pkgcfg,
  1942  		"-mode", mode,
  1943  		"-var", varName,
  1944  		"-outfilelist", covoutputs,
  1945  	}
  1946  	args = append(args, infiles...)
  1947  	if err := b.Shell(a).run(a.Objdir, "", nil,
  1948  		cfg.BuildToolexec, args); err != nil {
  1949  		return nil, err
  1950  	}
  1951  	return outfiles, nil
  1952  }
  1953  
  1954  func (b *Builder) writeCoverPkgInputs(a *Action, pconfigfile string, covoutputsfile string, outfiles []string) error {
  1955  	sh := b.Shell(a)
  1956  	p := a.Package
  1957  	p.Internal.Cover.Cfg = a.Objdir + "coveragecfg"
  1958  	pcfg := covcmd.CoverPkgConfig{
  1959  		PkgPath: p.ImportPath,
  1960  		PkgName: p.Name,
  1961  		// Note: coverage granularity is currently hard-wired to
  1962  		// 'perblock'; there isn't a way using "go build -cover" or "go
  1963  		// test -cover" to select it. This may change in the future
  1964  		// depending on user demand.
  1965  		Granularity: "perblock",
  1966  		OutConfig:   p.Internal.Cover.Cfg,
  1967  		Local:       p.Internal.Local,
  1968  	}
  1969  	if ba, ok := a.Actor.(*buildActor); ok && ba.covMetaFileName != "" {
  1970  		pcfg.EmitMetaFile = a.Objdir + ba.covMetaFileName
  1971  	}
  1972  	if a.Package.Module != nil {
  1973  		pcfg.ModulePath = a.Package.Module.Path
  1974  	}
  1975  	data, err := json.Marshal(pcfg)
  1976  	if err != nil {
  1977  		return err
  1978  	}
  1979  	data = append(data, '\n')
  1980  	if err := sh.writeFile(pconfigfile, data); err != nil {
  1981  		return err
  1982  	}
  1983  	var sb strings.Builder
  1984  	for i := range outfiles {
  1985  		fmt.Fprintf(&sb, "%s\n", outfiles[i])
  1986  	}
  1987  	return sh.writeFile(covoutputsfile, []byte(sb.String()))
  1988  }
  1989  
  1990  var objectMagic = [][]byte{
  1991  	{'!', '<', 'a', 'r', 'c', 'h', '>', '\n'}, // Package archive
  1992  	{'<', 'b', 'i', 'g', 'a', 'f', '>', '\n'}, // Package AIX big archive
  1993  	{'\x7F', 'E', 'L', 'F'},                   // ELF
  1994  	{0xFE, 0xED, 0xFA, 0xCE},                  // Mach-O big-endian 32-bit
  1995  	{0xFE, 0xED, 0xFA, 0xCF},                  // Mach-O big-endian 64-bit
  1996  	{0xCE, 0xFA, 0xED, 0xFE},                  // Mach-O little-endian 32-bit
  1997  	{0xCF, 0xFA, 0xED, 0xFE},                  // Mach-O little-endian 64-bit
  1998  	{0x4d, 0x5a, 0x90, 0x00, 0x03, 0x00},      // PE (Windows) as generated by 6l/8l and gcc
  1999  	{0x4d, 0x5a, 0x78, 0x00, 0x01, 0x00},      // PE (Windows) as generated by llvm for dll
  2000  	{0x00, 0x00, 0x01, 0xEB},                  // Plan 9 i386
  2001  	{0x00, 0x00, 0x8a, 0x97},                  // Plan 9 amd64
  2002  	{0x00, 0x00, 0x06, 0x47},                  // Plan 9 arm
  2003  	{0x00, 0x61, 0x73, 0x6D},                  // WASM
  2004  	{0x01, 0xDF},                              // XCOFF 32bit
  2005  	{0x01, 0xF7},                              // XCOFF 64bit
  2006  }
  2007  
  2008  func isObject(s string) bool {
  2009  	f, err := os.Open(s)
  2010  	if err != nil {
  2011  		return false
  2012  	}
  2013  	defer f.Close()
  2014  	buf := make([]byte, 64)
  2015  	io.ReadFull(f, buf)
  2016  	for _, magic := range objectMagic {
  2017  		if bytes.HasPrefix(buf, magic) {
  2018  			return true
  2019  		}
  2020  	}
  2021  	return false
  2022  }
  2023  
  2024  // cCompilerEnv returns environment variables to set when running the
  2025  // C compiler. This is needed to disable escape codes in clang error
  2026  // messages that confuse tools like cgo.
  2027  func (b *Builder) cCompilerEnv() []string {
  2028  	return []string{"TERM=dumb"}
  2029  }
  2030  
  2031  // mkAbs returns an absolute path corresponding to
  2032  // evaluating f in the directory dir.
  2033  // We always pass absolute paths of source files so that
  2034  // the error messages will include the full path to a file
  2035  // in need of attention.
  2036  func mkAbs(dir, f string) string {
  2037  	// Leave absolute paths alone.
  2038  	// Also, during -n mode we use the pseudo-directory $WORK
  2039  	// instead of creating an actual work directory that won't be used.
  2040  	// Leave paths beginning with $WORK alone too.
  2041  	if filepath.IsAbs(f) || strings.HasPrefix(f, "$WORK") {
  2042  		return f
  2043  	}
  2044  	return filepath.Join(dir, f)
  2045  }
  2046  
  2047  type toolchain interface {
  2048  	// gc runs the compiler in a specific directory on a set of files
  2049  	// and returns the name of the generated output file.
  2050  	gc(b *Builder, a *Action, archive string, importcfg, embedcfg []byte, symabis string, asmhdr bool, pgoProfile string, gofiles []string) (ofile string, out []byte, err error)
  2051  	// cc runs the toolchain's C compiler in a directory on a C file
  2052  	// to produce an output file.
  2053  	cc(b *Builder, a *Action, ofile, cfile string) error
  2054  	// asm runs the assembler in a specific directory on specific files
  2055  	// and returns a list of named output files.
  2056  	asm(b *Builder, a *Action, sfiles []string) ([]string, error)
  2057  	// symabis scans the symbol ABIs from sfiles and returns the
  2058  	// path to the output symbol ABIs file, or "" if none.
  2059  	symabis(b *Builder, a *Action, sfiles []string) (string, error)
  2060  	// pack runs the archive packer in a specific directory to create
  2061  	// an archive from a set of object files.
  2062  	// typically it is run in the object directory.
  2063  	pack(b *Builder, a *Action, afile string, ofiles []string) error
  2064  	// ld runs the linker to create an executable starting at mainpkg.
  2065  	ld(b *Builder, root *Action, targetPath, importcfg, mainpkg string) error
  2066  	// ldShared runs the linker to create a shared library containing the pkgs built by toplevelactions
  2067  	ldShared(b *Builder, root *Action, toplevelactions []*Action, targetPath, importcfg string, allactions []*Action) error
  2068  
  2069  	compiler() string
  2070  	linker() string
  2071  }
  2072  
  2073  type noToolchain struct{}
  2074  
  2075  func noCompiler() error {
  2076  	log.Fatalf("unknown compiler %q", cfg.BuildContext.Compiler)
  2077  	return nil
  2078  }
  2079  
  2080  func (noToolchain) compiler() string {
  2081  	noCompiler()
  2082  	return ""
  2083  }
  2084  
  2085  func (noToolchain) linker() string {
  2086  	noCompiler()
  2087  	return ""
  2088  }
  2089  
  2090  func (noToolchain) gc(b *Builder, a *Action, archive string, importcfg, embedcfg []byte, symabis string, asmhdr bool, pgoProfile string, gofiles []string) (ofile string, out []byte, err error) {
  2091  	return "", nil, noCompiler()
  2092  }
  2093  
  2094  func (noToolchain) asm(b *Builder, a *Action, sfiles []string) ([]string, error) {
  2095  	return nil, noCompiler()
  2096  }
  2097  
  2098  func (noToolchain) symabis(b *Builder, a *Action, sfiles []string) (string, error) {
  2099  	return "", noCompiler()
  2100  }
  2101  
  2102  func (noToolchain) pack(b *Builder, a *Action, afile string, ofiles []string) error {
  2103  	return noCompiler()
  2104  }
  2105  
  2106  func (noToolchain) ld(b *Builder, root *Action, targetPath, importcfg, mainpkg string) error {
  2107  	return noCompiler()
  2108  }
  2109  
  2110  func (noToolchain) ldShared(b *Builder, root *Action, toplevelactions []*Action, targetPath, importcfg string, allactions []*Action) error {
  2111  	return noCompiler()
  2112  }
  2113  
  2114  func (noToolchain) cc(b *Builder, a *Action, ofile, cfile string) error {
  2115  	return noCompiler()
  2116  }
  2117  
  2118  // gcc runs the gcc C compiler to create an object from a single C file.
  2119  func (b *Builder) gcc(a *Action, workdir, out string, flags []string, cfile string) error {
  2120  	p := a.Package
  2121  	return b.ccompile(a, out, flags, cfile, b.GccCmd(p.Dir, workdir))
  2122  }
  2123  
  2124  // gxx runs the g++ C++ compiler to create an object from a single C++ file.
  2125  func (b *Builder) gxx(a *Action, workdir, out string, flags []string, cxxfile string) error {
  2126  	p := a.Package
  2127  	return b.ccompile(a, out, flags, cxxfile, b.GxxCmd(p.Dir, workdir))
  2128  }
  2129  
  2130  // gfortran runs the gfortran Fortran compiler to create an object from a single Fortran file.
  2131  func (b *Builder) gfortran(a *Action, workdir, out string, flags []string, ffile string) error {
  2132  	p := a.Package
  2133  	return b.ccompile(a, out, flags, ffile, b.gfortranCmd(p.Dir, workdir))
  2134  }
  2135  
  2136  // ccompile runs the given C or C++ compiler and creates an object from a single source file.
  2137  func (b *Builder) ccompile(a *Action, outfile string, flags []string, file string, compiler []string) error {
  2138  	p := a.Package
  2139  	sh := b.Shell(a)
  2140  	file = mkAbs(p.Dir, file)
  2141  	outfile = mkAbs(p.Dir, outfile)
  2142  
  2143  	// Elide source directory paths if -trimpath is set.
  2144  	// This is needed for source files (e.g., a .c file in a package directory).
  2145  	// TODO(golang.org/issue/36072): cgo also generates files with #line
  2146  	// directives pointing to the source directory. It should not generate those
  2147  	// when -trimpath is enabled.
  2148  	if b.gccSupportsFlag(compiler, "-fdebug-prefix-map=a=b") {
  2149  		if cfg.BuildTrimpath || p.Goroot {
  2150  			prefixMapFlag := "-fdebug-prefix-map"
  2151  			if b.gccSupportsFlag(compiler, "-ffile-prefix-map=a=b") {
  2152  				prefixMapFlag = "-ffile-prefix-map"
  2153  			}
  2154  			// Keep in sync with Action.trimpath.
  2155  			// The trimmed paths are a little different, but we need to trim in mostly the
  2156  			// same situations.
  2157  			var from, toPath string
  2158  			if m := p.Module; m == nil {
  2159  				if p.Root == "" { // command-line-arguments in GOPATH mode, maybe?
  2160  					from = p.Dir
  2161  					toPath = p.ImportPath
  2162  				} else if p.Goroot {
  2163  					from = p.Root
  2164  					toPath = "GOROOT"
  2165  				} else {
  2166  					from = p.Root
  2167  					toPath = "GOPATH"
  2168  				}
  2169  			} else if m.Dir == "" {
  2170  				// The module is in the vendor directory. Replace the entire vendor
  2171  				// directory path, because the module's Dir is not filled in.
  2172  				from = modload.VendorDir()
  2173  				toPath = "vendor"
  2174  			} else {
  2175  				from = m.Dir
  2176  				toPath = m.Path
  2177  				if m.Version != "" {
  2178  					toPath += "@" + m.Version
  2179  				}
  2180  			}
  2181  			// -fdebug-prefix-map (or -ffile-prefix-map) requires an absolute "to"
  2182  			// path (or it joins the path  with the working directory). Pick something
  2183  			// that makes sense for the target platform.
  2184  			var to string
  2185  			if cfg.BuildContext.GOOS == "windows" {
  2186  				to = filepath.Join(`\\_\_`, toPath)
  2187  			} else {
  2188  				to = filepath.Join("/_", toPath)
  2189  			}
  2190  			flags = append(slices.Clip(flags), prefixMapFlag+"="+from+"="+to)
  2191  		}
  2192  	}
  2193  
  2194  	// Tell gcc to not insert truly random numbers into the build process
  2195  	// this ensures LTO won't create random numbers for symbols.
  2196  	if b.gccSupportsFlag(compiler, "-frandom-seed=1") {
  2197  		flags = append(flags, "-frandom-seed="+buildid.HashToString(a.actionID))
  2198  	}
  2199  
  2200  	overlayPath := file
  2201  	if p, ok := a.nonGoOverlay[overlayPath]; ok {
  2202  		overlayPath = p
  2203  	}
  2204  	output, err := sh.runOut(filepath.Dir(overlayPath), b.cCompilerEnv(), compiler, flags, "-o", outfile, "-c", filepath.Base(overlayPath))
  2205  
  2206  	// On FreeBSD 11, when we pass -g to clang 3.8 it
  2207  	// invokes its internal assembler with -dwarf-version=2.
  2208  	// When it sees .section .note.GNU-stack, it warns
  2209  	// "DWARF2 only supports one section per compilation unit".
  2210  	// This warning makes no sense, since the section is empty,
  2211  	// but it confuses people.
  2212  	// We work around the problem by detecting the warning
  2213  	// and dropping -g and trying again.
  2214  	if bytes.Contains(output, []byte("DWARF2 only supports one section per compilation unit")) {
  2215  		newFlags := make([]string, 0, len(flags))
  2216  		for _, f := range flags {
  2217  			if !strings.HasPrefix(f, "-g") {
  2218  				newFlags = append(newFlags, f)
  2219  			}
  2220  		}
  2221  		if len(newFlags) < len(flags) {
  2222  			return b.ccompile(a, outfile, newFlags, file, compiler)
  2223  		}
  2224  	}
  2225  
  2226  	if len(output) > 0 && err == nil && os.Getenv("GO_BUILDER_NAME") != "" {
  2227  		output = append(output, "C compiler warning promoted to error on Go builders\n"...)
  2228  		err = errors.New("warning promoted to error")
  2229  	}
  2230  
  2231  	return sh.reportCmd("", "", output, err)
  2232  }
  2233  
  2234  // gccld runs the gcc linker to create an executable from a set of object files.
  2235  func (b *Builder) gccld(a *Action, objdir, outfile string, flags []string, objs []string) error {
  2236  	p := a.Package
  2237  	sh := b.Shell(a)
  2238  	var cmd []string
  2239  	if len(p.CXXFiles) > 0 || len(p.SwigCXXFiles) > 0 {
  2240  		cmd = b.GxxCmd(p.Dir, objdir)
  2241  	} else {
  2242  		cmd = b.GccCmd(p.Dir, objdir)
  2243  	}
  2244  
  2245  	cmdargs := []any{cmd, "-o", outfile, objs, flags}
  2246  	_, err := sh.runOut(base.Cwd(), b.cCompilerEnv(), cmdargs...)
  2247  
  2248  	// Note that failure is an expected outcome here, so we report output only
  2249  	// in debug mode and don't report the error.
  2250  	if cfg.BuildN || cfg.BuildX {
  2251  		saw := "succeeded"
  2252  		if err != nil {
  2253  			saw = "failed"
  2254  		}
  2255  		sh.ShowCmd("", "%s # test for internal linking errors (%s)", joinUnambiguously(str.StringList(cmdargs...)), saw)
  2256  	}
  2257  
  2258  	return err
  2259  }
  2260  
  2261  // GccCmd returns a gcc command line prefix
  2262  // defaultCC is defined in zdefaultcc.go, written by cmd/dist.
  2263  func (b *Builder) GccCmd(incdir, workdir string) []string {
  2264  	return b.compilerCmd(b.ccExe(), incdir, workdir)
  2265  }
  2266  
  2267  // GxxCmd returns a g++ command line prefix
  2268  // defaultCXX is defined in zdefaultcc.go, written by cmd/dist.
  2269  func (b *Builder) GxxCmd(incdir, workdir string) []string {
  2270  	return b.compilerCmd(b.cxxExe(), incdir, workdir)
  2271  }
  2272  
  2273  // gfortranCmd returns a gfortran command line prefix.
  2274  func (b *Builder) gfortranCmd(incdir, workdir string) []string {
  2275  	return b.compilerCmd(b.fcExe(), incdir, workdir)
  2276  }
  2277  
  2278  // ccExe returns the CC compiler setting without all the extra flags we add implicitly.
  2279  func (b *Builder) ccExe() []string {
  2280  	return envList("CC", cfg.DefaultCC(cfg.Goos, cfg.Goarch))
  2281  }
  2282  
  2283  // cxxExe returns the CXX compiler setting without all the extra flags we add implicitly.
  2284  func (b *Builder) cxxExe() []string {
  2285  	return envList("CXX", cfg.DefaultCXX(cfg.Goos, cfg.Goarch))
  2286  }
  2287  
  2288  // fcExe returns the FC compiler setting without all the extra flags we add implicitly.
  2289  func (b *Builder) fcExe() []string {
  2290  	return envList("FC", "gfortran")
  2291  }
  2292  
  2293  // compilerCmd returns a command line prefix for the given environment
  2294  // variable and using the default command when the variable is empty.
  2295  func (b *Builder) compilerCmd(compiler []string, incdir, workdir string) []string {
  2296  	a := append(compiler, "-I", incdir)
  2297  
  2298  	// Definitely want -fPIC but on Windows gcc complains
  2299  	// "-fPIC ignored for target (all code is position independent)"
  2300  	if cfg.Goos != "windows" {
  2301  		a = append(a, "-fPIC")
  2302  	}
  2303  	a = append(a, b.gccArchArgs()...)
  2304  	// gcc-4.5 and beyond require explicit "-pthread" flag
  2305  	// for multithreading with pthread library.
  2306  	if cfg.BuildContext.CgoEnabled {
  2307  		switch cfg.Goos {
  2308  		case "windows":
  2309  			a = append(a, "-mthreads")
  2310  		default:
  2311  			a = append(a, "-pthread")
  2312  		}
  2313  	}
  2314  
  2315  	if cfg.Goos == "aix" {
  2316  		// mcmodel=large must always be enabled to allow large TOC.
  2317  		a = append(a, "-mcmodel=large")
  2318  	}
  2319  
  2320  	// disable ASCII art in clang errors, if possible
  2321  	if b.gccSupportsFlag(compiler, "-fno-caret-diagnostics") {
  2322  		a = append(a, "-fno-caret-diagnostics")
  2323  	}
  2324  	// clang is too smart about command-line arguments
  2325  	if b.gccSupportsFlag(compiler, "-Qunused-arguments") {
  2326  		a = append(a, "-Qunused-arguments")
  2327  	}
  2328  
  2329  	// zig cc passes --gc-sections to the underlying linker, which then causes
  2330  	// undefined symbol errors when compiling with cgo but without C code.
  2331  	// https://github.com/golang/go/issues/52690
  2332  	if b.gccSupportsFlag(compiler, "-Wl,--no-gc-sections") {
  2333  		a = append(a, "-Wl,--no-gc-sections")
  2334  	}
  2335  
  2336  	// disable word wrapping in error messages
  2337  	a = append(a, "-fmessage-length=0")
  2338  
  2339  	// Tell gcc not to include the work directory in object files.
  2340  	if b.gccSupportsFlag(compiler, "-fdebug-prefix-map=a=b") {
  2341  		if workdir == "" {
  2342  			workdir = b.WorkDir
  2343  		}
  2344  		workdir = strings.TrimSuffix(workdir, string(filepath.Separator))
  2345  		if b.gccSupportsFlag(compiler, "-ffile-prefix-map=a=b") {
  2346  			a = append(a, "-ffile-prefix-map="+workdir+"=/tmp/go-build")
  2347  		} else {
  2348  			a = append(a, "-fdebug-prefix-map="+workdir+"=/tmp/go-build")
  2349  		}
  2350  	}
  2351  
  2352  	// Tell gcc not to include flags in object files, which defeats the
  2353  	// point of -fdebug-prefix-map above.
  2354  	if b.gccSupportsFlag(compiler, "-gno-record-gcc-switches") {
  2355  		a = append(a, "-gno-record-gcc-switches")
  2356  	}
  2357  
  2358  	// On OS X, some of the compilers behave as if -fno-common
  2359  	// is always set, and the Mach-O linker in 6l/8l assumes this.
  2360  	// See https://golang.org/issue/3253.
  2361  	if cfg.Goos == "darwin" || cfg.Goos == "ios" {
  2362  		a = append(a, "-fno-common")
  2363  	}
  2364  
  2365  	return a
  2366  }
  2367  
  2368  // gccNoPie returns the flag to use to request non-PIE. On systems
  2369  // with PIE (position independent executables) enabled by default,
  2370  // -no-pie must be passed when doing a partial link with -Wl,-r.
  2371  // But -no-pie is not supported by all compilers, and clang spells it -nopie.
  2372  func (b *Builder) gccNoPie(linker []string) string {
  2373  	if b.gccSupportsFlag(linker, "-no-pie") {
  2374  		return "-no-pie"
  2375  	}
  2376  	if b.gccSupportsFlag(linker, "-nopie") {
  2377  		return "-nopie"
  2378  	}
  2379  	return ""
  2380  }
  2381  
  2382  // gccSupportsFlag checks to see if the compiler supports a flag.
  2383  func (b *Builder) gccSupportsFlag(compiler []string, flag string) bool {
  2384  	// We use the background shell for operations here because, while this is
  2385  	// triggered by some Action, it's not really about that Action, and often we
  2386  	// just get the results from the global cache.
  2387  	sh := b.BackgroundShell()
  2388  
  2389  	key := [2]string{compiler[0], flag}
  2390  
  2391  	// We used to write an empty C file, but that gets complicated with go
  2392  	// build -n. We tried using a file that does not exist, but that fails on
  2393  	// systems with GCC version 4.2.1; that is the last GPLv2 version of GCC,
  2394  	// so some systems have frozen on it. Now we pass an empty file on stdin,
  2395  	// which should work at least for GCC and clang.
  2396  	//
  2397  	// If the argument is "-Wl,", then it is testing the linker. In that case,
  2398  	// skip "-c". If it's not "-Wl,", then we are testing the compiler and can
  2399  	// omit the linking step with "-c".
  2400  	//
  2401  	// Using the same CFLAGS/LDFLAGS here and for building the program.
  2402  
  2403  	// On the iOS builder the command
  2404  	//   $CC -Wl,--no-gc-sections -x c - -o /dev/null < /dev/null
  2405  	// is failing with:
  2406  	//   Unable to remove existing file: Invalid argument
  2407  	tmp := os.DevNull
  2408  	if runtime.GOOS == "windows" || runtime.GOOS == "ios" {
  2409  		f, err := os.CreateTemp(b.WorkDir, "")
  2410  		if err != nil {
  2411  			return false
  2412  		}
  2413  		f.Close()
  2414  		tmp = f.Name()
  2415  		defer os.Remove(tmp)
  2416  	}
  2417  
  2418  	cmdArgs := str.StringList(compiler, flag)
  2419  	if strings.HasPrefix(flag, "-Wl,") /* linker flag */ {
  2420  		ldflags, err := buildFlags("LDFLAGS", DefaultCFlags, nil, checkLinkerFlags)
  2421  		if err != nil {
  2422  			return false
  2423  		}
  2424  		cmdArgs = append(cmdArgs, ldflags...)
  2425  	} else { /* compiler flag, add "-c" */
  2426  		cflags, err := buildFlags("CFLAGS", DefaultCFlags, nil, checkCompilerFlags)
  2427  		if err != nil {
  2428  			return false
  2429  		}
  2430  		cmdArgs = append(cmdArgs, cflags...)
  2431  		cmdArgs = append(cmdArgs, "-c")
  2432  	}
  2433  
  2434  	cmdArgs = append(cmdArgs, "-x", "c", "-", "-o", tmp)
  2435  
  2436  	if cfg.BuildN {
  2437  		sh.ShowCmd(b.WorkDir, "%s || true", joinUnambiguously(cmdArgs))
  2438  		return false
  2439  	}
  2440  
  2441  	// gccCompilerID acquires b.exec, so do before acquiring lock.
  2442  	compilerID, cacheOK := b.gccCompilerID(compiler[0])
  2443  
  2444  	b.exec.Lock()
  2445  	defer b.exec.Unlock()
  2446  	if b, ok := b.flagCache[key]; ok {
  2447  		return b
  2448  	}
  2449  	if b.flagCache == nil {
  2450  		b.flagCache = make(map[[2]string]bool)
  2451  	}
  2452  
  2453  	// Look in build cache.
  2454  	var flagID cache.ActionID
  2455  	if cacheOK {
  2456  		flagID = cache.Subkey(compilerID, "gccSupportsFlag "+flag)
  2457  		if data, _, err := cache.GetBytes(cache.Default(), flagID); err == nil {
  2458  			supported := string(data) == "true"
  2459  			b.flagCache[key] = supported
  2460  			return supported
  2461  		}
  2462  	}
  2463  
  2464  	if cfg.BuildX {
  2465  		sh.ShowCmd(b.WorkDir, "%s || true", joinUnambiguously(cmdArgs))
  2466  	}
  2467  	cmd := exec.Command(cmdArgs[0], cmdArgs[1:]...)
  2468  	cmd.Dir = b.WorkDir
  2469  	cmd.Env = append(cmd.Environ(), "LC_ALL=C")
  2470  	out, _ := cmd.CombinedOutput()
  2471  	// GCC says "unrecognized command line option".
  2472  	// clang says "unknown argument".
  2473  	// tcc says "unsupported"
  2474  	// AIX says "not recognized"
  2475  	// Older versions of GCC say "unrecognised debug output level".
  2476  	// For -fsplit-stack GCC says "'-fsplit-stack' is not supported".
  2477  	supported := !bytes.Contains(out, []byte("unrecognized")) &&
  2478  		!bytes.Contains(out, []byte("unknown")) &&
  2479  		!bytes.Contains(out, []byte("unrecognised")) &&
  2480  		!bytes.Contains(out, []byte("is not supported")) &&
  2481  		!bytes.Contains(out, []byte("not recognized")) &&
  2482  		!bytes.Contains(out, []byte("unsupported"))
  2483  
  2484  	if cacheOK {
  2485  		s := "false"
  2486  		if supported {
  2487  			s = "true"
  2488  		}
  2489  		cache.PutBytes(cache.Default(), flagID, []byte(s))
  2490  	}
  2491  
  2492  	b.flagCache[key] = supported
  2493  	return supported
  2494  }
  2495  
  2496  // statString returns a string form of an os.FileInfo, for serializing and comparison.
  2497  func statString(info os.FileInfo) string {
  2498  	return fmt.Sprintf("stat %d %x %v %v\n", info.Size(), uint64(info.Mode()), info.ModTime(), info.IsDir())
  2499  }
  2500  
  2501  // gccCompilerID returns a build cache key for the current gcc,
  2502  // as identified by running 'compiler'.
  2503  // The caller can use subkeys of the key.
  2504  // Other parts of cmd/go can use the id as a hash
  2505  // of the installed compiler version.
  2506  func (b *Builder) gccCompilerID(compiler string) (id cache.ActionID, ok bool) {
  2507  	// We use the background shell for operations here because, while this is
  2508  	// triggered by some Action, it's not really about that Action, and often we
  2509  	// just get the results from the global cache.
  2510  	sh := b.BackgroundShell()
  2511  
  2512  	if cfg.BuildN {
  2513  		sh.ShowCmd(b.WorkDir, "%s || true", joinUnambiguously([]string{compiler, "--version"}))
  2514  		return cache.ActionID{}, false
  2515  	}
  2516  
  2517  	b.exec.Lock()
  2518  	defer b.exec.Unlock()
  2519  
  2520  	if id, ok := b.gccCompilerIDCache[compiler]; ok {
  2521  		return id, ok
  2522  	}
  2523  
  2524  	// We hash the compiler's full path to get a cache entry key.
  2525  	// That cache entry holds a validation description,
  2526  	// which is of the form:
  2527  	//
  2528  	//	filename \x00 statinfo \x00
  2529  	//	...
  2530  	//	compiler id
  2531  	//
  2532  	// If os.Stat of each filename matches statinfo,
  2533  	// then the entry is still valid, and we can use the
  2534  	// compiler id without any further expense.
  2535  	//
  2536  	// Otherwise, we compute a new validation description
  2537  	// and compiler id (below).
  2538  	exe, err := pathcache.LookPath(compiler)
  2539  	if err != nil {
  2540  		return cache.ActionID{}, false
  2541  	}
  2542  
  2543  	h := cache.NewHash("gccCompilerID")
  2544  	fmt.Fprintf(h, "gccCompilerID %q", exe)
  2545  	key := h.Sum()
  2546  	data, _, err := cache.GetBytes(cache.Default(), key)
  2547  	if err == nil && len(data) > len(id) {
  2548  		stats := strings.Split(string(data[:len(data)-len(id)]), "\x00")
  2549  		if len(stats)%2 != 0 {
  2550  			goto Miss
  2551  		}
  2552  		for i := 0; i+2 <= len(stats); i++ {
  2553  			info, err := os.Stat(stats[i])
  2554  			if err != nil || statString(info) != stats[i+1] {
  2555  				goto Miss
  2556  			}
  2557  		}
  2558  		copy(id[:], data[len(data)-len(id):])
  2559  		return id, true
  2560  	Miss:
  2561  	}
  2562  
  2563  	// Validation failed. Compute a new description (in buf) and compiler ID (in h).
  2564  	// For now, there are only at most two filenames in the stat information.
  2565  	// The first one is the compiler executable we invoke.
  2566  	// The second is the underlying compiler as reported by -v -###
  2567  	// (see b.gccToolID implementation in buildid.go).
  2568  	toolID, exe2, err := b.gccToolID(compiler, "c")
  2569  	if err != nil {
  2570  		return cache.ActionID{}, false
  2571  	}
  2572  
  2573  	exes := []string{exe, exe2}
  2574  	str.Uniq(&exes)
  2575  	fmt.Fprintf(h, "gccCompilerID %q %q\n", exes, toolID)
  2576  	id = h.Sum()
  2577  
  2578  	var buf bytes.Buffer
  2579  	for _, exe := range exes {
  2580  		if exe == "" {
  2581  			continue
  2582  		}
  2583  		info, err := os.Stat(exe)
  2584  		if err != nil {
  2585  			return cache.ActionID{}, false
  2586  		}
  2587  		buf.WriteString(exe)
  2588  		buf.WriteString("\x00")
  2589  		buf.WriteString(statString(info))
  2590  		buf.WriteString("\x00")
  2591  	}
  2592  	buf.Write(id[:])
  2593  
  2594  	cache.PutBytes(cache.Default(), key, buf.Bytes())
  2595  	if b.gccCompilerIDCache == nil {
  2596  		b.gccCompilerIDCache = make(map[string]cache.ActionID)
  2597  	}
  2598  	b.gccCompilerIDCache[compiler] = id
  2599  	return id, true
  2600  }
  2601  
  2602  // gccArchArgs returns arguments to pass to gcc based on the architecture.
  2603  func (b *Builder) gccArchArgs() []string {
  2604  	switch cfg.Goarch {
  2605  	case "386":
  2606  		return []string{"-m32"}
  2607  	case "amd64":
  2608  		if cfg.Goos == "darwin" {
  2609  			return []string{"-arch", "x86_64", "-m64"}
  2610  		}
  2611  		return []string{"-m64"}
  2612  	case "arm64":
  2613  		if cfg.Goos == "darwin" {
  2614  			return []string{"-arch", "arm64"}
  2615  		}
  2616  	case "arm":
  2617  		return []string{"-marm"} // not thumb
  2618  	case "s390x":
  2619  		return []string{"-m64", "-march=z196"}
  2620  	case "mips64", "mips64le":
  2621  		args := []string{"-mabi=64"}
  2622  		if cfg.GOMIPS64 == "hardfloat" {
  2623  			return append(args, "-mhard-float")
  2624  		} else if cfg.GOMIPS64 == "softfloat" {
  2625  			return append(args, "-msoft-float")
  2626  		}
  2627  	case "mips", "mipsle":
  2628  		args := []string{"-mabi=32", "-march=mips32"}
  2629  		if cfg.GOMIPS == "hardfloat" {
  2630  			return append(args, "-mhard-float", "-mfp32", "-mno-odd-spreg")
  2631  		} else if cfg.GOMIPS == "softfloat" {
  2632  			return append(args, "-msoft-float")
  2633  		}
  2634  	case "loong64":
  2635  		return []string{"-mabi=lp64d"}
  2636  	case "ppc64":
  2637  		if cfg.Goos == "aix" {
  2638  			return []string{"-maix64"}
  2639  		}
  2640  	}
  2641  	return nil
  2642  }
  2643  
  2644  // envList returns the value of the given environment variable broken
  2645  // into fields, using the default value when the variable is empty.
  2646  //
  2647  // The environment variable must be quoted correctly for
  2648  // quoted.Split. This should be done before building
  2649  // anything, for example, in BuildInit.
  2650  func envList(key, def string) []string {
  2651  	v := cfg.Getenv(key)
  2652  	if v == "" {
  2653  		v = def
  2654  	}
  2655  	args, err := quoted.Split(v)
  2656  	if err != nil {
  2657  		panic(fmt.Sprintf("could not parse environment variable %s with value %q: %v", key, v, err))
  2658  	}
  2659  	return args
  2660  }
  2661  
  2662  // CFlags returns the flags to use when invoking the C, C++ or Fortran compilers, or cgo.
  2663  func (b *Builder) CFlags(p *load.Package) (cppflags, cflags, cxxflags, fflags, ldflags []string, err error) {
  2664  	if cppflags, err = buildFlags("CPPFLAGS", "", p.CgoCPPFLAGS, checkCompilerFlags); err != nil {
  2665  		return
  2666  	}
  2667  	if cflags, err = buildFlags("CFLAGS", DefaultCFlags, p.CgoCFLAGS, checkCompilerFlags); err != nil {
  2668  		return
  2669  	}
  2670  	if cxxflags, err = buildFlags("CXXFLAGS", DefaultCFlags, p.CgoCXXFLAGS, checkCompilerFlags); err != nil {
  2671  		return
  2672  	}
  2673  	if fflags, err = buildFlags("FFLAGS", DefaultCFlags, p.CgoFFLAGS, checkCompilerFlags); err != nil {
  2674  		return
  2675  	}
  2676  	if ldflags, err = buildFlags("LDFLAGS", DefaultCFlags, p.CgoLDFLAGS, checkLinkerFlags); err != nil {
  2677  		return
  2678  	}
  2679  
  2680  	return
  2681  }
  2682  
  2683  func buildFlags(name, defaults string, fromPackage []string, check func(string, string, []string) error) ([]string, error) {
  2684  	if err := check(name, "#cgo "+name, fromPackage); err != nil {
  2685  		return nil, err
  2686  	}
  2687  	return str.StringList(envList("CGO_"+name, defaults), fromPackage), nil
  2688  }
  2689  
  2690  var cgoRe = lazyregexp.New(`[/\\:]`)
  2691  
  2692  func (b *Builder) cgo(a *Action, cgoExe, objdir string, pcCFLAGS, pcLDFLAGS, cgofiles, gccfiles, gxxfiles, mfiles, ffiles []string) (outGo, outObj []string, err error) {
  2693  	p := a.Package
  2694  	sh := b.Shell(a)
  2695  
  2696  	cgoCPPFLAGS, cgoCFLAGS, cgoCXXFLAGS, cgoFFLAGS, cgoLDFLAGS, err := b.CFlags(p)
  2697  	if err != nil {
  2698  		return nil, nil, err
  2699  	}
  2700  
  2701  	cgoCPPFLAGS = append(cgoCPPFLAGS, pcCFLAGS...)
  2702  	cgoLDFLAGS = append(cgoLDFLAGS, pcLDFLAGS...)
  2703  	// If we are compiling Objective-C code, then we need to link against libobjc
  2704  	if len(mfiles) > 0 {
  2705  		cgoLDFLAGS = append(cgoLDFLAGS, "-lobjc")
  2706  	}
  2707  
  2708  	// Likewise for Fortran, except there are many Fortran compilers.
  2709  	// Support gfortran out of the box and let others pass the correct link options
  2710  	// via CGO_LDFLAGS
  2711  	if len(ffiles) > 0 {
  2712  		fc := cfg.Getenv("FC")
  2713  		if fc == "" {
  2714  			fc = "gfortran"
  2715  		}
  2716  		if strings.Contains(fc, "gfortran") {
  2717  			cgoLDFLAGS = append(cgoLDFLAGS, "-lgfortran")
  2718  		}
  2719  	}
  2720  
  2721  	// Scrutinize CFLAGS and related for flags that might cause
  2722  	// problems if we are using internal linking (for example, use of
  2723  	// plugins, LTO, etc) by calling a helper routine that builds on
  2724  	// the existing CGO flags allow-lists. If we see anything
  2725  	// suspicious, emit a special token file "preferlinkext" (known to
  2726  	// the linker) in the object file to signal the that it should not
  2727  	// try to link internally and should revert to external linking.
  2728  	// The token we pass is a suggestion, not a mandate; if a user is
  2729  	// explicitly asking for a specific linkmode via the "-linkmode"
  2730  	// flag, the token will be ignored. NB: in theory we could ditch
  2731  	// the token approach and just pass a flag to the linker when we
  2732  	// eventually invoke it, and the linker flag could then be
  2733  	// documented (although coming up with a simple explanation of the
  2734  	// flag might be challenging). For more context see issues #58619,
  2735  	// #58620, and #58848.
  2736  	flagSources := []string{"CGO_CFLAGS", "CGO_CXXFLAGS", "CGO_FFLAGS"}
  2737  	flagLists := [][]string{cgoCFLAGS, cgoCXXFLAGS, cgoFFLAGS}
  2738  	if flagsNotCompatibleWithInternalLinking(flagSources, flagLists) {
  2739  		tokenFile := objdir + "preferlinkext"
  2740  		if err := sh.writeFile(tokenFile, nil); err != nil {
  2741  			return nil, nil, err
  2742  		}
  2743  		outObj = append(outObj, tokenFile)
  2744  	}
  2745  
  2746  	if cfg.BuildMSan {
  2747  		cgoCFLAGS = append([]string{"-fsanitize=memory"}, cgoCFLAGS...)
  2748  		cgoLDFLAGS = append([]string{"-fsanitize=memory"}, cgoLDFLAGS...)
  2749  	}
  2750  	if cfg.BuildASan {
  2751  		cgoCFLAGS = append([]string{"-fsanitize=address"}, cgoCFLAGS...)
  2752  		cgoLDFLAGS = append([]string{"-fsanitize=address"}, cgoLDFLAGS...)
  2753  	}
  2754  
  2755  	// Allows including _cgo_export.h, as well as the user's .h files,
  2756  	// from .[ch] files in the package.
  2757  	cgoCPPFLAGS = append(cgoCPPFLAGS, "-I", objdir)
  2758  
  2759  	// cgo
  2760  	// TODO: CGO_FLAGS?
  2761  	gofiles := []string{objdir + "_cgo_gotypes.go"}
  2762  	cfiles := []string{"_cgo_export.c"}
  2763  	for _, fn := range cgofiles {
  2764  		f := strings.TrimSuffix(filepath.Base(fn), ".go")
  2765  		gofiles = append(gofiles, objdir+f+".cgo1.go")
  2766  		cfiles = append(cfiles, f+".cgo2.c")
  2767  	}
  2768  
  2769  	// TODO: make cgo not depend on $GOARCH?
  2770  
  2771  	cgoflags := []string{}
  2772  	if p.Standard && p.ImportPath == "runtime/cgo" {
  2773  		cgoflags = append(cgoflags, "-import_runtime_cgo=false")
  2774  	}
  2775  	if p.Standard && (p.ImportPath == "runtime/race" || p.ImportPath == "runtime/msan" || p.ImportPath == "runtime/cgo" || p.ImportPath == "runtime/asan") {
  2776  		cgoflags = append(cgoflags, "-import_syscall=false")
  2777  	}
  2778  
  2779  	// cgoLDFLAGS, which includes p.CgoLDFLAGS, can be very long.
  2780  	// Pass it to cgo on the command line, so that we use a
  2781  	// response file if necessary.
  2782  	//
  2783  	// These flags are recorded in the generated _cgo_gotypes.go file
  2784  	// using //go:cgo_ldflag directives, the compiler records them in the
  2785  	// object file for the package, and then the Go linker passes them
  2786  	// along to the host linker. At this point in the code, cgoLDFLAGS
  2787  	// consists of the original $CGO_LDFLAGS (unchecked) and all the
  2788  	// flags put together from source code (checked).
  2789  	cgoenv := b.cCompilerEnv()
  2790  	var ldflagsOption []string
  2791  	if len(cgoLDFLAGS) > 0 {
  2792  		flags := make([]string, len(cgoLDFLAGS))
  2793  		for i, f := range cgoLDFLAGS {
  2794  			flags[i] = strconv.Quote(f)
  2795  		}
  2796  		ldflagsOption = []string{"-ldflags=" + strings.Join(flags, " ")}
  2797  
  2798  		// Remove CGO_LDFLAGS from the environment.
  2799  		cgoenv = append(cgoenv, "CGO_LDFLAGS=")
  2800  	}
  2801  
  2802  	if cfg.BuildToolchainName == "gccgo" {
  2803  		if b.gccSupportsFlag([]string{BuildToolchain.compiler()}, "-fsplit-stack") {
  2804  			cgoCFLAGS = append(cgoCFLAGS, "-fsplit-stack")
  2805  		}
  2806  		cgoflags = append(cgoflags, "-gccgo")
  2807  		if pkgpath := gccgoPkgpath(p); pkgpath != "" {
  2808  			cgoflags = append(cgoflags, "-gccgopkgpath="+pkgpath)
  2809  		}
  2810  		if !BuildToolchain.(gccgoToolchain).supportsCgoIncomplete(b, a) {
  2811  			cgoflags = append(cgoflags, "-gccgo_define_cgoincomplete")
  2812  		}
  2813  	}
  2814  
  2815  	switch cfg.BuildBuildmode {
  2816  	case "c-archive", "c-shared":
  2817  		// Tell cgo that if there are any exported functions
  2818  		// it should generate a header file that C code can
  2819  		// #include.
  2820  		cgoflags = append(cgoflags, "-exportheader="+objdir+"_cgo_install.h")
  2821  	}
  2822  
  2823  	// Rewrite overlaid paths in cgo files.
  2824  	// cgo adds //line and #line pragmas in generated files with these paths.
  2825  	var trimpath []string
  2826  	for i := range cgofiles {
  2827  		path := mkAbs(p.Dir, cgofiles[i])
  2828  		if fsys.Replaced(path) {
  2829  			actual := fsys.Actual(path)
  2830  			cgofiles[i] = actual
  2831  			trimpath = append(trimpath, actual+"=>"+path)
  2832  		}
  2833  	}
  2834  	if len(trimpath) > 0 {
  2835  		cgoflags = append(cgoflags, "-trimpath", strings.Join(trimpath, ";"))
  2836  	}
  2837  
  2838  	if err := sh.run(p.Dir, p.ImportPath, cgoenv, cfg.BuildToolexec, cgoExe, "-objdir", objdir, "-importpath", p.ImportPath, cgoflags, ldflagsOption, "--", cgoCPPFLAGS, cgoCFLAGS, cgofiles); err != nil {
  2839  		return nil, nil, err
  2840  	}
  2841  	outGo = append(outGo, gofiles...)
  2842  
  2843  	// Use sequential object file names to keep them distinct
  2844  	// and short enough to fit in the .a header file name slots.
  2845  	// We no longer collect them all into _all.o, and we'd like
  2846  	// tools to see both the .o suffix and unique names, so
  2847  	// we need to make them short enough not to be truncated
  2848  	// in the final archive.
  2849  	oseq := 0
  2850  	nextOfile := func() string {
  2851  		oseq++
  2852  		return objdir + fmt.Sprintf("_x%03d.o", oseq)
  2853  	}
  2854  
  2855  	// gcc
  2856  	cflags := str.StringList(cgoCPPFLAGS, cgoCFLAGS)
  2857  	for _, cfile := range cfiles {
  2858  		ofile := nextOfile()
  2859  		if err := b.gcc(a, a.Objdir, ofile, cflags, objdir+cfile); err != nil {
  2860  			return nil, nil, err
  2861  		}
  2862  		outObj = append(outObj, ofile)
  2863  	}
  2864  
  2865  	for _, file := range gccfiles {
  2866  		ofile := nextOfile()
  2867  		if err := b.gcc(a, a.Objdir, ofile, cflags, file); err != nil {
  2868  			return nil, nil, err
  2869  		}
  2870  		outObj = append(outObj, ofile)
  2871  	}
  2872  
  2873  	cxxflags := str.StringList(cgoCPPFLAGS, cgoCXXFLAGS)
  2874  	for _, file := range gxxfiles {
  2875  		ofile := nextOfile()
  2876  		if err := b.gxx(a, a.Objdir, ofile, cxxflags, file); err != nil {
  2877  			return nil, nil, err
  2878  		}
  2879  		outObj = append(outObj, ofile)
  2880  	}
  2881  
  2882  	for _, file := range mfiles {
  2883  		ofile := nextOfile()
  2884  		if err := b.gcc(a, a.Objdir, ofile, cflags, file); err != nil {
  2885  			return nil, nil, err
  2886  		}
  2887  		outObj = append(outObj, ofile)
  2888  	}
  2889  
  2890  	fflags := str.StringList(cgoCPPFLAGS, cgoFFLAGS)
  2891  	for _, file := range ffiles {
  2892  		ofile := nextOfile()
  2893  		if err := b.gfortran(a, a.Objdir, ofile, fflags, file); err != nil {
  2894  			return nil, nil, err
  2895  		}
  2896  		outObj = append(outObj, ofile)
  2897  	}
  2898  
  2899  	switch cfg.BuildToolchainName {
  2900  	case "gc":
  2901  		importGo := objdir + "_cgo_import.go"
  2902  		dynOutGo, dynOutObj, err := b.dynimport(a, objdir, importGo, cgoExe, cflags, cgoLDFLAGS, outObj)
  2903  		if err != nil {
  2904  			return nil, nil, err
  2905  		}
  2906  		if dynOutGo != "" {
  2907  			outGo = append(outGo, dynOutGo)
  2908  		}
  2909  		if dynOutObj != "" {
  2910  			outObj = append(outObj, dynOutObj)
  2911  		}
  2912  
  2913  	case "gccgo":
  2914  		defunC := objdir + "_cgo_defun.c"
  2915  		defunObj := objdir + "_cgo_defun.o"
  2916  		if err := BuildToolchain.cc(b, a, defunObj, defunC); err != nil {
  2917  			return nil, nil, err
  2918  		}
  2919  		outObj = append(outObj, defunObj)
  2920  
  2921  	default:
  2922  		noCompiler()
  2923  	}
  2924  
  2925  	// Double check the //go:cgo_ldflag comments in the generated files.
  2926  	// The compiler only permits such comments in files whose base name
  2927  	// starts with "_cgo_". Make sure that the comments in those files
  2928  	// are safe. This is a backstop against people somehow smuggling
  2929  	// such a comment into a file generated by cgo.
  2930  	if cfg.BuildToolchainName == "gc" && !cfg.BuildN {
  2931  		var flags []string
  2932  		for _, f := range outGo {
  2933  			if !strings.HasPrefix(filepath.Base(f), "_cgo_") {
  2934  				continue
  2935  			}
  2936  
  2937  			src, err := os.ReadFile(f)
  2938  			if err != nil {
  2939  				return nil, nil, err
  2940  			}
  2941  
  2942  			const cgoLdflag = "//go:cgo_ldflag"
  2943  			idx := bytes.Index(src, []byte(cgoLdflag))
  2944  			for idx >= 0 {
  2945  				// We are looking at //go:cgo_ldflag.
  2946  				// Find start of line.
  2947  				start := bytes.LastIndex(src[:idx], []byte("\n"))
  2948  				if start == -1 {
  2949  					start = 0
  2950  				}
  2951  
  2952  				// Find end of line.
  2953  				end := bytes.Index(src[idx:], []byte("\n"))
  2954  				if end == -1 {
  2955  					end = len(src)
  2956  				} else {
  2957  					end += idx
  2958  				}
  2959  
  2960  				// Check for first line comment in line.
  2961  				// We don't worry about /* */ comments,
  2962  				// which normally won't appear in files
  2963  				// generated by cgo.
  2964  				commentStart := bytes.Index(src[start:], []byte("//"))
  2965  				commentStart += start
  2966  				// If that line comment is //go:cgo_ldflag,
  2967  				// it's a match.
  2968  				if bytes.HasPrefix(src[commentStart:], []byte(cgoLdflag)) {
  2969  					// Pull out the flag, and unquote it.
  2970  					// This is what the compiler does.
  2971  					flag := string(src[idx+len(cgoLdflag) : end])
  2972  					flag = strings.TrimSpace(flag)
  2973  					flag = strings.Trim(flag, `"`)
  2974  					flags = append(flags, flag)
  2975  				}
  2976  				src = src[end:]
  2977  				idx = bytes.Index(src, []byte(cgoLdflag))
  2978  			}
  2979  		}
  2980  
  2981  		// We expect to find the contents of cgoLDFLAGS in flags.
  2982  		if len(cgoLDFLAGS) > 0 {
  2983  		outer:
  2984  			for i := range flags {
  2985  				for j, f := range cgoLDFLAGS {
  2986  					if f != flags[i+j] {
  2987  						continue outer
  2988  					}
  2989  				}
  2990  				flags = append(flags[:i], flags[i+len(cgoLDFLAGS):]...)
  2991  				break
  2992  			}
  2993  		}
  2994  
  2995  		if err := checkLinkerFlags("LDFLAGS", "go:cgo_ldflag", flags); err != nil {
  2996  			return nil, nil, err
  2997  		}
  2998  	}
  2999  
  3000  	return outGo, outObj, nil
  3001  }
  3002  
  3003  // flagsNotCompatibleWithInternalLinking scans the list of cgo
  3004  // compiler flags (C/C++/Fortran) looking for flags that might cause
  3005  // problems if the build in question uses internal linking. The
  3006  // primary culprits are use of plugins or use of LTO, but we err on
  3007  // the side of caution, supporting only those flags that are on the
  3008  // allow-list for safe flags from security perspective. Return is TRUE
  3009  // if a sensitive flag is found, FALSE otherwise.
  3010  func flagsNotCompatibleWithInternalLinking(sourceList []string, flagListList [][]string) bool {
  3011  	for i := range sourceList {
  3012  		sn := sourceList[i]
  3013  		fll := flagListList[i]
  3014  		if err := checkCompilerFlagsForInternalLink(sn, sn, fll); err != nil {
  3015  			return true
  3016  		}
  3017  	}
  3018  	return false
  3019  }
  3020  
  3021  // dynimport creates a Go source file named importGo containing
  3022  // //go:cgo_import_dynamic directives for each symbol or library
  3023  // dynamically imported by the object files outObj.
  3024  // dynOutGo, if not empty, is a new Go file to build as part of the package.
  3025  // dynOutObj, if not empty, is a new file to add to the generated archive.
  3026  func (b *Builder) dynimport(a *Action, objdir, importGo, cgoExe string, cflags, cgoLDFLAGS, outObj []string) (dynOutGo, dynOutObj string, err error) {
  3027  	p := a.Package
  3028  	sh := b.Shell(a)
  3029  
  3030  	cfile := objdir + "_cgo_main.c"
  3031  	ofile := objdir + "_cgo_main.o"
  3032  	if err := b.gcc(a, objdir, ofile, cflags, cfile); err != nil {
  3033  		return "", "", err
  3034  	}
  3035  
  3036  	// Gather .syso files from this package and all (transitive) dependencies.
  3037  	var syso []string
  3038  	seen := make(map[*Action]bool)
  3039  	var gatherSyso func(*Action)
  3040  	gatherSyso = func(a1 *Action) {
  3041  		if seen[a1] {
  3042  			return
  3043  		}
  3044  		seen[a1] = true
  3045  		if p1 := a1.Package; p1 != nil {
  3046  			syso = append(syso, mkAbsFiles(p1.Dir, p1.SysoFiles)...)
  3047  		}
  3048  		for _, a2 := range a1.Deps {
  3049  			gatherSyso(a2)
  3050  		}
  3051  	}
  3052  	gatherSyso(a)
  3053  	sort.Strings(syso)
  3054  	str.Uniq(&syso)
  3055  	linkobj := str.StringList(ofile, outObj, syso)
  3056  	dynobj := objdir + "_cgo_.o"
  3057  
  3058  	ldflags := cgoLDFLAGS
  3059  	if (cfg.Goarch == "arm" && cfg.Goos == "linux") || cfg.Goos == "android" {
  3060  		if !slices.Contains(ldflags, "-no-pie") {
  3061  			// we need to use -pie for Linux/ARM to get accurate imported sym (added in https://golang.org/cl/5989058)
  3062  			// this seems to be outdated, but we don't want to break existing builds depending on this (Issue 45940)
  3063  			ldflags = append(ldflags, "-pie")
  3064  		}
  3065  		if slices.Contains(ldflags, "-pie") && slices.Contains(ldflags, "-static") {
  3066  			// -static -pie doesn't make sense, and causes link errors.
  3067  			// Issue 26197.
  3068  			n := make([]string, 0, len(ldflags)-1)
  3069  			for _, flag := range ldflags {
  3070  				if flag != "-static" {
  3071  					n = append(n, flag)
  3072  				}
  3073  			}
  3074  			ldflags = n
  3075  		}
  3076  	}
  3077  	if err := b.gccld(a, objdir, dynobj, ldflags, linkobj); err != nil {
  3078  		// We only need this information for internal linking.
  3079  		// If this link fails, mark the object as requiring
  3080  		// external linking. This link can fail for things like
  3081  		// syso files that have unexpected dependencies.
  3082  		// cmd/link explicitly looks for the name "dynimportfail".
  3083  		// See issue #52863.
  3084  		fail := objdir + "dynimportfail"
  3085  		if err := sh.writeFile(fail, nil); err != nil {
  3086  			return "", "", err
  3087  		}
  3088  		return "", fail, nil
  3089  	}
  3090  
  3091  	// cgo -dynimport
  3092  	var cgoflags []string
  3093  	if p.Standard && p.ImportPath == "runtime/cgo" {
  3094  		cgoflags = []string{"-dynlinker"} // record path to dynamic linker
  3095  	}
  3096  	err = sh.run(base.Cwd(), p.ImportPath, b.cCompilerEnv(), cfg.BuildToolexec, cgoExe, "-dynpackage", p.Name, "-dynimport", dynobj, "-dynout", importGo, cgoflags)
  3097  	if err != nil {
  3098  		return "", "", err
  3099  	}
  3100  	return importGo, "", nil
  3101  }
  3102  
  3103  // Run SWIG on all SWIG input files.
  3104  // TODO: Don't build a shared library, once SWIG emits the necessary
  3105  // pragmas for external linking.
  3106  func (b *Builder) swig(a *Action, objdir string, pcCFLAGS []string) (outGo, outC, outCXX []string, err error) {
  3107  	p := a.Package
  3108  
  3109  	if err := b.swigVersionCheck(); err != nil {
  3110  		return nil, nil, nil, err
  3111  	}
  3112  
  3113  	intgosize, err := b.swigIntSize(objdir)
  3114  	if err != nil {
  3115  		return nil, nil, nil, err
  3116  	}
  3117  
  3118  	for _, f := range p.SwigFiles {
  3119  		goFile, cFile, err := b.swigOne(a, f, objdir, pcCFLAGS, false, intgosize)
  3120  		if err != nil {
  3121  			return nil, nil, nil, err
  3122  		}
  3123  		if goFile != "" {
  3124  			outGo = append(outGo, goFile)
  3125  		}
  3126  		if cFile != "" {
  3127  			outC = append(outC, cFile)
  3128  		}
  3129  	}
  3130  	for _, f := range p.SwigCXXFiles {
  3131  		goFile, cxxFile, err := b.swigOne(a, f, objdir, pcCFLAGS, true, intgosize)
  3132  		if err != nil {
  3133  			return nil, nil, nil, err
  3134  		}
  3135  		if goFile != "" {
  3136  			outGo = append(outGo, goFile)
  3137  		}
  3138  		if cxxFile != "" {
  3139  			outCXX = append(outCXX, cxxFile)
  3140  		}
  3141  	}
  3142  	return outGo, outC, outCXX, nil
  3143  }
  3144  
  3145  // Make sure SWIG is new enough.
  3146  var (
  3147  	swigCheckOnce sync.Once
  3148  	swigCheck     error
  3149  )
  3150  
  3151  func (b *Builder) swigDoVersionCheck() error {
  3152  	sh := b.BackgroundShell()
  3153  	out, err := sh.runOut(".", nil, "swig", "-version")
  3154  	if err != nil {
  3155  		return err
  3156  	}
  3157  	re := regexp.MustCompile(`[vV]ersion +(\d+)([.]\d+)?([.]\d+)?`)
  3158  	matches := re.FindSubmatch(out)
  3159  	if matches == nil {
  3160  		// Can't find version number; hope for the best.
  3161  		return nil
  3162  	}
  3163  
  3164  	major, err := strconv.Atoi(string(matches[1]))
  3165  	if err != nil {
  3166  		// Can't find version number; hope for the best.
  3167  		return nil
  3168  	}
  3169  	const errmsg = "must have SWIG version >= 3.0.6"
  3170  	if major < 3 {
  3171  		return errors.New(errmsg)
  3172  	}
  3173  	if major > 3 {
  3174  		// 4.0 or later
  3175  		return nil
  3176  	}
  3177  
  3178  	// We have SWIG version 3.x.
  3179  	if len(matches[2]) > 0 {
  3180  		minor, err := strconv.Atoi(string(matches[2][1:]))
  3181  		if err != nil {
  3182  			return nil
  3183  		}
  3184  		if minor > 0 {
  3185  			// 3.1 or later
  3186  			return nil
  3187  		}
  3188  	}
  3189  
  3190  	// We have SWIG version 3.0.x.
  3191  	if len(matches[3]) > 0 {
  3192  		patch, err := strconv.Atoi(string(matches[3][1:]))
  3193  		if err != nil {
  3194  			return nil
  3195  		}
  3196  		if patch < 6 {
  3197  			// Before 3.0.6.
  3198  			return errors.New(errmsg)
  3199  		}
  3200  	}
  3201  
  3202  	return nil
  3203  }
  3204  
  3205  func (b *Builder) swigVersionCheck() error {
  3206  	swigCheckOnce.Do(func() {
  3207  		swigCheck = b.swigDoVersionCheck()
  3208  	})
  3209  	return swigCheck
  3210  }
  3211  
  3212  // Find the value to pass for the -intgosize option to swig.
  3213  var (
  3214  	swigIntSizeOnce  sync.Once
  3215  	swigIntSize      string
  3216  	swigIntSizeError error
  3217  )
  3218  
  3219  // This code fails to build if sizeof(int) <= 32
  3220  const swigIntSizeCode = `
  3221  package main
  3222  const i int = 1 << 32
  3223  `
  3224  
  3225  // Determine the size of int on the target system for the -intgosize option
  3226  // of swig >= 2.0.9. Run only once.
  3227  func (b *Builder) swigDoIntSize(objdir string) (intsize string, err error) {
  3228  	if cfg.BuildN {
  3229  		return "$INTBITS", nil
  3230  	}
  3231  	src := filepath.Join(b.WorkDir, "swig_intsize.go")
  3232  	if err = os.WriteFile(src, []byte(swigIntSizeCode), 0666); err != nil {
  3233  		return
  3234  	}
  3235  	srcs := []string{src}
  3236  
  3237  	p := load.GoFilesPackage(context.TODO(), load.PackageOpts{}, srcs)
  3238  
  3239  	if _, _, e := BuildToolchain.gc(b, &Action{Mode: "swigDoIntSize", Package: p, Objdir: objdir}, "", nil, nil, "", false, "", srcs); e != nil {
  3240  		return "32", nil
  3241  	}
  3242  	return "64", nil
  3243  }
  3244  
  3245  // Determine the size of int on the target system for the -intgosize option
  3246  // of swig >= 2.0.9.
  3247  func (b *Builder) swigIntSize(objdir string) (intsize string, err error) {
  3248  	swigIntSizeOnce.Do(func() {
  3249  		swigIntSize, swigIntSizeError = b.swigDoIntSize(objdir)
  3250  	})
  3251  	return swigIntSize, swigIntSizeError
  3252  }
  3253  
  3254  // Run SWIG on one SWIG input file.
  3255  func (b *Builder) swigOne(a *Action, file, objdir string, pcCFLAGS []string, cxx bool, intgosize string) (outGo, outC string, err error) {
  3256  	p := a.Package
  3257  	sh := b.Shell(a)
  3258  
  3259  	cgoCPPFLAGS, cgoCFLAGS, cgoCXXFLAGS, _, _, err := b.CFlags(p)
  3260  	if err != nil {
  3261  		return "", "", err
  3262  	}
  3263  
  3264  	var cflags []string
  3265  	if cxx {
  3266  		cflags = str.StringList(cgoCPPFLAGS, pcCFLAGS, cgoCXXFLAGS)
  3267  	} else {
  3268  		cflags = str.StringList(cgoCPPFLAGS, pcCFLAGS, cgoCFLAGS)
  3269  	}
  3270  
  3271  	n := 5 // length of ".swig"
  3272  	if cxx {
  3273  		n = 8 // length of ".swigcxx"
  3274  	}
  3275  	base := file[:len(file)-n]
  3276  	goFile := base + ".go"
  3277  	gccBase := base + "_wrap."
  3278  	gccExt := "c"
  3279  	if cxx {
  3280  		gccExt = "cxx"
  3281  	}
  3282  
  3283  	gccgo := cfg.BuildToolchainName == "gccgo"
  3284  
  3285  	// swig
  3286  	args := []string{
  3287  		"-go",
  3288  		"-cgo",
  3289  		"-intgosize", intgosize,
  3290  		"-module", base,
  3291  		"-o", objdir + gccBase + gccExt,
  3292  		"-outdir", objdir,
  3293  	}
  3294  
  3295  	for _, f := range cflags {
  3296  		if len(f) > 3 && f[:2] == "-I" {
  3297  			args = append(args, f)
  3298  		}
  3299  	}
  3300  
  3301  	if gccgo {
  3302  		args = append(args, "-gccgo")
  3303  		if pkgpath := gccgoPkgpath(p); pkgpath != "" {
  3304  			args = append(args, "-go-pkgpath", pkgpath)
  3305  		}
  3306  	}
  3307  	if cxx {
  3308  		args = append(args, "-c++")
  3309  	}
  3310  
  3311  	out, err := sh.runOut(p.Dir, nil, "swig", args, file)
  3312  	if err != nil && (bytes.Contains(out, []byte("-intgosize")) || bytes.Contains(out, []byte("-cgo"))) {
  3313  		return "", "", errors.New("must have SWIG version >= 3.0.6")
  3314  	}
  3315  	if err := sh.reportCmd("", "", out, err); err != nil {
  3316  		return "", "", err
  3317  	}
  3318  
  3319  	// If the input was x.swig, the output is x.go in the objdir.
  3320  	// But there might be an x.go in the original dir too, and if it
  3321  	// uses cgo as well, cgo will be processing both and will
  3322  	// translate both into x.cgo1.go in the objdir, overwriting one.
  3323  	// Rename x.go to _x_swig.go to avoid this problem.
  3324  	// We ignore files in the original dir that begin with underscore
  3325  	// so _x_swig.go cannot conflict with an original file we were
  3326  	// going to compile.
  3327  	goFile = objdir + goFile
  3328  	newGoFile := objdir + "_" + base + "_swig.go"
  3329  	if cfg.BuildX || cfg.BuildN {
  3330  		sh.ShowCmd("", "mv %s %s", goFile, newGoFile)
  3331  	}
  3332  	if !cfg.BuildN {
  3333  		if err := os.Rename(goFile, newGoFile); err != nil {
  3334  			return "", "", err
  3335  		}
  3336  	}
  3337  	return newGoFile, objdir + gccBase + gccExt, nil
  3338  }
  3339  
  3340  // disableBuildID adjusts a linker command line to avoid creating a
  3341  // build ID when creating an object file rather than an executable or
  3342  // shared library. Some systems, such as Ubuntu, always add
  3343  // --build-id to every link, but we don't want a build ID when we are
  3344  // producing an object file. On some of those system a plain -r (not
  3345  // -Wl,-r) will turn off --build-id, but clang 3.0 doesn't support a
  3346  // plain -r. I don't know how to turn off --build-id when using clang
  3347  // other than passing a trailing --build-id=none. So that is what we
  3348  // do, but only on systems likely to support it, which is to say,
  3349  // systems that normally use gold or the GNU linker.
  3350  func (b *Builder) disableBuildID(ldflags []string) []string {
  3351  	switch cfg.Goos {
  3352  	case "android", "dragonfly", "linux", "netbsd":
  3353  		ldflags = append(ldflags, "-Wl,--build-id=none")
  3354  	}
  3355  	return ldflags
  3356  }
  3357  
  3358  // mkAbsFiles converts files into a list of absolute files,
  3359  // assuming they were originally relative to dir,
  3360  // and returns that new list.
  3361  func mkAbsFiles(dir string, files []string) []string {
  3362  	abs := make([]string, len(files))
  3363  	for i, f := range files {
  3364  		if !filepath.IsAbs(f) {
  3365  			f = filepath.Join(dir, f)
  3366  		}
  3367  		abs[i] = f
  3368  	}
  3369  	return abs
  3370  }
  3371  
  3372  // actualFiles applies fsys.Actual to the list of files.
  3373  func actualFiles(files []string) []string {
  3374  	a := make([]string, len(files))
  3375  	for i, f := range files {
  3376  		a[i] = fsys.Actual(f)
  3377  	}
  3378  	return a
  3379  }
  3380  
  3381  // passLongArgsInResponseFiles modifies cmd such that, for
  3382  // certain programs, long arguments are passed in "response files", a
  3383  // file on disk with the arguments, with one arg per line. An actual
  3384  // argument starting with '@' means that the rest of the argument is
  3385  // a filename of arguments to expand.
  3386  //
  3387  // See issues 18468 (Windows) and 37768 (Darwin).
  3388  func passLongArgsInResponseFiles(cmd *exec.Cmd) (cleanup func()) {
  3389  	cleanup = func() {} // no cleanup by default
  3390  
  3391  	var argLen int
  3392  	for _, arg := range cmd.Args {
  3393  		argLen += len(arg)
  3394  	}
  3395  
  3396  	// If we're not approaching 32KB of args, just pass args normally.
  3397  	// (use 30KB instead to be conservative; not sure how accounting is done)
  3398  	if !useResponseFile(cmd.Path, argLen) {
  3399  		return
  3400  	}
  3401  
  3402  	tf, err := os.CreateTemp("", "args")
  3403  	if err != nil {
  3404  		log.Fatalf("error writing long arguments to response file: %v", err)
  3405  	}
  3406  	cleanup = func() { os.Remove(tf.Name()) }
  3407  	var buf bytes.Buffer
  3408  	for _, arg := range cmd.Args[1:] {
  3409  		fmt.Fprintf(&buf, "%s\n", encodeArg(arg))
  3410  	}
  3411  	if _, err := tf.Write(buf.Bytes()); err != nil {
  3412  		tf.Close()
  3413  		cleanup()
  3414  		log.Fatalf("error writing long arguments to response file: %v", err)
  3415  	}
  3416  	if err := tf.Close(); err != nil {
  3417  		cleanup()
  3418  		log.Fatalf("error writing long arguments to response file: %v", err)
  3419  	}
  3420  	cmd.Args = []string{cmd.Args[0], "@" + tf.Name()}
  3421  	return cleanup
  3422  }
  3423  
  3424  func useResponseFile(path string, argLen int) bool {
  3425  	// Unless the program uses objabi.Flagparse, which understands
  3426  	// response files, don't use response files.
  3427  	// TODO: Note that other toolchains like CC are missing here for now.
  3428  	prog := strings.TrimSuffix(filepath.Base(path), ".exe")
  3429  	switch prog {
  3430  	case "compile", "link", "cgo", "asm", "cover":
  3431  	default:
  3432  		return false
  3433  	}
  3434  
  3435  	if argLen > sys.ExecArgLengthLimit {
  3436  		return true
  3437  	}
  3438  
  3439  	// On the Go build system, use response files about 10% of the
  3440  	// time, just to exercise this codepath.
  3441  	isBuilder := os.Getenv("GO_BUILDER_NAME") != ""
  3442  	if isBuilder && rand.Intn(10) == 0 {
  3443  		return true
  3444  	}
  3445  
  3446  	return false
  3447  }
  3448  
  3449  // encodeArg encodes an argument for response file writing.
  3450  func encodeArg(arg string) string {
  3451  	// If there aren't any characters we need to reencode, fastpath out.
  3452  	if !strings.ContainsAny(arg, "\\\n") {
  3453  		return arg
  3454  	}
  3455  	var b strings.Builder
  3456  	for _, r := range arg {
  3457  		switch r {
  3458  		case '\\':
  3459  			b.WriteByte('\\')
  3460  			b.WriteByte('\\')
  3461  		case '\n':
  3462  			b.WriteByte('\\')
  3463  			b.WriteByte('n')
  3464  		default:
  3465  			b.WriteRune(r)
  3466  		}
  3467  	}
  3468  	return b.String()
  3469  }
  3470  

View as plain text