mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-06 13:37:36 +03:00
internal/fuzz: set timeout for each exec of fuzz target
This change sets a timeout of 10 seconds on each execution of the fuzz target, both during fuzzing and during minimization. This is not currently customizable by the user, but issue #48157 tracks this work. Deadlocks will be considered non-recoverable errors, and as such, will not be minimizable. Fixes #48591 Change-Id: Ic86e8e9e9a0255e7860f7cbf5654e832785d1cbc Reviewed-on: https://go-review.googlesource.com/c/go/+/363134 Trust: Katie Hockman <katie@golang.org> Run-TryBot: Katie Hockman <katie@golang.org> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Bryan C. Mills <bcmills@google.com>
This commit is contained in:
parent
197cfb4915
commit
6404b91b83
3 changed files with 31 additions and 17 deletions
|
@ -13,6 +13,7 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"reflect"
|
"reflect"
|
||||||
"testing"
|
"testing"
|
||||||
|
"time"
|
||||||
"unicode"
|
"unicode"
|
||||||
"unicode/utf8"
|
"unicode/utf8"
|
||||||
)
|
)
|
||||||
|
@ -279,7 +280,9 @@ func TestMinimizeInput(t *testing.T) {
|
||||||
t.Run(tc.name, func(t *testing.T) {
|
t.Run(tc.name, func(t *testing.T) {
|
||||||
t.Parallel()
|
t.Parallel()
|
||||||
ws := &workerServer{
|
ws := &workerServer{
|
||||||
fuzzFn: tc.fn,
|
fuzzFn: func(e CorpusEntry) (time.Duration, error) {
|
||||||
|
return time.Second, tc.fn(e)
|
||||||
|
},
|
||||||
}
|
}
|
||||||
count := int64(0)
|
count := int64(0)
|
||||||
vals := tc.input
|
vals := tc.input
|
||||||
|
@ -304,8 +307,8 @@ func TestMinimizeInput(t *testing.T) {
|
||||||
// input and a flaky failure occurs, that minimization was not indicated
|
// input and a flaky failure occurs, that minimization was not indicated
|
||||||
// to be successful, and the error isn't returned (since it's flaky).
|
// to be successful, and the error isn't returned (since it's flaky).
|
||||||
func TestMinimizeFlaky(t *testing.T) {
|
func TestMinimizeFlaky(t *testing.T) {
|
||||||
ws := &workerServer{fuzzFn: func(e CorpusEntry) error {
|
ws := &workerServer{fuzzFn: func(e CorpusEntry) (time.Duration, error) {
|
||||||
return errors.New("ohno")
|
return time.Second, errors.New("ohno")
|
||||||
}}
|
}}
|
||||||
keepCoverage := make([]byte, len(coverageSnapshot))
|
keepCoverage := make([]byte, len(coverageSnapshot))
|
||||||
count := int64(0)
|
count := int64(0)
|
||||||
|
|
|
@ -142,7 +142,7 @@ func (w *worker) coordinate(ctx context.Context) error {
|
||||||
}
|
}
|
||||||
// Worker exited non-zero or was terminated by a non-interrupt
|
// Worker exited non-zero or was terminated by a non-interrupt
|
||||||
// signal (for example, SIGSEGV) while fuzzing.
|
// signal (for example, SIGSEGV) while fuzzing.
|
||||||
return fmt.Errorf("fuzzing process terminated unexpectedly: %w", err)
|
return fmt.Errorf("fuzzing process hung or terminated unexpectedly: %w", err)
|
||||||
// TODO(jayconrod,katiehockman): if -keepfuzzing, restart worker.
|
// TODO(jayconrod,katiehockman): if -keepfuzzing, restart worker.
|
||||||
|
|
||||||
case input := <-w.coordinator.inputC:
|
case input := <-w.coordinator.inputC:
|
||||||
|
@ -183,7 +183,7 @@ func (w *worker) coordinate(ctx context.Context) error {
|
||||||
// Unexpected termination. Set error message and fall through.
|
// Unexpected termination. Set error message and fall through.
|
||||||
// We'll restart the worker on the next iteration.
|
// We'll restart the worker on the next iteration.
|
||||||
// Don't attempt to minimize this since it crashed the worker.
|
// Don't attempt to minimize this since it crashed the worker.
|
||||||
resp.Err = fmt.Sprintf("fuzzing process terminated unexpectedly: %v", w.waitErr)
|
resp.Err = fmt.Sprintf("fuzzing process hung or terminated unexpectedly: %v", w.waitErr)
|
||||||
canMinimize = false
|
canMinimize = false
|
||||||
}
|
}
|
||||||
result := fuzzResult{
|
result := fuzzResult{
|
||||||
|
@ -255,7 +255,7 @@ func (w *worker) minimize(ctx context.Context, input fuzzMinimizeInput) (min fuz
|
||||||
limit: input.limit,
|
limit: input.limit,
|
||||||
}, nil
|
}, nil
|
||||||
}
|
}
|
||||||
return fuzzResult{}, fmt.Errorf("fuzzing process terminated unexpectedly while minimizing: %w", w.waitErr)
|
return fuzzResult{}, fmt.Errorf("fuzzing process hung or terminated unexpectedly while minimizing: %w", w.waitErr)
|
||||||
}
|
}
|
||||||
|
|
||||||
if input.crasherMsg != "" && resp.Err == "" {
|
if input.crasherMsg != "" && resp.Err == "" {
|
||||||
|
@ -471,7 +471,15 @@ func RunFuzzWorker(ctx context.Context, fn func(CorpusEntry) error) error {
|
||||||
}
|
}
|
||||||
srv := &workerServer{
|
srv := &workerServer{
|
||||||
workerComm: comm,
|
workerComm: comm,
|
||||||
fuzzFn: fn,
|
fuzzFn: func(e CorpusEntry) (time.Duration, error) {
|
||||||
|
timer := time.AfterFunc(10*time.Second, func() {
|
||||||
|
panic("deadlocked!") // this error message won't be printed
|
||||||
|
})
|
||||||
|
defer timer.Stop()
|
||||||
|
start := time.Now()
|
||||||
|
err := fn(e)
|
||||||
|
return time.Since(start), err
|
||||||
|
},
|
||||||
m: newMutator(),
|
m: newMutator(),
|
||||||
}
|
}
|
||||||
return srv.serve(ctx)
|
return srv.serve(ctx)
|
||||||
|
@ -604,9 +612,12 @@ type workerServer struct {
|
||||||
// coverage is found.
|
// coverage is found.
|
||||||
coverageMask []byte
|
coverageMask []byte
|
||||||
|
|
||||||
// fuzzFn runs the worker's fuzz function on the given input and returns
|
// fuzzFn runs the worker's fuzz target on the given input and returns an
|
||||||
// an error if it finds a crasher (the process may also exit or crash).
|
// error if it finds a crasher (the process may also exit or crash), and the
|
||||||
fuzzFn func(CorpusEntry) error
|
// time it took to run the input. It sets a deadline of 10 seconds, at which
|
||||||
|
// point it will panic with the assumption that the process is hanging or
|
||||||
|
// deadlocked.
|
||||||
|
fuzzFn func(CorpusEntry) (time.Duration, error)
|
||||||
}
|
}
|
||||||
|
|
||||||
// serve reads serialized RPC messages on fuzzIn. When serve receives a message,
|
// serve reads serialized RPC messages on fuzzIn. When serve receives a message,
|
||||||
|
@ -699,9 +710,8 @@ func (ws *workerServer) fuzz(ctx context.Context, args fuzzArgs) (resp fuzzRespo
|
||||||
}
|
}
|
||||||
fuzzOnce := func(entry CorpusEntry) (dur time.Duration, cov []byte, errMsg string) {
|
fuzzOnce := func(entry CorpusEntry) (dur time.Duration, cov []byte, errMsg string) {
|
||||||
mem.header().count++
|
mem.header().count++
|
||||||
start := time.Now()
|
var err error
|
||||||
err := ws.fuzzFn(entry)
|
dur, err = ws.fuzzFn(entry)
|
||||||
dur = time.Since(start)
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
errMsg = err.Error()
|
errMsg = err.Error()
|
||||||
if errMsg == "" {
|
if errMsg == "" {
|
||||||
|
@ -803,7 +813,7 @@ func (ws *workerServer) minimizeInput(ctx context.Context, vals []interface{}, c
|
||||||
// If not, then whatever caused us to think the value was interesting may
|
// If not, then whatever caused us to think the value was interesting may
|
||||||
// have been a flake, and we can't minimize it.
|
// have been a flake, and we can't minimize it.
|
||||||
*count++
|
*count++
|
||||||
retErr = ws.fuzzFn(CorpusEntry{Values: vals})
|
_, retErr = ws.fuzzFn(CorpusEntry{Values: vals})
|
||||||
if keepCoverage != nil {
|
if keepCoverage != nil {
|
||||||
if !hasCoverageBit(keepCoverage, coverageSnapshot) || retErr != nil {
|
if !hasCoverageBit(keepCoverage, coverageSnapshot) || retErr != nil {
|
||||||
return false, nil
|
return false, nil
|
||||||
|
@ -870,7 +880,7 @@ func (ws *workerServer) minimizeInput(ctx context.Context, vals []interface{}, c
|
||||||
panic("impossible")
|
panic("impossible")
|
||||||
}
|
}
|
||||||
*count++
|
*count++
|
||||||
err := ws.fuzzFn(CorpusEntry{Values: vals})
|
_, err := ws.fuzzFn(CorpusEntry{Values: vals})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
retErr = err
|
retErr = err
|
||||||
if keepCoverage != nil {
|
if keepCoverage != nil {
|
||||||
|
|
|
@ -14,6 +14,7 @@ import (
|
||||||
"os/signal"
|
"os/signal"
|
||||||
"reflect"
|
"reflect"
|
||||||
"testing"
|
"testing"
|
||||||
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
var benchmarkWorkerFlag = flag.Bool("benchmarkworker", false, "")
|
var benchmarkWorkerFlag = flag.Bool("benchmarkworker", false, "")
|
||||||
|
@ -36,7 +37,7 @@ func BenchmarkWorkerFuzzOverhead(b *testing.B) {
|
||||||
os.Setenv("GODEBUG", fmt.Sprintf("%s,fuzzseed=123", origEnv))
|
os.Setenv("GODEBUG", fmt.Sprintf("%s,fuzzseed=123", origEnv))
|
||||||
|
|
||||||
ws := &workerServer{
|
ws := &workerServer{
|
||||||
fuzzFn: func(_ CorpusEntry) error { return nil },
|
fuzzFn: func(_ CorpusEntry) (time.Duration, error) { return time.Second, nil },
|
||||||
workerComm: workerComm{memMu: make(chan *sharedMem, 1)},
|
workerComm: workerComm{memMu: make(chan *sharedMem, 1)},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue