Skip to content

Commit d3d750b

Browse files
committed
fix next block read offset
1 parent fc3f912 commit d3d750b

File tree

423 files changed

+516
-4
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

423 files changed

+516
-4
lines changed

io/linereader/linereader.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,16 +62,14 @@ func (lr *T) ReadExtra(dst []byte) (nread int, ndiscarted int, err error) {
6262
n := copy(dst, lr.readbuf)
6363
nread += n
6464
lr.readbuf = lr.readbuf[n:]
65-
dst = dst[n:]
6665

6766
if len(lr.readbuf) == 0 && lr.readerErr != nil {
6867
return nread, 0, nil
6968
}
7069
}
7170

7271
for i := uint(0); ; i++ {
73-
readOffset := lr.blocksize * i
74-
//readLimit := armath.Min(readOffset+lr.blocksize, uint(len(dst)))
72+
readOffset := uint(nread)
7573
readLimit := armath.Min(lr.blocksize, uint(len(dst)))
7674

7775
// dst has been filled and there hasn't been a new line yet

io/linereader/linereader_test.go

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ func TestLineReader(t *testing.T) {
2626
var err error
2727
var n int
2828

29-
for err != io.EOF {
29+
for i := 0; err != io.EOF; i++ {
3030
n, _, err = r.ReadExtra(linesback[:])
3131
if n == 0 && err == io.EOF {
3232
continue
@@ -537,3 +537,30 @@ var reportLineCount int
537537
func init() {
538538
reportLineCount = strings.Count(report, "\n") + 1
539539
}
540+
541+
func TestTruncated(t *testing.T) {
542+
_, currentFile, _, _ := runtime.Caller(0)
543+
currentDir := path.Dir(currentFile)
544+
545+
r, err := readchunkdump.NewReplayer(
546+
path.Join(currentDir, "readerchunkstruncated"),
547+
)
548+
require.NoError(t, err)
549+
lr := linereader.New(r, 1024*4) // 4K read buffer
550+
backingBuf := [20 * 1024 * 1024]byte{} // 20MB max line
551+
552+
for i := 0; ; i++ {
553+
n, dis, rerr := lr.ReadExtra(backingBuf[:])
554+
555+
require.Zero(t, dis)
556+
557+
rb := backingBuf[:n]
558+
559+
if bytes.ContainsRune(rb, '\x00') {
560+
t.FailNow()
561+
}
562+
if rerr == io.EOF {
563+
return
564+
}
565+
}
566+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
INFO: Target 0: /tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so
2+
INFO: Target 1: /tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libfd_exec_sol_compat.so
3+
--log-path ""
4+
No log
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
INFO: Hardcoded features:
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
INFO: Running with entropic power schedule (0xFF, 100).
2+
INFO: Stats reporting: linear
3+
INFO: Seed: 2810793670
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
MS: 1 CustomCrossOver-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
NEW_FUNC[1/2]:
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
0x7c889f4e2840 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x2c2b840) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
2+
NEW_FUNC[2/2]:
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
0x7c889fe22850 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x356b850) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
2+
#31 NEW cov: 20865 ft: 29023 corp: 27/196Kb lim: 20000 exec/s: 0 rss: 2549Mb L: 3336/13275 MS: 1
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CustomCrossOver-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
NEW_FUNC[1/24]:
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0x7c889e4838d0 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x1bcc8d0) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
NEW_FUNC[2/24]: 0x7c889e4981c0 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x1be11c0) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#32 NEW cov: 20922 ft: 29111 corp: 28/204Kb lim: 20000
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
exec/s: 0 rss: 2551Mb L: 7431/13275 MS: 1 CustomCrossOver-
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
INFO: Loaded 3 modules (1083633 inline 8-bit counters): 19597 [0x6047114dd4d0, 0x6047114e215d), 1021372 [0x7c88a335ec00, 0x7c88a34581bc), 42664 [0x7c889c7969b0, 0x7c889c7a1058),
2+
INFO: Loaded 3 PC tables (1083633 PCs): 19597 [0x6047114e2160,0x60471152ea30),
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
NEW_FUNC[1/55]:
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
0x7c889f31e3f0 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x2a673f0) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
2+
NEW_FUNC[2/55]:
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0x7c889f356c40 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x2a9fc40) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#33 NEW cov: 21034 ft: 29266 corp: 29
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/214Kb lim: 20000 exec/s: 0 rss: 2554Mb L: 10308/13275 MS: 1 Custom-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
NEW_FUNC[1/14]:
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
0x7c88a114fa60 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x4898a60) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
2+
NEW_FUNC[2/14]:
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0x7c88a1180d30 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x48c9d30) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#34 NEW cov: 21079 ft: 29352 corp: 30/224Kb lim: 20000 exec/s: 0
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rss: 2555Mb L: 10110/13275 MS: 1 CustomCrossOver-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1021372 [0x7c88a34581c0,0x7c88a43edd80), 42664 [0x7c889c7a1058,0x7c889c847ad8),
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#35 NEW cov: 21080 ft: 29360 corp: 31/233Kb lim: 20000 exec/s: 0 rss: 2557Mb
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
L: 9431/13275 MS: 1 CustomCrossOver-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
NEW_FUNC[1/438]:
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
0x7c889e4826f0 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x1bcb6f0) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
2+
NEW_FUNC[2/438]:
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0x7c889e482960 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x1bcb960) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#37 NEW cov: 22254 ft: 30990 corp: 32/243Kb lim: 20000 exec/s: 0 rss: 2567Mb
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
L: 10296/13275 MS: 1 Custom-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#38 NEW cov: 22254 ft: 31004 corp: 33/253Kb lim: 20000 exec/s: 0 rss: 2570Mb
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
L: 10477/13275 MS: 1 CustomCrossOver-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#39 NEW cov: 22256 ft: 31027 corp: 34/260Kb lim: 20000 exec/s: 0 rss: 2571Mb L: 6915/13275 MS: 2
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
INFO: 0 files found in /tmp/fuzzcorp/libFuzzer/sol_txn_diff-tgt_rvfruw8lACoPdDHqsnOfcQ/seeds/sol_txn_diff
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CopyPart-Custom-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#40 NEW cov: 22256 ft: 31042 corp: 35/269Kb lim: 20000 exec/s: 0 rss: 2574Mb
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
L: 9604/13275 MS: 3 ChangeBit-ChangeByte-Custom-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
NEW_FUNC[1/2]:
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
0x6047112bc270 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/target/fuzz_sol_txn+0x345270)
2+
NEW_FUNC[2/2]: 0x6047112bc340 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/target/fuzz_sol_txn+0x345340)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#41 NEW cov: 22311 ft: 32011 corp: 36
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/278Kb lim: 20000 exec/s: 0 rss: 2577Mb L: 9371/13275 MS: 2 ShuffleBytes-CustomCrossOver-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
NEW_FUNC[1/7]:
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
0x7c889fe3cc00 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x3585c00) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
2+
NEW_FUNC[2/7]:
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0x7c889fe41000 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x358a000) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
INFO: A corpus is not provided, starting from an empty corpus
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#42 NEW cov: 22375 ft: 32130 corp: 37/289Kb lim: 20000 exec/s: 0 rss: 2581Mb L: 10461/13275 MS: 1 CustomCrossOver-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#43 NEW cov: 22376 ft: 32361 corp: 38/293Kb lim: 20000 exec/s: 0 rss: 2585Mb
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
L: 4067/13275 MS: 1 CustomCrossOver-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
NEW_FUNC[1/2]:
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
0x6047113003e0 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/target/fuzz_sol_txn+0x3893e0)
2+
NEW_FUNC[2/2]:
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0x7c88a01c33e0 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x390c3e0) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#44 NEW cov: 22435
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ft: 32555 corp: 39/303Kb lim: 20000 exec/s: 0 rss: 2587Mb L: 11086/13275 MS: 1 CustomCrossOver-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#45 NEW cov: 22436 ft: 32765 corp: 40/306Kb lim: 20000 exec/s: 0 rss: 2589Mb L: 3069/13275 MS: 1
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CustomCrossOver-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#2 INITED cov: 34 ft: 35 corp: 1/1b exec/s: 0
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#46 NEW cov: 22437 ft: 32769 corp: 41/318Kb lim: 20000 exec/s: 0 rss: 2592Mb
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
L: 11581/13275 MS: 1 CustomCrossOver-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#47 NEW cov: 22440 ft: 32787 corp: 42/324Kb lim: 20000 exec/s: 0 rss: 2594Mb
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
L: 6714/13275 MS: 1 Custom-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#48 NEW cov: 22441 ft: 32790 corp: 43/331Kb lim: 20000 exec/s: 0 rss: 2597Mb L: 6787/13275
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
MS: 1 CustomCrossOver-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
NEW_FUNC[1/64]:
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
0x7c88a03ccf60 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x3b15f60) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
2+
NEW_FUNC[2/64]:
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0x7c88a03d4cc0 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x3b1dcc0) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#49 NEW cov: 22688 ft: 33429 corp: 44/336Kb lim: 20000 exec/s: 49 rss: 2600Mb L: 5492/13275 MS: 2 CrossOver-Custom-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rss: 2447Mb
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#50 NEW cov: 22689 ft: 33444 corp: 45/347Kb lim: 20000 exec/s: 50
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rss: 2600Mb L: 10689/13275 MS: 1 CustomCrossOver-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#51 NEW cov: 22693 ft: 33456 corp: 46/352Kb lim: 20000 exec/s: 51 rss: 2600Mb L: 5791/13275 MS: 2 EraseBytes-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Custom-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#52 NEW cov: 22697 ft: 33486 corp: 47/360Kb lim: 20000 exec/s: 52 rss: 2600Mb
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
L: 7475/13275 MS: 2 ChangeByte-Custom-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#53 NEW cov: 22697 ft: 33498 corp: 48/372Kb lim: 20000 exec/s: 53 rss: 2600Mb
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
L: 13016/13275 MS: 1 CustomCrossOver-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#54 NEW cov: 22697 ft: 33508 corp: 49/375Kb lim: 20000 exec/s: 54 rss: 2600Mb
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
L: 2945/13275 MS: 2 InsertRepeatedBytes-Custom-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
NEW_FUNC[1/6145]:
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
NEW_FUNC[1/1]:
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0x60471130e7f0 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/target/fuzz_sol_txn+0x3977f0)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#55 NEW cov: 22774 ft: 33635 corp: 50/380Kb lim: 20000 exec/s: 55 rss: 2600Mb L: 4999/13275 MS: 1 CustomCrossOver-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#56 NEW cov: 22775 ft: 33637 corp: 51/390Kb lim: 20000 exec/s: 56 rss: 2600Mb
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
L: 10459/13275 MS: 1 CustomCrossOver-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
NEW_FUNC[1/9]:
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
0x7c88a114c2c0 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x48952c0) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
2+
NEW_FUNC[2/9]:
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
0x7c88a1150740 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x4899740) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
2+
#57 NEW cov: 22794 ft: 33666 corp: 52/394Kb lim: 20000 exec/s: 57 rss: 2600Mb L: 3652/13275 MS: 3 CrossOver-PersAutoDict-Custom- DE: "\032\001\000\000"-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#58 NEW cov: 22794 ft: 33667 corp: 53/398Kb lim: 20000 exec/s: 58 rss: 2600Mb
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
L: 4111/13275 MS: 1 Custom-
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
0x604711292b50 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/target/fuzz_sol_txn+0x31bb50)
2+
NEW_FUNC[2/6145]:
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
NEW_FUNC[1/3]:
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
0x6047112bf360 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/target/fuzz_sol_txn+0x348360)
2+
NEW_FUNC[2/3]: 0x6047112bf7a0 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/target/fuzz_sol_txn+0x3487a0)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#59 NEW cov: 22834 ft: 33721 corp: 54/407Kb lim: 20000 exec/s: 59 rss: 2600Mb L: 8844/13275 MS: 1 CustomCrossOver-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
NEW_FUNC[1/194]:
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
0x60471130aa70 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/target/fuzz_sol_txn+0x393a70)
2+
NEW_FUNC[2/194]: 0x60471130e260 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/target/fuzz_sol_txn+0x397260)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#60 NEW cov: 23251 ft: 34257 corp: 55/410Kb lim: 20000 exec/s: 60 rss: 2600Mb L: 3889/13275 MS: 3 ShuffleBytes-InsertByte-Custom-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#61 NEW cov: 23255 ft: 34278 corp: 56/427Kb lim: 20000 exec/s: 61
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rss: 2600Mb L: 16903/16903 MS: 1 CustomCrossOver-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#62 NEW cov: 23256 ft: 34283 corp: 57/439Kb lim: 20000 exec/s: 62 rss: 2600Mb
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
L: 12226/16903 MS: 2 ChangeBinInt-CustomCrossOver-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0x604711295170 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/target/fuzz_sol_txn+0x31e170)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
NEW_FUNC[1/2]:
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
0x7c889f5afc50 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x2cf8c50) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
2+
NEW_FUNC[2/2]:
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0x7c889f603fc0 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x2d4cfc0) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#63 NEW cov: 23266 ft: 34314
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
corp: 58/450Kb lim: 20000 exec/s: 63 rss: 2600Mb L: 11484/16903 MS: 1 CustomCrossOver-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#64 NEW cov: 23266 ft: 34325 corp: 59/454Kb lim: 20000 exec/s: 64
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rss: 2600Mb L: 4414/16903 MS: 2 InsertByte-Custom-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
NEW_FUNC[1/3]:
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
0x7c889ff81ca0 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x36caca0) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
2+
NEW_FUNC[2/3]:
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0x7c889ff948f0 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x36dd8f0) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
06adecee02a12019 073a0a7d3f570b55 0d8a57d3828615b9 10a1e092dd7f1573 14a73a8e87cee681 15766ba9a908483c 159967bd804742c2 168bc52564a1181f 1728caf9bc767c3f 1a6958db2ff09870 1cec25430fa6229f 1d41fee249e6cc37 204b4907aacbc996 2758d3af483c6abe 2ac194a6a536cee4 2b8134b3adacd035 2bd7391d0e103c41 2bf29bf13f0e1d5d 2ca5833736ba5c69 2f51d89fe8ee0500 2fdc300bd0720815 30ab53221abfd626 30bf137796030f21 317a863da11d0a8d 35dd1ed4b9d19b9b 3ab28ef5d5cf7ca6 3ca58e628f040b68 41b914ee34cb0368 41fd0d35fd8339c9 4439548ebff1d6f1 499ab78fe1142d63 4ab8b2b10003ad50 4b241cb4c6f3b3b2 4b5c55d9eaf96eee 4c8dc4f1e61649dd 4d6ae02c256bdf10 500aab8a23ff8b33 50a615bae8ca3874 51949af2871c7c99 55d3a0c392cf63e0 562f76c6d74c31ea 5795654d01457757 5a5c2eab595223bf 5b2c24f10d5a1a81 606490c1431ae278 62885c46a116e1d6
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#4 NEW cov: 12734 ft: 12656 corp: 2/10912b lim: 20000 exec/s: 0 rss: 2457Mb L: 10911/10911 MS: 1
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#65 NEW cov: 23284 ft: 34425 corp: 60/462Kb lim: 20000 exec/s: 65 rss: 2600Mb L: 7378/16903 MS: 1 CustomCrossOver-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#66 NEW cov: 23285 ft: 34447 corp: 61/471Kb lim: 20000 exec/s: 66 rss: 2600Mb
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
L: 9706/16903 MS: 1 CustomCrossOver-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
NEW_FUNC[1/2]:
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
0x7c88a05bcaf0 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x3d05af0) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
2+
NEW_FUNC[2/2]:
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0x7c88a05bcbc0 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x3d05bc0) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#67 NEW cov: 23293 ft: 34540 corp: 62/485Kb lim: 20000 exec/s: 67
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rss: 2600Mb L: 13911/16903 MS: 1 Custom-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#68 NEW cov: 23293 ft: 34544 corp: 63/490Kb lim: 20000 exec/s: 68
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rss: 2600Mb L: 5258/16903 MS: 1 CustomCrossOver-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CustomCrossOver-
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#69 NEW cov: 23293 ft: 34551 corp: 64/500Kb lim: 20000 exec/s: 69 rss: 2600Mb
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
L: 10140/16903 MS: 2 ChangeBit-Custom-

0 commit comments

Comments
 (0)