-
-
Notifications
You must be signed in to change notification settings - Fork 363
Expand file tree
/
Copy pathcache_shared.go
More file actions
660 lines (582 loc) · 22.7 KB
/
Copy pathcache_shared.go
File metadata and controls
660 lines (582 loc) · 22.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
// Copyright (c) 2020, The Garble Authors.
// See LICENSE for licensing information.
package main
import (
"bytes"
"crypto/sha256"
"encoding/json"
"errors"
"fmt"
"log"
"os"
"os/exec"
"path/filepath"
"slices"
"strings"
"time"
"github.com/tinylib/msgp/msgp"
"golang.org/x/mod/module"
)
//go:generate go run scripts/gen_go_std_tables.go
// msgp generates the MessagePack marshalers in cache_shared_gen.go. -unexported
// is needed since our types are unexported; `msg:"-"` skips a field.
//go:generate go tool msgp -file=$GOFILE -o=cache_shared_gen.go -io=false -tests=false -unexported
// listedPackages is ignored as it has hand-written marshalers for its lazy index.
//msgp:ignore listedPackages
// sharedCacheType is shared as a read-only cache between the many garble toolexec
// sub-processes.
//
// Note that we fill this cache once from the root process in saveListedPackages,
// store it into a temporary file via msgp encoding, and then reuse that file
// in each of the garble toolexec sub-processes.
type sharedCacheType struct {
ForwardBuildFlags []string // build flags fed to the original "garble ..." command
CacheDir string // absolute path to the GARBLE_CACHE directory being used
// ListedPackages contains data obtained via 'go list -json -export -deps'.
// This allows us to obtain the non-obfuscated export data of all dependencies,
// useful for type checking of the packages as we obfuscate them.
ListedPackages *listedPackages
// We can't use garble's own module version, as it may not exist.
// We can't use the stamped VCS information either,
// as uncommitted changes simply show up as "dirty".
//
// The only unique way to identify garble's version without being published
// or committed is to use its content ID from the build cache.
BinaryContentID []byte
GOGARBLE string
// GoCmd is [GoEnv.GOROOT]/bin/go, so that we run exactly the same version
// of the Go tool that the original "go build" invocation did.
GoCmd string
// Filled directly from "go env".
// Keep in sync with fetchGoEnv.
GoEnv struct {
GOOS string // the GOOS build target
GOARCH string // the GOARCH build target
GOVERSION string
GOROOT string
}
}
var sharedCache *sharedCacheType
// listedPackages holds the listedPackage entries obtained via 'go list'.
//
// The root process fills it eagerly. Each toolexec sub-process only needs a few
// packages, so the serialized blob is an index of byte offsets plus concatenated
// per-package payloads, decoded lazily on first access; decode cost then scales
// with the packages a sub-process touches, not the whole graph.
//
// The payloads use msgp rather than gob: a fresh gob.Decoder compiles a decoding
// engine per call, which lazy per-entry decoding would pay once per package.
type listedPackages struct {
// entries holds decoded packages. In the root process it holds every
// package; in a sub-process it is populated lazily by get, and also holds
// any packages added dynamically via appendListedPackages.
entries map[string]*listedPackage
// index and data back the lazy decoding in sub-processes. index maps an
// import path to the byte range of its payload within data. Both are nil
// in the root process, where entries already holds everything.
index map[string]pkgRange
data []byte
}
// pkgRange locates a single package's payload within the packages data blob.
type pkgRange struct {
Offset, Length uint64
}
// listedPackagesData is the serialized index of listedPackages: each import
// path to the byte range of its payload. The concatenated payloads follow the
// index in the blob; see [listedPackages.MarshalMsg].
type listedPackagesData struct {
Index map[string]pkgRange
}
func newListedPackages() *listedPackages {
return &listedPackages{entries: make(map[string]*listedPackage)}
}
// get returns the listed package for an import path, decoding it from the
// lazy blob on first access. The boolean reports whether the package is known,
// mirroring a map lookup.
func (l *listedPackages) get(path string) (*listedPackage, bool) {
if pkg, ok := l.entries[path]; ok {
return pkg, true
}
r, ok := l.index[path]
if !ok {
return nil, false
}
pkg := new(listedPackage)
if _, err := pkg.UnmarshalMsg(l.data[r.Offset : r.Offset+r.Length]); err != nil {
panic(fmt.Sprintf("cannot decode listed package %q: %v", path, err))
}
l.entries[path] = pkg
return pkg, true
}
// has reports whether a package is known without decoding it.
func (l *listedPackages) has(path string) bool {
if _, ok := l.entries[path]; ok {
return true
}
_, ok := l.index[path]
return ok
}
// set records a package, used while filling the cache via 'go list'.
func (l *listedPackages) set(path string, pkg *listedPackage) {
l.entries[path] = pkg
}
// all decodes every package and returns the full map. It is only used by cold
// paths such as -debugdir and 'garble reverse', so forcing a full decode is fine.
func (l *listedPackages) all() map[string]*listedPackage {
for path := range l.index {
l.get(path)
}
return l.entries
}
// MarshalMsg implements msgp.Marshaler, encoding the byte-range index followed
// by the concatenated per-package payloads. The payloads are appended as a raw
// bytes value so UnmarshalMsg can alias them rather than copying.
func (l *listedPackages) MarshalMsg(b []byte) ([]byte, error) {
blob := listedPackagesData{Index: make(map[string]pkgRange, len(l.entries))}
var data []byte
for path, pkg := range l.entries {
start := len(data)
var err error
if data, err = pkg.MarshalMsg(data); err != nil {
return nil, err
}
blob.Index[path] = pkgRange{uint64(start), uint64(len(data) - start)}
}
b, err := blob.MarshalMsg(b)
if err != nil {
return nil, err
}
return msgp.AppendBytes(b, data), nil
}
// UnmarshalMsg implements msgp.Unmarshaler, loading the index and payload bytes;
// individual packages are decoded lazily by get.
func (l *listedPackages) UnmarshalMsg(b []byte) ([]byte, error) {
var blob listedPackagesData
o, err := blob.UnmarshalMsg(b)
if err != nil {
return o, err
}
l.index = blob.Index
// ReadBytesZC aliases the input rather than copying, so l.data points into
// the caller's buffer; loadSharedCache passes a fresh os.ReadFile buffer that
// lives as long as l.data. Do not pool or mutate that buffer.
l.data, o, err = msgp.ReadBytesZC(o)
if err != nil {
return o, err
}
l.entries = make(map[string]*listedPackage)
return o, nil
}
// Msgsize estimates the encoded size, used by msgp to preallocate. It need not
// be exact, as the buffer grows on demand.
func (l *listedPackages) Msgsize() int {
rangeSize := pkgRange{}.Msgsize()
s := msgp.MapHeaderSize + msgp.BytesPrefixSize
for path, pkg := range l.entries {
s += msgp.StringPrefixSize + len(path) + rangeSize + pkg.Msgsize()
}
return s
}
// sharedCacheFilename is the msgp-encoded cache file in the GARBLE_SHARED dir.
const sharedCacheFilename = "main-cache.bin"
// loadSharedCache the shared data passed from the entry garble process
func loadSharedCache() error {
if sharedCache != nil {
panic("shared cache loaded twice?")
}
startTime := time.Now()
path := filepath.Join(sharedTempDir, sharedCacheFilename)
data, err := os.ReadFile(path)
if err != nil {
return fmt.Errorf(`cannot open shared file: %v\ndid you run "go [command] -toolexec=garble" instead of "garble [command]"?`, err)
}
defer func() {
log.Printf("shared cache loaded in %s from %s", debugSince(startTime), path)
}()
sharedCache = new(sharedCacheType)
if _, err := sharedCache.UnmarshalMsg(data); err != nil {
return fmt.Errorf("cannot decode shared file: %v", err)
}
return nil
}
// saveSharedCache creates a temporary directory to share between garble processes.
// This directory also includes the msgp-encoded cache global.
func saveSharedCache() (string, error) {
if sharedCache == nil {
panic("saving a missing cache?")
}
dir, err := os.MkdirTemp("", "garble-shared")
if err != nil {
return "", err
}
data, err := sharedCache.MarshalMsg(nil)
if err != nil {
return "", err
}
if err := writeFileExclusive(filepath.Join(dir, sharedCacheFilename), data); err != nil {
return "", err
}
return dir, nil
}
func createExclusive(name string) (*os.File, error) {
return os.OpenFile(name, os.O_RDWR|os.O_CREATE|os.O_EXCL, 0o666)
}
func writeFileExclusive(name string, data []byte) error {
f, err := createExclusive(name)
if err != nil {
return err
}
_, err = f.Write(data)
if err2 := f.Close(); err == nil {
err = err2
}
return err
}
// listedPackage contains the 'go list -json -export' fields obtained by the
// root process, shared with all garble sub-processes via a file.
type listedPackage struct {
Name string
ImportPath string
ForTest string
Export string
BuildID string
ImportMap map[string]string
Standard bool
Dir string
CompiledGoFiles []string // all .go files to build
SFiles []string // all .s (asm) files to build
Imports []string
Error *packageError // to report package loading errors to the user
// The fields below are not part of 'go list', but are still reused
// between garble processes. Use "Garble" as a prefix to ensure no
// collisions with the JSON fields from 'go list'.
// allDeps is like the Deps field given by 'go list', but in the form of a map
// for the sake of fast lookups. It's also unnecessary to consume or store Deps
// as returned by 'go list', as it can be reconstructed from Imports.
// Not serialized: rebuilt lazily by hasDep.
allDeps map[string]struct{} `msg:"-"`
// GarbleActionID is a hash combining the Action ID from BuildID,
// with Garble's own inputs as per addGarbleToHash.
// It is set even when ToObfuscate is false, as it is also used for random
// seeds and build cache paths, and not just to obfuscate names.
GarbleActionID [sha256.Size]byte `json:"-"`
// ToObfuscate records whether the package should be obfuscated.
// When true, GarbleActionID must not be empty.
ToObfuscate bool `json:"-"`
}
func (p *listedPackage) hasDep(path string) bool {
if p.allDeps == nil {
p.allDeps = make(map[string]struct{}, len(p.Imports)*2)
p.addImportsFrom(p)
}
_, ok := p.allDeps[path]
return ok
}
func (p *listedPackage) addImportsFrom(from *listedPackage) {
for _, path := range from.Imports {
if path == "C" {
// `go list -json` shows "C" in Imports but not Deps.
// See https://go.dev/issue/60453.
continue
}
if path2 := from.ImportMap[path]; path2 != "" {
path = path2
}
if _, ok := p.allDeps[path]; ok {
continue // already added
}
p.allDeps[path] = struct{}{}
dep, _ := sharedCache.ListedPackages.get(path)
p.addImportsFrom(dep)
}
}
type packageError struct {
Pos string
Err string
}
// obfuscatedPackageName returns a package's obfuscated package name,
// which may be unchanged in some cases where we cannot obfuscate it.
// Note that package main is unchanged as it is treated in a special way by the toolchain.
func (p *listedPackage) obfuscatedPackageName() string {
if p.Name == "main" || !p.ToObfuscate {
return p.Name
}
// The package name itself is obfuscated like any other name.
return hashWithPackage(p, p.Name)
}
// obfuscatedSourceDir returns an obfuscated directory name which can be used
// to write obfuscated source files to. This directory name should be unique per package,
// even when building many main packages at once, such as in `go test ./...`.
func (p *listedPackage) obfuscatedSourceDir() string {
return hashWithPackage(p, p.ImportPath)
}
// obfuscatedImportPath returns a package's obfuscated import path,
// which may be unchanged in some cases where we cannot obfuscate it.
// Note that package main always has the unchanged import path "main" as part of a build,
// but not if it's a main package as part of a test, which can be imported.
func (p *listedPackage) obfuscatedImportPath() string {
if p.Name == "main" && p.ForTest == "" {
return "main"
}
if !p.ToObfuscate {
return p.ImportPath
}
// We can't obfuscate these standard library import paths,
// as the toolchain expects to recognize the packages by them:
//
// * runtime: it is special in many ways
// * reflect: its presence turns down dead code elimination
// * embed: its presence enables using //go:embed
// * others like syscall are allowed by import path to have more ABI tricks
switch p.ImportPath {
case "runtime", "reflect", "embed",
// TODO: collect directly from cmd/internal/objabi/pkgspecial.go,
// in this particular case from allowAsmABIPkgs.
"internal/runtime/syscall/linux",
"internal/runtime/syscall/windows",
"internal/runtime/startlinetest":
return p.ImportPath
}
// Intrinsics are matched by package import path as well.
if _, ok := compilerIntrinsics[p.ImportPath]; ok {
return p.ImportPath
}
// The linker forbids linknaming to certain runtime declarations
// unless a package is known to be allowed by import path string.
// The alternative would be to use -checklinkname=false, but that disables all checks entirely.
//
// TODO: we could probably remove this once we obfuscate the runtime,
// because then these runtime package and declaration names will be obfuscated too,
// so the linker will stop recognising them for the extra checks.
if _, ok := runtimeAndLinknamed[p.ImportPath]; ok {
return p.ImportPath
}
newPath := hashWithPackage(p, p.ImportPath)
log.Printf("import path %q hashed with %x to %q", p.ImportPath, p.GarbleActionID, newPath)
return newPath
}
// garbleBuildFlags are always passed to top-level build commands such as
// "go build", "go list", or "go test".
var garbleBuildFlags = []string{"-trimpath", "-buildvcs=false"}
// linknamedToList returns the runtimeAndLinknamed packages to list on the
// current GOOS, sorted for determinism. They are reached via runtime linkname
// rather than imports, so they don't show up in the dependency graph.
func linknamedToList() []string {
linknamed := make([]string, 0, len(runtimeAndLinknamed))
for path := range runtimeAndLinknamed {
switch {
case sharedCache.GoEnv.GOOS != "js" && path == "syscall/js":
// GOOS-specific package.
case sharedCache.GoEnv.GOOS != "darwin" && sharedCache.GoEnv.GOOS != "ios" && path == "crypto/x509/internal/macos":
// GOOS-specific package.
default:
linknamed = append(linknamed, path)
}
}
slices.Sort(linknamed)
return linknamed
}
// appendListedPackages gets information about the current package
// and all of its dependencies
func appendListedPackages(packages []string, mainBuild bool) error {
startTime := time.Now()
args := []string{
"list",
// Similar flags to what go/packages uses.
"-json", "-export", "-compiled", "-e",
}
if mainBuild {
// When loading the top-level packages we are building,
// we want to transitively load all their dependencies as well.
// That is not the case when loading standard library packages,
// as runtimeAndLinknamed already contains transitive dependencies.
args = append(args, "-deps")
}
args = append(args, garbleBuildFlags...)
args = append(args, sharedCache.ForwardBuildFlags...)
if !mainBuild {
// If the top-level build included the -mod or -modfile flags,
// they should be used when loading the top-level packages.
// However, when loading standard library packages,
// using those flags would likely result in an error,
// as the standard library uses its own Go module and vendoring.
args = slices.DeleteFunc(args, func(arg string) bool {
return strings.HasPrefix(arg, "-mod=") || strings.HasPrefix(arg, "-modfile=")
})
}
// `go list` cannot mix .go file arguments with package paths, so the rare
// file-argument build lists the linknamed packages separately, below.
fileMode := mainBuild && len(packages) > 0 && strings.HasSuffix(packages[0], ".go")
if mainBuild && !fileMode {
if len(packages) == 0 {
// With no arguments the build targets the current directory; make
// that explicit so the appended packages don't displace it.
packages = []string{"."}
}
// Fold in the linknamed packages so each compile subprocess finds them
// in the shared cache instead of spawning its own `go list`. `go list`
// dedups them against the deps and `-mod` flags are harmless for std.
packages = append(packages, linknamedToList()...)
}
args = append(args, packages...)
cmd := exec.Command(sharedCache.GoCmd, args...)
defer func() {
log.Printf("original build info obtained in %s via: go %s", debugSince(startTime), strings.Join(args, " "))
}()
stdout, err := cmd.StdoutPipe()
if err != nil {
return err
}
var stderr bytes.Buffer
cmd.Stderr = &stderr
if err := cmd.Start(); err != nil {
return fmt.Errorf("go list error: %v", err)
}
dec := json.NewDecoder(stdout)
var pkgErrors strings.Builder
anyToObfuscate := false
for dec.More() {
var pkg listedPackage
if err := dec.Decode(&pkg); err != nil {
return err
}
if perr := pkg.Error; perr != nil {
// Folded-in linknamed packages may fail benignly, like sync_test
// being "not in std"; ignore those, but still report errors for the
// user's own packages.
lenient := !mainBuild || runtimeAndLinknamed[pkg.ImportPath]
if lenient && strings.Contains(perr.Err, "build constraints exclude all Go files") {
// Some packages in runtimeAndLinknamed need a build tag to be importable,
// like crypto/internal/boring/fipstls with boringcrypto,
// so any pkg.Error should be ignored when the build tag isn't set.
} else if lenient && strings.Contains(perr.Err, "is not in std") {
// When we support multiple Go versions at once, some packages may only
// exist in the newer version, so we fail to list them with the older.
} else {
if pkgErrors.Len() > 0 {
pkgErrors.WriteString("\n")
}
if perr.Pos != "" {
pkgErrors.WriteString(perr.Pos)
pkgErrors.WriteString(": ")
}
// Error messages sometimes include a trailing newline.
pkgErrors.WriteString(strings.TrimRight(perr.Err, "\n"))
}
}
// Note that we use the `-e` flag above with `go list`.
// If a package fails to load, the Incomplete and Error fields will be set.
// We still record failed packages in the ListedPackages map,
// because some like crypto/internal/boring/fipstls simply fall under
// "build constraints exclude all Go files" and can be ignored.
// Real build errors will still be surfaced by `go build -toolexec` later.
if sharedCache.ListedPackages.has(pkg.ImportPath) {
return fmt.Errorf("duplicate package: %q", pkg.ImportPath)
}
if pkg.BuildID != "" {
actionID := decodeBuildIDHash(splitActionID(pkg.BuildID))
pkg.GarbleActionID = addGarbleToHash(actionID)
}
// Decide ToObfuscate as we read each package, to avoid a second pass
// that would force a full decode of the lazy map in sub-processes.
// If "GOGARBLE=foo/bar", "foo/bar_test" should also match.
path := pkg.ImportPath
if pkg.ForTest != "" {
path = pkg.ForTest
}
switch {
// We do not support obfuscating the runtime nor its dependencies.
case runtimeAndDeps[path],
// "unknown pc" crashes on windows in the cgo test otherwise.
path == "runtime/cgo",
// Obfuscating any of the fips140 packages breaks builds,
// not just because their import paths get special treatment,
// but also because they have special vars like "RODATA"
// and forbid relocations caused by literal obfuscation.
path == "crypto/internal/fips140", strings.HasPrefix(path, "crypto/internal/fips140/"):
// No point in obfuscating empty packages, like OS-specific ones that don't match.
case len(pkg.CompiledGoFiles) == 0:
// Test main packages like "foo/bar.test" are always obfuscated,
// just like unnamed and plugin main packages.
case pkg.Name == "main" && strings.HasSuffix(path, ".test"),
path == "command-line-arguments",
strings.HasPrefix(path, "plugin/unnamed"),
module.MatchPrefixPatterns(sharedCache.GOGARBLE, path):
pkg.ToObfuscate = true
anyToObfuscate = true
if len(pkg.GarbleActionID) == 0 {
return fmt.Errorf("package %q to be obfuscated lacks build id?", pkg.ImportPath)
}
}
sharedCache.ListedPackages.set(pkg.ImportPath, &pkg)
}
if err := cmd.Wait(); err != nil {
return fmt.Errorf("go list error: %v:\nargs: %q\n%s", err, args, stderr.Bytes())
}
if pkgErrors.Len() > 0 {
return errors.New(pkgErrors.String())
}
// Only the top-level build must match packages to obfuscate; the later
// runtime-linknamed std fill need not.
// Don't error if the user ran: GOGARBLE='*' garble build runtime
if mainBuild && !anyToObfuscate && !module.MatchPrefixPatterns(sharedCache.GOGARBLE, "runtime") {
return fmt.Errorf("GOGARBLE=%q does not match any packages to be built", sharedCache.GOGARBLE)
}
if fileMode {
// The fold above couldn't run, so list the still-missing linknamed
// packages here in the parent for the compile subprocesses to reuse.
missing := slices.DeleteFunc(linknamedToList(), sharedCache.ListedPackages.has)
if len(missing) > 0 {
if err := appendListedPackages(missing, false); err != nil {
return fmt.Errorf("failed to load missing runtime-linknamed packages: %v", err)
}
}
}
return nil
}
var ErrNotFound = errors.New("not found")
var ErrNotDependency = errors.New("not a dependency")
// listPackage gets the listedPackage information for a certain package
func listPackage(from *listedPackage, path string) (*listedPackage, error) {
if path == from.ImportPath {
return from, nil
}
// If the path is listed in the top-level ImportMap, use its mapping instead.
// This is a common scenario when dealing with vendored packages in GOROOT.
// The map is flat, so we don't need to recurse.
if path2 := from.ImportMap[path]; path2 != "" {
path = path2
}
pkg, ok := sharedCache.ListedPackages.get(path)
// A std package may list any other package in std, even those it doesn't depend on.
// This is due to how runtime linkname-implements std packages,
// such as sync/atomic or reflect, without importing them in any way.
// A few other cases don't involve runtime, like time/tzdata linknaming to time,
// but luckily those few cases are covered by runtimeAndLinknamed as well,
// which appendListedPackages folds into the top-level `go list`.
if from.Standard {
if ok {
return pkg, nil
}
return nil, fmt.Errorf("std listed another std package that we can't find: %s", path)
}
if !ok {
return nil, fmt.Errorf("list %s: %w", path, ErrNotFound)
}
// Packages outside std can list any package,
// as long as they depend on it directly or indirectly.
if from.hasDep(pkg.ImportPath) {
return pkg, nil
}
// As a special case, any package can list runtime or its dependencies,
// since those are always an implicit dependency.
// We need to handle this ourselves as runtime does not appear in Deps.
// TODO: it might be faster to bring back a "runtimeAndDeps" map or func.
if pkg.ImportPath == "runtime" {
return pkg, nil
}
if runtimePkg, _ := sharedCache.ListedPackages.get("runtime"); runtimePkg.hasDep(pkg.ImportPath) {
return pkg, nil
}
return nil, fmt.Errorf("list %s: %w", path, ErrNotDependency)
}