2015-10-12 08:16:57 +00:00
|
|
|
// Copyright 2015 syzkaller 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 prog
|
|
|
|
|
|
|
|
import (
|
|
|
|
"math/rand"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Generate generates a random program of length ~ncalls.
|
|
|
|
// calls is a set of allowed syscalls, if nil all syscalls are used.
|
2017-09-14 17:25:01 +00:00
|
|
|
func (target *Target) Generate(rs rand.Source, ncalls int, ct *ChoiceTable) *Prog {
|
|
|
|
p := &Prog{
|
|
|
|
Target: target,
|
|
|
|
}
|
|
|
|
r := newRand(target, rs)
|
2019-08-12 15:41:25 +00:00
|
|
|
s := newState(target, ct, nil)
|
2015-10-12 08:16:57 +00:00
|
|
|
for len(p.Calls) < ncalls {
|
2015-10-14 14:55:09 +00:00
|
|
|
calls := r.generateCall(s, p)
|
2015-10-12 08:16:57 +00:00
|
|
|
for _, c := range calls {
|
|
|
|
s.analyze(c)
|
|
|
|
p.Calls = append(p.Calls, c)
|
|
|
|
}
|
|
|
|
}
|
2018-08-01 17:45:15 +00:00
|
|
|
p.debugValidate()
|
2015-10-12 08:16:57 +00:00
|
|
|
return p
|
|
|
|
}
|