forked from google/syzkaller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalidation.go
310 lines (292 loc) · 8.95 KB
/
validation.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
// 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 (
"fmt"
"os"
"strings"
)
var debug = false // enabled in tests and fuzzers
func init() {
// Enable debug checking in all tests.
if strings.HasSuffix(os.Args[0], ".test") {
debug = true
}
}
func (p *Prog) debugValidate() {
if debug {
if err := p.validate(); err != nil {
panic(err)
}
}
}
func (p *Prog) validate() error {
return p.validateWithOpts(validationOptions{})
}
type validCtx struct {
target *Target
isUnsafe bool
opts validationOptions
args map[Arg]bool
uses map[Arg]Arg
}
type validationOptions struct {
ignoreTransient bool
}
func (p *Prog) validateWithOpts(opts validationOptions) error {
ctx := &validCtx{
target: p.Target,
isUnsafe: p.isUnsafe,
opts: opts,
args: make(map[Arg]bool),
uses: make(map[Arg]Arg),
}
for i, c := range p.Calls {
if c.Meta == nil {
return fmt.Errorf("call does not have meta information")
}
if err := ctx.validateCall(c); err != nil {
return fmt.Errorf("call #%d %v: %w", i, c.Meta.Name, err)
}
}
for u, orig := range ctx.uses {
if !ctx.args[u] {
return fmt.Errorf("use of %+v referes to an out-of-tree arg\narg: %#v", orig, u)
}
}
return nil
}
func (ctx *validCtx) validateCall(c *Call) error {
if !ctx.isUnsafe && c.Meta.Attrs.Disabled {
return fmt.Errorf("use of a disabled call")
}
if c.Props.Rerun > 0 && c.Props.FailNth > 0 {
return fmt.Errorf("rerun > 0 && fail_nth > 0")
}
if len(c.Args) != len(c.Meta.Args) {
return fmt.Errorf("wrong number of arguments, want %v, got %v",
len(c.Meta.Args), len(c.Args))
}
for i, arg := range c.Args {
if err := ctx.validateArg(arg, c.Meta.Args[i].Type, DirIn); err != nil {
return err
}
}
if err := c.checkConditions(ctx.target, ctx.opts.ignoreTransient); err != nil {
return err
}
return ctx.validateRet(c)
}
func (ctx *validCtx) validateRet(c *Call) error {
if c.Meta.Ret == nil {
if c.Ret != nil {
return fmt.Errorf("return value without type")
}
return nil
}
if c.Ret == nil {
return fmt.Errorf("return value is absent")
}
if c.Ret.Res != nil || c.Ret.Val != 0 || c.Ret.OpDiv != 0 || c.Ret.OpAdd != 0 {
return fmt.Errorf("return value %v is not empty", c.Ret)
}
return ctx.validateArg(c.Ret, c.Meta.Ret, DirOut)
}
func (ctx *validCtx) validateArg(arg Arg, typ Type, dir Dir) error {
if arg == nil {
return fmt.Errorf("nil arg")
}
if ctx.args[arg] {
return fmt.Errorf("arg %#v is referenced several times in the tree", arg)
}
if arg.Type() == nil {
return fmt.Errorf("no arg type")
}
if _, ok := typ.(*PtrType); ok {
dir = DirIn // pointers are always in
}
// We used to demand that Arg has exactly the same dir as Type, however,
// it leads to problems when dealing with ANYRES* types.
// If the resource was DirIn before squashing, we should not demand that
// it be DirInOut - it would only lead to mutations that make little sense.
// Let's only deny truly conflicting directions, e.g. DirIn vs DirOut.
if arg.Dir() != dir && dir != DirInOut {
return fmt.Errorf("arg %#v type %v has wrong dir %v, expect %v", arg, arg.Type(), arg.Dir(), dir)
}
if !ctx.target.isAnyPtr(arg.Type()) && arg.Type() != typ {
return fmt.Errorf("bad arg type %#v, expect %#v", arg.Type(), typ)
}
ctx.args[arg] = true
return arg.validate(ctx, dir)
}
func (arg *ConstArg) validate(ctx *validCtx, dir Dir) error {
switch typ := arg.Type().(type) {
case *IntType:
if arg.Dir() == DirOut && !isDefault(arg) {
return fmt.Errorf("out int arg '%v' has bad const value %v", typ.Name(), arg.Val)
}
case *ProcType:
if arg.Val >= typ.ValuesPerProc && !isDefault(arg) {
return fmt.Errorf("per proc arg '%v' has bad value %v", typ.Name(), arg.Val)
}
case *CsumType:
if arg.Val != 0 {
return fmt.Errorf("csum arg '%v' has nonzero value %v", typ.Name(), arg.Val)
}
case *ConstType, *FlagsType, *LenType:
default:
return fmt.Errorf("const arg %v has bad type %v", arg, typ.Name())
}
if arg.Dir() == DirOut {
// We generate output len arguments, which makes sense since it can be
// a length of a variable-length array which is not known otherwise.
typ := arg.Type()
if _, isLen := typ.(*LenType); !isLen {
if !typ.isDefaultArg(arg) {
return fmt.Errorf("output arg %q has non default value %+v", typ.Name(), arg)
}
}
}
return nil
}
func (arg *ResultArg) validate(ctx *validCtx, dir Dir) error {
typ, ok := arg.Type().(*ResourceType)
if !ok {
return fmt.Errorf("result arg %v has bad type %v", arg, arg.Type().Name())
}
for u := range arg.uses {
if u == nil {
return fmt.Errorf("nil reference in uses for arg %+v", arg)
}
if u.Res != arg {
return fmt.Errorf("result arg '%v' has broken uses link to (%+v)", arg, u)
}
ctx.uses[u] = arg
}
if arg.Dir() == DirOut && arg.Val != 0 && arg.Val != typ.Default() {
return fmt.Errorf("out resource arg '%v' has bad const value %v", typ.Name(), arg.Val)
}
if arg.Res != nil {
if !ctx.args[arg.Res] {
return fmt.Errorf("result arg %v references out-of-tree result: %#v -> %#v",
typ.Name(), arg, arg.Res)
}
if !arg.Res.uses[arg] {
return fmt.Errorf("result arg '%v' has broken link (%+v)", typ.Name(), arg.Res.uses)
}
}
if arg.Dir() == DirIn && len(arg.uses) > 0 {
return fmt.Errorf("result arg '%v' is DirIn, but is used %d times", typ.Name(), len(arg.uses))
}
if len(arg.uses) > 0 && arg.Size() > 8 {
return fmt.Errorf("result arg '%v' is to be copied out, yet it's bigger than int64 (%d > 8)", typ.Name(), arg.Size())
}
return nil
}
func (arg *DataArg) validate(ctx *validCtx, dir Dir) error {
typ, ok := arg.Type().(*BufferType)
if !ok {
return fmt.Errorf("data arg %v has bad type %v", arg, arg.Type().Name())
}
if arg.Dir() == DirOut && len(arg.data) != 0 {
return fmt.Errorf("output arg '%v' has data", typ.Name())
}
if !typ.Varlen() && typ.Size() != arg.Size() {
return fmt.Errorf("data arg %v has wrong size %v, want %v",
typ.Name(), arg.Size(), typ.Size())
}
switch typ.Kind {
case BufferString:
if typ.TypeSize != 0 && arg.Size() != typ.TypeSize {
return fmt.Errorf("string arg '%v' has size %v, which should be %v",
typ.Name(), arg.Size(), typ.TypeSize)
}
case BufferFilename:
if !ctx.isUnsafe && escapingFilename(string(arg.data)) {
return fmt.Errorf("escaping filename %q", arg.data)
}
}
return nil
}
func (arg *GroupArg) validate(ctx *validCtx, dir Dir) error {
switch typ := arg.Type().(type) {
case *StructType:
if len(arg.Inner) != len(typ.Fields) {
return fmt.Errorf("struct arg '%v' has wrong number of fields: want %v, got %v",
typ.Name(), len(typ.Fields), len(arg.Inner))
}
for i, field := range arg.Inner {
if err := ctx.validateArg(field, typ.Fields[i].Type, typ.Fields[i].Dir(dir)); err != nil {
return err
}
}
case *ArrayType:
if typ.Kind == ArrayRangeLen && typ.RangeBegin == typ.RangeEnd &&
uint64(len(arg.Inner)) != typ.RangeBegin {
return fmt.Errorf("array %v has wrong number of elements %v, want %v",
typ.Name(), len(arg.Inner), typ.RangeBegin)
}
for _, elem := range arg.Inner {
if err := ctx.validateArg(elem, typ.Elem, dir); err != nil {
return err
}
}
default:
return fmt.Errorf("group arg %v has bad type %v", arg, typ.Name())
}
return nil
}
func (arg *UnionArg) validate(ctx *validCtx, dir Dir) error {
typ, ok := arg.Type().(*UnionType)
if !ok {
return fmt.Errorf("union arg %v has bad type %v", arg, arg.Type().Name())
}
if arg.Index < 0 || arg.Index >= len(typ.Fields) {
return fmt.Errorf("union arg %v has bad index %v/%v", arg, arg.Index, len(typ.Fields))
}
opt := typ.Fields[arg.Index]
return ctx.validateArg(arg.Option, opt.Type, opt.Dir(dir))
}
func (arg *PointerArg) validate(ctx *validCtx, dir Dir) error {
switch typ := arg.Type().(type) {
case *VmaType:
if arg.Res != nil {
return fmt.Errorf("vma arg '%v' has data", typ.Name())
}
case *PtrType:
if arg.Res != nil {
if err := ctx.validateArg(arg.Res, typ.Elem, typ.ElemDir); err != nil {
return err
}
}
if arg.VmaSize != 0 {
return fmt.Errorf("pointer arg '%v' has nonzero size", typ.Name())
}
if arg.Dir() == DirOut {
return fmt.Errorf("pointer arg '%v' has output direction", typ.Name())
}
default:
return fmt.Errorf("ptr arg %v has bad type %v", arg, typ.Name())
}
if arg.IsSpecial() {
if -arg.Address >= uint64(len(ctx.target.SpecialPointers)) {
return fmt.Errorf("special ptr arg %v has bad value 0x%x", arg.Type().Name(), arg.Address)
}
} else {
maxMem := ctx.target.NumPages * ctx.target.PageSize
addr, size := arg.Address, arg.VmaSize
if size == 0 && arg.Res != nil {
size = arg.Res.Size()
}
if ctx.isUnsafe {
// Allow mapping 2 surrounding pages for DataMmapProg.
addr += ctx.target.PageSize
maxMem += 2 * ctx.target.PageSize
}
if addr >= maxMem || addr+size > maxMem {
return fmt.Errorf("ptr %v has bad address %v/%v/%v",
arg.Type().Name(), arg.Address, arg.VmaSize, size)
}
}
return nil
}