-
Notifications
You must be signed in to change notification settings - Fork 90
/
fuzz_test.go
408 lines (394 loc) · 9.76 KB
/
fuzz_test.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
//go:build go1.18
// +build go1.18
/*
* MinIO Cloud Storage, (C) 2022 MinIO, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package simdjson
import (
"archive/tar"
"bytes"
"encoding/json"
"fmt"
"go/ast"
"go/parser"
"go/token"
"io"
"os"
"strconv"
"strings"
"testing"
"unicode/utf8"
"github.com/klauspost/compress/zstd"
)
func FuzzParse(f *testing.F) {
if !SupportedCPU() {
f.SkipNow()
}
addBytesFromTarZst(f, "testdata/fuzz/corpus.tar.zst", testing.Short())
addBytesFromTarZst(f, "testdata/fuzz/go-corpus.tar.zst", testing.Short())
f.Fuzz(func(t *testing.T, data []byte) {
var dst map[string]interface{}
var dstA []interface{}
pj, err := Parse(data, nil)
jErr := json.Unmarshal(data, &dst)
if err != nil {
if jErr == nil && dst != nil {
t.Logf("got error %v, but json.Unmarshal could unmarshal", err)
}
// Don't continue
t.Skip()
return
}
if jErr != nil {
if strings.Contains(jErr.Error(), "cannot unmarshal array into") {
jErr2 := json.Unmarshal(data, &dstA)
if jErr2 != nil {
t.Logf("no error reported, but json.Unmarshal (Array) reported: %v", jErr2)
}
} else {
t.Logf("no error reported, but json.Unmarshal reported: %v", jErr)
}
}
// Check if we can convert back
i := pj.Iter()
if i.PeekNextTag() != TagEnd {
_, err = i.MarshalJSON()
if err != nil {
switch {
// This is ok.
case strings.Contains(err.Error(), "INF or NaN number found"):
default:
t.Error(err)
}
}
}
// Do simple ND test.
d2 := append(make([]byte, 0, len(data)*3+2), data...)
d2 = append(d2, '\n')
d2 = append(d2, data...)
d2 = append(d2, '\n')
d2 = append(d2, data...)
_, _ = ParseND(data, nil)
return
})
}
// FuzzCorrect will check for correctness and compare output to stdlib.
func FuzzCorrect(f *testing.F) {
if !SupportedCPU() {
f.SkipNow()
}
const (
// fail if simdjson doesn't report error, but json.Unmarshal does
failOnMissingError = true
// Run input through json.Unmarshal/json.Marshal first
filterRaw = true
)
addBytesFromTarZst(f, "testdata/fuzz/corpus.tar.zst", testing.Short())
addBytesFromTarZst(f, "testdata/fuzz/go-corpus.tar.zst", testing.Short())
f.Fuzz(func(t *testing.T, data []byte) {
var want map[string]interface{}
var wantA []interface{}
if !utf8.Valid(data) {
t.SkipNow()
}
if filterRaw {
var tmp interface{}
err := json.Unmarshal(data, &tmp)
if err != nil {
t.SkipNow()
}
data, err = json.Marshal(tmp)
if err != nil {
t.Fatal(err)
}
if tmp == nil {
t.SkipNow()
}
}
pj, err := Parse(data, nil)
jErr := json.Unmarshal(data, &want)
if err != nil {
if jErr == nil {
b, _ := json.Marshal(want)
t.Fatalf("got error %v, but json.Unmarshal could unmarshal to %#v js: %s", err, want, string(b))
}
// Don't continue
t.SkipNow()
}
if jErr != nil {
want = nil
if strings.Contains(jErr.Error(), "cannot unmarshal array into") {
jErr2 := json.Unmarshal(data, &wantA)
if jErr2 != nil {
if failOnMissingError {
t.Fatalf("no error reported, but json.Unmarshal (Array) reported: %v", jErr2)
}
}
} else {
if failOnMissingError {
t.Fatalf("no error reported, but json.Unmarshal reported: %v", jErr)
}
return
}
}
// Check if we can convert back
var got map[string]interface{}
var gotA []interface{}
i := pj.Iter()
if i.PeekNextTag() == TagEnd {
if len(want)+len(wantA) > 0 {
msg := fmt.Sprintf("stdlib returned data %#v, but nothing from simdjson (tap:%d, str:%d, err:%v)", want, len(pj.Tape), len(pj.Strings.B), err)
panic(msg)
}
t.SkipNow()
}
data, err = i.MarshalJSON()
if err != nil {
switch {
// This is ok.
case strings.Contains(err.Error(), "INF or NaN number found"):
default:
panic(err)
}
}
var wantB []byte
var gotB []byte
if want != nil {
// We should be able to unmarshal into msi
i := pj.Iter()
i.AdvanceInto()
for i.Type() != TypeNone {
switch i.Type() {
case TypeRoot:
i.Advance()
case TypeObject:
obj, err := i.Object(nil)
if err != nil {
panic(err)
}
got, err = obj.Map(got)
if err != nil {
panic(err)
}
i.Advance()
default:
allOfit := pj.Iter()
msg, _ := allOfit.MarshalJSON()
t.Fatalf("Unexpected type: %v, all: %s", i.Type(), string(msg))
}
}
gotB, err = json.Marshal(got)
if err != nil {
panic(err)
}
wantB, err = json.Marshal(want)
if err != nil {
panic(err)
}
}
if wantA != nil {
// We should be able to unmarshal into msi
i := pj.Iter()
i.AdvanceInto()
for i.Type() != TypeNone {
switch i.Type() {
case TypeRoot:
i.Advance()
case TypeArray:
arr, err := i.Array(nil)
if err != nil {
panic(err)
}
gotA, err = arr.Interface()
if err != nil {
panic(err)
}
i.Advance()
default:
t.Fatalf("Unexpected type: %v", i.Type())
}
}
gotB, err = json.Marshal(gotA)
if err != nil {
panic(err)
}
wantB, err = json.Marshal(wantA)
if err != nil {
panic(err)
}
}
if !bytes.Equal(gotB, wantB) {
if len(want)+len(got) == 0 {
t.SkipNow()
}
if bytes.Equal(bytes.ReplaceAll(wantB, []byte("-0"), []byte("0")), bytes.ReplaceAll(gotB, []byte("-0"), []byte("0"))) {
// let -0 == 0
return
}
allOfit := pj.Iter()
simdOut, _ := allOfit.MarshalJSON()
t.Fatalf("Marshal data mismatch:\nstdlib: %v\nsimdjson:%v\n\nsimdjson:%s", string(wantB), string(gotB), string(simdOut))
}
return
})
}
// FuzzCorrect will check for correctness and compare output to stdlib.
func FuzzSerialize(f *testing.F) {
if !SupportedCPU() {
f.SkipNow()
}
addBytesFromTarZst(f, "testdata/fuzz/corpus.tar.zst", testing.Short())
addBytesFromTarZst(f, "testdata/fuzz/go-corpus.tar.zst", testing.Short())
f.Fuzz(func(t *testing.T, data []byte) {
// Create a tape from the input and ensure that the output of JSON matches.
pj, err := Parse(data, nil)
if err != nil {
pj, err = ParseND(data, pj)
if err != nil {
// Don't continue
t.SkipNow()
}
}
i := pj.Iter()
want, err := i.MarshalJSON()
if err != nil {
panic(err)
}
// Check if we can convert back
s := NewSerializer()
got := make([]byte, 0, len(want))
var dst []byte
var target *ParsedJson
for _, comp := range []CompressMode{CompressNone, CompressFast, CompressDefault, CompressBest} {
level := fmt.Sprintf("level-%d:", comp)
s.CompressMode(comp)
dst = s.Serialize(dst[:0], *pj)
target, err = s.Deserialize(dst, target)
if err != nil {
t.Error(level + err.Error())
}
i := target.Iter()
got, err = i.MarshalJSONBuffer(got[:0])
if err != nil {
t.Error(level + err.Error())
}
if !bytes.Equal(want, got) {
err := fmt.Sprintf("%s JSON mismatch:\nwant: %s\ngot :%s", level, string(want), string(got))
err += fmt.Sprintf("\ntap0:%x", pj.Tape)
err += fmt.Sprintf("\ntap1:%x", target.Tape)
t.Error(err)
}
}
return
})
}
func addBytesFromTarZst(f *testing.F, filename string, short bool) {
file, err := os.Open(filename)
if err != nil {
f.Fatal(err)
}
defer file.Close()
zr, err := zstd.NewReader(file)
if err != nil {
f.Fatal(err)
}
defer zr.Close()
tr := tar.NewReader(zr)
i := 0
for h, err := tr.Next(); err == nil; h, err = tr.Next() {
i++
if short && i%100 != 0 {
continue
}
b := make([]byte, h.Size)
_, err := io.ReadFull(tr, b)
if err != nil {
f.Fatal(err)
}
raw := true
if bytes.HasPrefix(b, []byte("go test fuzz")) {
raw = false
}
if raw {
f.Add(b)
continue
}
vals, err := unmarshalCorpusFile(b)
if err != nil {
f.Fatal(err)
}
for _, v := range vals {
f.Add(v)
}
}
}
// unmarshalCorpusFile decodes corpus bytes into their respective values.
func unmarshalCorpusFile(b []byte) ([][]byte, error) {
if len(b) == 0 {
return nil, fmt.Errorf("cannot unmarshal empty string")
}
lines := bytes.Split(b, []byte("\n"))
if len(lines) < 2 {
return nil, fmt.Errorf("must include version and at least one value")
}
var vals = make([][]byte, 0, len(lines)-1)
for _, line := range lines[1:] {
line = bytes.TrimSpace(line)
if len(line) == 0 {
continue
}
v, err := parseCorpusValue(line)
if err != nil {
return nil, fmt.Errorf("malformed line %q: %v", line, err)
}
vals = append(vals, v)
}
return vals, nil
}
// parseCorpusValue
func parseCorpusValue(line []byte) ([]byte, error) {
fs := token.NewFileSet()
expr, err := parser.ParseExprFrom(fs, "(test)", line, 0)
if err != nil {
return nil, err
}
call, ok := expr.(*ast.CallExpr)
if !ok {
return nil, fmt.Errorf("expected call expression")
}
if len(call.Args) != 1 {
return nil, fmt.Errorf("expected call expression with 1 argument; got %d", len(call.Args))
}
arg := call.Args[0]
if arrayType, ok := call.Fun.(*ast.ArrayType); ok {
if arrayType.Len != nil {
return nil, fmt.Errorf("expected []byte or primitive type")
}
elt, ok := arrayType.Elt.(*ast.Ident)
if !ok || elt.Name != "byte" {
return nil, fmt.Errorf("expected []byte")
}
lit, ok := arg.(*ast.BasicLit)
if !ok || lit.Kind != token.STRING {
return nil, fmt.Errorf("string literal required for type []byte")
}
s, err := strconv.Unquote(lit.Value)
if err != nil {
return nil, err
}
return []byte(s), nil
}
return nil, fmt.Errorf("expected []byte")
}