-
Notifications
You must be signed in to change notification settings - Fork 281
/
main.go
913 lines (821 loc) · 27.1 KB
/
main.go
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
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
// Copyright 2015 go-fuzz project authors. All rights reserved.
// Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file.
package main
import (
"archive/zip"
"bytes"
"encoding/json"
"flag"
"fmt"
"go/ast"
"go/parser"
"go/token"
"go/types"
"io"
"io/ioutil"
"os"
"os/exec"
"path/filepath"
"runtime"
"runtime/pprof"
"strings"
"text/template"
"unicode"
"unicode/utf8"
"golang.org/x/tools/go/packages"
. "github.com/dvyukov/go-fuzz/internal/go-fuzz-types"
)
var (
flagTag = flag.String("tags", "", "a space-separated list of build tags to consider satisfied during the build")
flagOut = flag.String("o", "", "output file")
flagFunc = flag.String("func", "", "preferred entry function")
flagWork = flag.Bool("work", false, "don't remove working directory")
flagRace = flag.Bool("race", false, "enable race detector")
flagCPU = flag.Bool("cpuprofile", false, "generate cpu profile in cpu.pprof")
flagLibFuzzer = flag.Bool("libfuzzer", false, "output static archive for use with libFuzzer")
flagBuildX = flag.Bool("x", false, "print the commands if build fails")
flagPreserve = flag.String("preserve", "", "a comma-separated list of import paths not to instrument")
flagGoCmd = flag.String("go", "go", `path to "go" command`)
)
func makeTags() string {
tags := "gofuzz"
if *flagLibFuzzer {
tags += " gofuzz_libfuzzer"
}
if *flagRace {
tags += " race"
}
if len(*flagTag) > 0 {
tags += " " + *flagTag
}
return tags
}
// basePackagesConfig returns a base golang.org/x/tools/go/packages.Config
// that clients can then modify and use for calls to go/packages.
func basePackagesConfig() *packages.Config {
cfg := new(packages.Config)
// Note that we do not set GO111MODULE here in order to respect any GO111MODULE
// setting by the user as we are finding dependencies. Note, however, that
// we are still setting up a GOPATH to build, so we later will force
// GO111MODULE to be off when building so that we are in GOPATH mode.
// If the user has not set GO111MODULE, the meaning here is
// left up to cmd/go (defaulting to 'auto' in Go 1.11-1.13,
// but likely defaulting to 'on' at some point during Go 1.14
// development cycle).
// Also note that we are leaving the overall cfg structure
// in place to support future experimentation, etc.
cfg.Env = os.Environ()
return cfg
}
// checkModVendor reports if the GOFLAGS env variable
// contains -mod=vendor, which enables vendoring for modules.
func checkModVendor() bool {
val := os.Getenv("GOFLAGS")
for _, s := range strings.Split(val, " ") {
if s == "-mod=vendor" {
return true
}
}
return false
}
// main copies the package with all dependent packages into a temp dir,
// instruments Go source files there, and builds setting GOROOT to the temp dir.
func main() {
flag.Parse()
c := new(Context)
if flag.NArg() > 1 {
c.failf("usage: go-fuzz-build [pkg]")
}
pkg := "."
if flag.NArg() == 1 {
pkg = flag.Arg(0)
}
if *flagFunc != "" && !isFuzzFuncName(*flagFunc) {
c.failf("provided -func=%v, but %v is not a fuzz function name", *flagFunc, *flagFunc)
}
if *flagLibFuzzer && *flagRace {
c.failf("-race and -libfuzzer are incompatible")
}
if checkModVendor() {
// We don't support -mod=vendor with modules.
// Part of the issue is go-fuzz-dep and go-fuzz-defs
// won't be in the user's vendor directory.
c.failf("GOFLAGS with -mod=vendor is not supported")
}
c.startProfiling() // start pprof as requested
c.loadPkg(pkg) // load and typecheck pkg
c.getEnv() // discover GOROOT, GOPATH
c.loadStd() // load standard library
c.calcIgnore() // calculate set of packages to ignore
c.makeWorkdir() // create workdir
defer c.cleanup() // delete workdir as needed, etc.
c.populateWorkdir() // copy tools and packages to workdir as needed
if *flagOut == "" {
ext := ".zip"
if *flagLibFuzzer {
ext = ".a"
}
*flagOut = c.pkgs[0].Name + "-fuzz" + ext
}
// Gather literals, instrument, and compile.
// Order matters here!
// buildInstrumentedBinary (and instrumentPackages) modify the AST.
// (We don't want to re-parse and re-typecheck every time, for performance.)
// So we gather literals first, while the AST is pristine.
// Then we add coverage and build.
// Then we add sonar and build.
// TODO: migrate to use cmd/internal/edit instead of AST modification.
// This has several benefits: (1) It is easier to work with.
// (2) 'go cover' has switched to it; we would get the benefit of
// upstream bug fixes, of which there has been at least one (around gotos and labels).
// (3) It leaves the AST intact, so we are less order-sensitive.
// The primary blocker is that we want good line numbers for when we find crashers.
// go/printer handles this automatically using Mode printer.SourcePos.
// We'd need to implement that support ourselves. (It's do-able but non-trivial.)
// See also https://golang.org/issue/29824.
lits := c.gatherLiterals()
var blocks, sonar []CoverBlock
if *flagLibFuzzer {
archive := c.buildInstrumentedBinary(&blocks, nil)
c.moveFile(archive, *flagOut)
return
}
coverBin := c.buildInstrumentedBinary(&blocks, nil)
sonarBin := c.buildInstrumentedBinary(nil, &sonar)
metaData := c.createMeta(lits, blocks, sonar)
defer func() {
os.Remove(coverBin)
os.Remove(sonarBin)
os.Remove(metaData)
}()
outf, err := os.Create(*flagOut)
if err != nil {
c.failf("failed to create output file: %v", err)
}
zipw := zip.NewWriter(outf)
zipFile := func(name, datafile string) {
w, err := zipw.Create(name)
if err != nil {
c.failf("failed to create zip file: %v", err)
}
f, err := os.Open(datafile)
if err != nil {
c.failf("failed to open data file %v", datafile)
}
if _, err := io.Copy(w, f); err != nil {
c.failf("failed to write %v to zip file: %v", datafile, err)
}
// best effort: close and remove our temp file
f.Close()
os.Remove(datafile)
}
zipFile("cover.exe", coverBin)
zipFile("sonar.exe", sonarBin)
zipFile("metadata", metaData)
if err := zipw.Close(); err != nil {
c.failf("failed to close zip file: %v", err)
}
if err := outf.Close(); err != nil {
c.failf("failed to close out file: %v", err)
}
}
// Context holds state for a go-fuzz-build run.
type Context struct {
fuzzpkg *packages.Package // package containing Fuzz function
pkgs []*packages.Package // typechecked root packages
std map[string]bool // set of packages in the standard library
ignore map[string]bool // set of packages to ignore during instrumentation
allFuncs []string // all fuzz functions found in package
workdir string
GOROOT string
GOPATH string
cpuprofile *os.File
cmdGoHasTrimPath bool // does the active version of cmd/go have the -trimpath flag?
}
// getEnv determines GOROOT and GOPATH and updates c accordingly.
func (c *Context) getEnv() {
env := map[string]string{
"GOROOT": "",
"GOPATH": "",
}
for k := range env {
v := os.Getenv(k)
if v != "" {
env[k] = v
continue
}
// TODO: make a single call ("go env GOROOT GOPATH") instead
out, err := exec.Command(*flagGoCmd, "env", k).CombinedOutput()
if err != nil || len(out) == 0 {
c.failf("%s is not set and failed to locate it: 'go env %s' returned '%s' (%v)", k, k, out, err)
}
env[k] = strings.TrimSpace(string(out))
}
c.GOROOT = env["GOROOT"]
c.GOPATH = env["GOPATH"]
out, err := exec.Command(*flagGoCmd, "list", "-f", "'{{context.ReleaseTags}}'", "runtime").CombinedOutput()
if err != nil || len(out) == 0 {
c.failf("go list -f '{{context.ReleaseTags}}' runtime returned '%s' (%v)", out, err)
}
c.cmdGoHasTrimPath = bytes.Contains(out, []byte("go1.13"))
}
// startProfiling starts pprof profiling, if requested.
func (c *Context) startProfiling() {
if !*flagCPU {
return
}
var err error
c.cpuprofile, err = os.Create("cpu.pprof")
if err != nil {
c.failf("could not create cpu profile: %v", err)
}
pprof.StartCPUProfile(c.cpuprofile)
}
// loadPkg loads, parses, and typechecks pkg (the package containing the Fuzz function),
// go-fuzz-dep, and their dependencies.
func (c *Context) loadPkg(pkg string) {
// Resolve pkg.
// See https://golang.org/issue/30826 and https://golang.org/issue/30828.
rescfg := basePackagesConfig()
rescfg.Mode = packages.NeedName
rescfg.BuildFlags = []string{"-tags", makeTags()}
respkgs, err := packages.Load(rescfg, pkg)
if err != nil {
c.failf("could not resolve package %q: %v", pkg, err)
}
if len(respkgs) != 1 {
paths := make([]string, len(respkgs))
for i, p := range respkgs {
paths[i] = p.PkgPath
}
c.failf("cannot build multiple packages, but %q resolved to: %v", pkg, strings.Join(paths, ", "))
}
if respkgs[0].Name == "main" {
c.failf("cannot fuzz package main")
}
pkgpath := respkgs[0].PkgPath
// Load, parse, and type-check all packages.
// We'll use the type information later.
// This also provides better error messages in the case
// of invalid code than trying to compile instrumented code.
cfg := basePackagesConfig()
cfg.Mode = packages.LoadAllSyntax | packages.NeedEmbedFiles | packages.NeedModule
cfg.BuildFlags = []string{"-tags", makeTags()}
// use custom ParseFile in order to get comments
cfg.ParseFile = func(fset *token.FileSet, filename string, src []byte) (*ast.File, error) {
return parser.ParseFile(fset, filename, src, parser.ParseComments)
}
// We need to load:
// * the target package, obviously
// * go-fuzz-dep, since we use it for instrumentation
// * reflect, if we are using libfuzzer, since its generated main function requires it
loadpkgs := []string{pkg, "github.com/dvyukov/go-fuzz/go-fuzz-dep"}
if *flagLibFuzzer {
loadpkgs = append(loadpkgs, "reflect")
}
initial, err := packages.Load(cfg, loadpkgs...)
if err != nil {
c.failf("could not load packages: %v", err)
}
// Stop if any package had errors.
if packages.PrintErrors(initial) > 0 {
c.failf("typechecking of %v failed", pkg)
}
c.pkgs = initial
// Find the fuzz package among c.pkgs.
for _, p := range initial {
if p.PkgPath == pkgpath {
c.fuzzpkg = p
break
}
}
if c.fuzzpkg == nil {
c.failf("internal error: failed to find fuzz package; please file an issue")
}
// Find all fuzz functions in fuzzpkg.
foundFlagFunc := false
s := c.fuzzpkg.Types.Scope()
for _, n := range s.Names() {
if !isFuzzFuncName(n) {
continue
}
// Check that n is a function with an appropriate signature.
typ := s.Lookup(n).Type()
sig, ok := typ.(*types.Signature)
if !ok || sig.Variadic() || !isFuzzSig(sig) {
if n == *flagFunc {
c.failf("provided -func=%v, but %v is not a fuzz function", *flagFunc, *flagFunc)
}
continue
}
// n is a fuzz function.
c.allFuncs = append(c.allFuncs, n)
foundFlagFunc = foundFlagFunc || n == *flagFunc
}
if len(c.allFuncs) == 0 {
c.failf("could not find any fuzz functions in %v", c.fuzzpkg.PkgPath)
}
if len(c.allFuncs) > 255 {
c.failf("go-fuzz-build supports a maximum of 255 fuzz functions, found %v; please file an issue", len(c.allFuncs))
}
if *flagFunc != "" {
// Specific fuzz function requested.
// If the requested function doesn't exist, fail.
if !foundFlagFunc {
c.failf("could not find fuzz function %v in %v", *flagFunc, c.fuzzpkg.PkgPath)
}
} else {
// No specific fuzz function requested.
// If there's only one fuzz function, mark it as preferred.
// If there's more than one...
// ...for go-fuzz, that's fine; one can be specified later on the command line.
// ...for libfuzzer, that's not fine, as there is no way to specify one later.
if len(c.allFuncs) == 1 {
*flagFunc = c.allFuncs[0]
} else if *flagLibFuzzer {
c.failf("must specify a fuzz function with -libfuzzer, found: %v", strings.Join(c.allFuncs, ", "))
}
}
}
// isFuzzSig reports whether sig is of the form
//
// func FuzzFunc(data []byte) int
func isFuzzSig(sig *types.Signature) bool {
return tupleHasTypes(sig.Params(), "[]byte") && tupleHasTypes(sig.Results(), "int")
}
// tupleHasTypes reports whether tuple is composed of
// elements with exactly the types in types.
func tupleHasTypes(tuple *types.Tuple, types ...string) bool {
if tuple.Len() != len(types) {
return false
}
for i, t := range types {
if tuple.At(i).Type().String() != t {
return false
}
}
return true
}
func isFuzzFuncName(name string) bool {
return isTest(name, "Fuzz")
}
// isTest is copied verbatim, along with its name,
// from GOROOT/src/cmd/go/internal/load/test.go.
// isTest tells whether name looks like a test (or benchmark, according to prefix).
// It is a Test (say) if there is a character after Test that is not a lower-case letter.
// We don't want TesticularCancer.
func isTest(name, prefix string) bool {
if !strings.HasPrefix(name, prefix) {
return false
}
if len(name) == len(prefix) { // "Test" is ok
return true
}
rune, _ := utf8.DecodeRuneInString(name[len(prefix):])
return !unicode.IsLower(rune)
}
// loadStd finds the set of standard library package paths.
func (c *Context) loadStd() {
// Find out what packages are in the standard library.
cfg := basePackagesConfig()
cfg.Mode = packages.NeedName
stdpkgs, err := packages.Load(cfg, "std")
if err != nil {
c.failf("could not load standard library: %v", err)
}
c.std = make(map[string]bool, len(stdpkgs))
for _, p := range stdpkgs {
c.std[p.PkgPath] = true
}
}
// makeWorkdir creates the workdir, logging as requested.
func (c *Context) makeWorkdir() {
// TODO: make workdir stable, so that we can use cmd/go's build cache?
// See https://github.com/golang/go/issues/29430.
var err error
c.workdir, err = ioutil.TempDir("", "go-fuzz-build")
if err != nil {
c.failf("failed to create temp dir: %v", err)
}
if *flagWork {
fmt.Printf("workdir: %v\n", c.workdir)
}
}
// cleanup ensures a clean exit. It should be called on all (controllable) exit paths.
func (c *Context) cleanup() {
if !*flagWork && c.workdir != "" {
os.RemoveAll(c.workdir)
}
if c.cpuprofile != nil {
pprof.StopCPUProfile()
c.cpuprofile.Close()
}
}
// populateWorkdir prepares workdir for builds.
func (c *Context) populateWorkdir() {
// TODO: instead of reconstructing the world,
// can we use a bunch of replace directives in a go.mod?
// TODO: make all this I/O concurrent (up to a limit).
// It's a non-trivial part of build time.
// Question: Do it here or in copyDir?
// TODO: See if we can avoid making toolchain copies,
// using some combination of env vars and toolexec.
if *flagLibFuzzer || *flagRace {
c.copyDir(filepath.Join(c.GOROOT, "src", "runtime", "cgo"), filepath.Join(c.workdir, "goroot", "src", "runtime", "cgo"))
}
if *flagRace {
c.copyDir(filepath.Join(c.GOROOT, "src", "runtime", "race"), filepath.Join(c.workdir, "goroot", "src", "runtime", "race"))
c.copyDir(filepath.Join(c.GOROOT, "src", "sync", "atomic"), filepath.Join(c.workdir, "goroot", "src", "sync", "atomic"))
}
c.copyDir(filepath.Join(c.GOROOT, "pkg", "tool"), filepath.Join(c.workdir, "goroot", "pkg", "tool"))
if _, err := os.Stat(filepath.Join(c.GOROOT, "pkg", "include")); err == nil {
c.copyDir(filepath.Join(c.GOROOT, "pkg", "include"), filepath.Join(c.workdir, "goroot", "pkg", "include"))
} else {
// Cross-compilation is not implemented.
c.copyDir(filepath.Join(c.GOROOT, "pkg", runtime.GOOS+"_"+runtime.GOARCH), filepath.Join(c.workdir, "goroot", "pkg", runtime.GOOS+"_"+runtime.GOARCH))
}
for _, h := range []string{"abi_amd64.h", "abi_arm64.h"} {
if _, err := os.Stat(filepath.Join(c.GOROOT, "src", "runtime", "cgo", h)); err == nil {
c.mkdirAll(filepath.Join(c.workdir, "goroot", "src", "runtime", "cgo"))
c.copyFile(filepath.Join(c.GOROOT, "src", "runtime", "cgo", h), filepath.Join(c.workdir, "goroot", "src", "runtime", "cgo", h))
}
}
// Clone our package, go-fuzz-deps, and all dependencies.
// TODO: we might not need to do this for all packages.
// We know that we'll be writing out instrumented Go code later;
// we could instead just os.MkdirAll and copy non-Go files here.
// We'd still need to do a full package clone for packages that
// we aren't instrumenting (c.ignore).
packages.Visit(c.pkgs, nil, func(p *packages.Package) {
c.clonePackage(p)
})
c.copyFuzzDep()
}
func (c *Context) createMeta(lits map[Literal]struct{}, blocks []CoverBlock, sonar []CoverBlock) string {
meta := MetaData{Blocks: blocks, Sonar: sonar, Funcs: c.allFuncs, DefaultFunc: *flagFunc}
for k := range lits {
meta.Literals = append(meta.Literals, k)
}
data, err := json.Marshal(meta)
if err != nil {
c.failf("failed to serialize meta information: %v", err)
}
f := c.tempFile()
c.writeFile(f, data)
return f
}
func (c *Context) buildInstrumentedBinary(blocks *[]CoverBlock, sonar *[]CoverBlock) string {
c.instrumentPackages(blocks, sonar)
mainPkg := c.createFuzzMain()
outf := c.tempFile()
args := []string{"build", "-tags", makeTags()}
if *flagBuildX {
args = append(args, "-x")
if *flagWork {
args = append(args, "-work")
}
}
if *flagRace {
args = append(args, "-race")
}
if *flagLibFuzzer {
args = append(args, "-buildmode=c-archive")
}
if c.cmdGoHasTrimPath {
args = append(args, "-trimpath")
}
args = append(args, "-o", outf, mainPkg)
cmd := exec.Command(*flagGoCmd, args...)
// We are constructing a GOPATH environment, so while building
// we force GOPATH mode here via GO111MODULE=off.
cmd.Env = append(os.Environ(),
"GOROOT="+filepath.Join(c.workdir, "goroot"),
"GOPATH="+filepath.Join(c.workdir, "gopath"),
"GO111MODULE=off",
)
if out, err := cmd.CombinedOutput(); err != nil {
c.failf("failed to execute go build: %v\n%v", err, string(out))
}
return outf
}
func (c *Context) calcIgnore() {
// No reason to instrument these.
c.ignore = map[string]bool{
"runtime/cgo": true,
"runtime/pprof": true,
"runtime/race": true,
}
// Roots: must not instrument these, nor any of their dependencies, to avoid import cycles.
// Fortunately, these are mostly packages that are non-deterministic,
// noisy (because they are low level), and/or not interesting.
// We could manually maintain this list, but that makes go-fuzz-build
// fragile in the face of internal standard library package changes.
roots := c.packagesNamed("runtime", "github.com/dvyukov/go-fuzz/go-fuzz-dep")
packages.Visit(roots, func(p *packages.Package) bool {
c.ignore[p.PkgPath] = true
return true
}, nil)
// Ignore any packages requested explicitly by the user.
paths := strings.Split(*flagPreserve, ",")
for _, path := range paths {
c.ignore[path] = true
}
}
func (c *Context) gatherLiterals() map[Literal]struct{} {
nolits := map[string]bool{
"math": true,
"os": true,
"unicode": true,
}
lits := make(map[Literal]struct{})
visit := func(pkg *packages.Package) {
if c.ignore[pkg.PkgPath] || nolits[pkg.PkgPath] {
return
}
for _, f := range pkg.Syntax {
ast.Walk(&LiteralCollector{lits: lits, ctxt: c}, f)
}
}
packages.Visit(c.pkgs, nil, visit)
return lits
}
func (c *Context) copyFuzzDep() {
// Standard library packages can't depend on non-standard ones.
// So we pretend that go-fuzz-dep is a standard one.
// go-fuzz-dep depends on go-fuzz-defs, which creates a problem.
// Fortunately (and intentionally), go-fuzz-defs contains only constants,
// which can be duplicated safely.
// So we eliminate the import statement and copy go-fuzz-defs/defs.go
// directly into the go-fuzz-dep package.
newDir := filepath.Join(c.workdir, "goroot", "src", "go-fuzz-dep")
c.mkdirAll(newDir)
dep := c.packageNamed("github.com/dvyukov/go-fuzz/go-fuzz-dep")
for _, f := range dep.GoFiles {
data := c.readFile(f)
// Eliminate the dot import.
data = bytes.Replace(data, []byte(`. "github.com/dvyukov/go-fuzz/go-fuzz-defs"`), nil, -1)
c.writeFile(filepath.Join(newDir, filepath.Base(f)), data)
}
defs := c.packageNamed("github.com/dvyukov/go-fuzz/go-fuzz-defs")
for _, f := range defs.GoFiles {
data := c.readFile(f)
// Adjust package name to match go-fuzz-deps.
data = bytes.Replace(data, []byte("\npackage base"), []byte("\npackage gofuzzdep"), -1)
c.writeFile(filepath.Join(newDir, "defs.go"), data)
}
}
func (c *Context) funcMain() []byte {
t := mainSrc
if *flagLibFuzzer {
t = mainSrcLibFuzzer
}
dot := map[string]interface{}{"Pkg": c.fuzzpkg.PkgPath, "AllFuncs": c.allFuncs, "DefaultFunc": *flagFunc}
buf := new(bytes.Buffer)
if err := t.Execute(buf, dot); err != nil {
c.failf("could not execute template: %v", err)
}
return buf.Bytes()
}
func (c *Context) createFuzzMain() string {
mainPkg := filepath.Join(c.fuzzpkg.PkgPath, "go.fuzz.main")
path := filepath.Join(c.workdir, "gopath", "src", mainPkg)
c.mkdirAll(path)
c.writeFile(filepath.Join(path, "main.go"), c.funcMain())
return mainPkg
}
func (c *Context) clonePackage(p *packages.Package) {
root := "goroot"
if !c.std[p.PkgPath] {
root = "gopath"
}
newDir := filepath.Join(c.workdir, root, "src", p.PkgPath)
c.mkdirAll(newDir)
if p.PkgPath == "unsafe" {
// Write a dummy file. go/packages explicitly returns an empty GoFiles for it,
// for reasons that are unclear, but cmd/go wants there to be a Go file in the package.
c.writeFile(filepath.Join(newDir, "unsafe.go"), []byte(`package unsafe`))
return
}
// Copy all the source code.
// Use GoFiles instead of CompiledGoFiles here.
// If we use CompiledGoFiles, we end up with code that cmd/go won't compile.
// See https://golang.org/issue/30479 and Context.instrumentPackages.
for _, f := range p.GoFiles {
dst := filepath.Join(newDir, filepath.Base(f))
c.copyFile(f, dst)
}
for _, f := range p.OtherFiles {
dst := filepath.Join(newDir, filepath.Base(f))
c.copyFile(f, dst)
}
var pkgRoot string
if p.Module != nil {
pkgRel, err := filepath.Rel(p.Module.Path, p.PkgPath)
if err != nil {
c.failf("clonePackage: filepath.Rel(%q, %q): %v\n", p.Module.Path, p.PkgPath, err)
}
pkgRoot = filepath.Join(p.Module.Dir, pkgRel)
}
for _, f := range p.EmbedFiles {
dst := filepath.Join(newDir, filepath.Base(f))
if pkgRoot != "" {
relPath, err := filepath.Rel(pkgRoot, f)
if err != nil {
c.failf("clonePackage: filepath.Rel(%q, %q): %v\n", pkgRoot, f, err)
}
dst = filepath.Join(newDir, relPath)
}
err := os.MkdirAll(filepath.Dir(dst), 0o700)
if err != nil {
c.failf("clonePackage: MkdirAll %q: %v\n", filepath.Dir(dst), err)
}
c.copyFile(f, dst)
}
// TODO: do we need to look for and copy go.mod?
}
// packageNamed extracts the package listed in path.
func (c *Context) packageNamed(path string) (pkgs *packages.Package) {
all := c.packagesNamed(path)
if len(all) != 1 {
c.failf("got multiple packages, requested only %v", path)
}
return all[0]
}
// packagesNamed extracts the packages listed in paths.
func (c *Context) packagesNamed(paths ...string) (pkgs []*packages.Package) {
pre := func(p *packages.Package) bool {
for _, path := range paths {
if p.PkgPath == path {
pkgs = append(pkgs, p)
break
}
}
return len(pkgs) < len(paths) // continue only if we have not succeeded yet
}
packages.Visit(c.pkgs, pre, nil)
return pkgs
}
func (c *Context) instrumentPackages(blocks *[]CoverBlock, sonar *[]CoverBlock) {
visit := func(pkg *packages.Package) {
if c.ignore[pkg.PkgPath] {
return
}
root := "goroot"
if !c.std[pkg.PkgPath] {
root = "gopath"
}
path := filepath.Join(c.workdir, root, "src", pkg.PkgPath) // TODO: need filepath.FromSlash for pkg.PkgPath?
for i, fullName := range pkg.CompiledGoFiles {
fname := filepath.Base(fullName)
if !strings.HasSuffix(fname, ".go") {
// This is a cgo-generated file.
// Instrumenting it currently does not work.
// We copied the original Go file as part of copyPackageRewrite,
// so we can just skip this one.
// See https://golang.org/issue/30479.
continue
}
f := pkg.Syntax[i]
// TODO: rename trimComments?
f.Comments = trimComments(f, pkg.Fset)
buf := new(bytes.Buffer)
content := c.readFile(fullName)
buf.Write(initialComments(content)) // Retain '// +build' directives.
instrument(pkg.PkgPath, fullName, pkg.Fset, f, pkg.TypesInfo, buf, blocks, sonar)
tmp := c.tempFile()
c.writeFile(tmp, buf.Bytes())
outpath := filepath.Join(path, fname)
if runtime.GOOS == "windows" {
os.Remove(outpath)
}
c.moveFile(tmp, outpath)
}
}
packages.Visit(c.pkgs, nil, visit)
}
func (c *Context) copyDir(dir, newDir string) {
files, err := ioutil.ReadDir(dir)
if err != nil {
c.failf("failed to scan dir '%v': %v", dir, err)
}
c.mkdirAll(newDir)
for _, f := range files {
src := filepath.Join(dir, f.Name())
dst := filepath.Join(newDir, f.Name())
if f.IsDir() {
c.copyDir(src, dst)
} else {
c.copyFile(src, dst)
}
}
}
func (c *Context) copyFile(src, dst string) {
r, err := os.Open(src)
if err != nil {
c.failf("copyFile: could not read %v: %v", src, err)
}
w, err := os.OpenFile(dst, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0o700)
if err != nil {
c.failf("copyFile: could not write %v: %v", dst, err)
}
if _, err := io.Copy(w, r); err != nil {
c.failf("copyFile: copying failed: %v", err)
}
if err := r.Close(); err != nil {
c.failf("copyFile: closing %v failed: %v", src, err)
}
if err := w.Close(); err != nil {
c.failf("copyFile: closing %v failed: %v", dst, err)
}
}
func (c *Context) moveFile(src, dst string) {
c.copyFile(src, dst)
err := os.Remove(src)
if err != nil {
c.failf("moveFile: removing %q failed: %v", src, err)
}
}
func (c *Context) failf(str string, args ...interface{}) {
c.cleanup()
fmt.Fprintf(os.Stderr, str+"\n", args...)
os.Exit(1)
}
// tempFile creates and deletes a temp file, and returns its path.
// This is helpful when you need a temp path for an output file
// that will be created by an external tool (go build) or by a call to writeFile.
func (c *Context) tempFile() string {
outf, err := ioutil.TempFile("", "go-fuzz")
if err != nil {
c.failf("failed to create temp file: %v", err)
}
outf.Close()
os.Remove(outf.Name()) // necessary on Windows
return outf.Name()
}
func (c *Context) readFile(name string) []byte {
data, err := ioutil.ReadFile(name)
if err != nil {
c.failf("failed to read temp file: %v", err)
}
return data
}
func (c *Context) writeFile(name string, data []byte) {
if err := ioutil.WriteFile(name, data, 0o700); err != nil {
c.failf("failed to write temp file: %v", err)
}
}
func (c *Context) mkdirAll(dir string) {
if err := os.MkdirAll(dir, 0o700); err != nil {
c.failf("failed to create temp dir: %v", err)
}
}
var mainSrc = template.Must(template.New("main").Parse(`
package main
import (
target "{{.Pkg}}"
dep "go-fuzz-dep"
)
func main() {
fns := []func([]byte)int {
{{range .AllFuncs}}
target.{{.}},
{{end}}
}
dep.Main(fns)
}
`))
var mainSrcLibFuzzer = template.Must(template.New("main").Parse(`
package main
import (
"unsafe"
"reflect"
target "{{.Pkg}}"
dep "go-fuzz-dep"
)
// #cgo CFLAGS: -Wall -Werror
// #ifdef __linux__
// __attribute__((weak, section("__libfuzzer_extra_counters")))
// #else
// #error Currently only Linux is supported
// #endif
// unsigned char GoFuzzCoverageCounters[65536];
import "C"
//export LLVMFuzzerInitialize
func LLVMFuzzerInitialize(argc uintptr, argv uintptr) int {
dep.Initialize(unsafe.Pointer(&C.GoFuzzCoverageCounters[0]), 65536)
return 0
}
//export LLVMFuzzerTestOneInput
func LLVMFuzzerTestOneInput(data uintptr, size uint64) int {
sh := &reflect.SliceHeader{
Data: data,
Len: int(size),
Cap: int(size),
}
input := *(*[]byte)(unsafe.Pointer(sh))
target.{{.DefaultFunc}}(input)
return 0
}
func main() {
}
`))