Skip to content

Commit

Permalink
Merge pull request #5 from asymmetric-research/marctrem/fix-next-bloc…
Browse files Browse the repository at this point in the history
…k-read

fix next block read offset
  • Loading branch information
marctrem authored Oct 22, 2024
2 parents fc3f912 + d3d750b commit 8695358
Show file tree
Hide file tree
Showing 423 changed files with 516 additions and 4 deletions.
4 changes: 1 addition & 3 deletions io/linereader/linereader.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,16 +62,14 @@ func (lr *T) ReadExtra(dst []byte) (nread int, ndiscarted int, err error) {
n := copy(dst, lr.readbuf)
nread += n
lr.readbuf = lr.readbuf[n:]
dst = dst[n:]

if len(lr.readbuf) == 0 && lr.readerErr != nil {
return nread, 0, nil
}
}

for i := uint(0); ; i++ {
readOffset := lr.blocksize * i
//readLimit := armath.Min(readOffset+lr.blocksize, uint(len(dst)))
readOffset := uint(nread)
readLimit := armath.Min(lr.blocksize, uint(len(dst)))

// dst has been filled and there hasn't been a new line yet
Expand Down
29 changes: 28 additions & 1 deletion io/linereader/linereader_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func TestLineReader(t *testing.T) {
var err error
var n int

for err != io.EOF {
for i := 0; err != io.EOF; i++ {
n, _, err = r.ReadExtra(linesback[:])
if n == 0 && err == io.EOF {
continue
Expand Down Expand Up @@ -537,3 +537,30 @@ var reportLineCount int
func init() {
reportLineCount = strings.Count(report, "\n") + 1
}

func TestTruncated(t *testing.T) {
_, currentFile, _, _ := runtime.Caller(0)
currentDir := path.Dir(currentFile)

r, err := readchunkdump.NewReplayer(
path.Join(currentDir, "readerchunkstruncated"),
)
require.NoError(t, err)
lr := linereader.New(r, 1024*4) // 4K read buffer
backingBuf := [20 * 1024 * 1024]byte{} // 20MB max line

for i := 0; ; i++ {
n, dis, rerr := lr.ReadExtra(backingBuf[:])

require.Zero(t, dis)

rb := backingBuf[:n]

if bytes.ContainsRune(rb, '\x00') {
t.FailNow()
}
if rerr == io.EOF {
return
}
}
}
4 changes: 4 additions & 0 deletions io/linereader/readerchunkstruncated/chunk-0
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
INFO: Target 0: /tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so
INFO: Target 1: /tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libfd_exec_sol_compat.so
--log-path ""
No log
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
INFO: Hardcoded features:
3 changes: 3 additions & 0 deletions io/linereader/readerchunkstruncated/chunk-10
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
INFO: Running with entropic power schedule (0xFF, 100).
INFO: Stats reporting: linear
INFO: Seed: 2810793670
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-100
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
MS: 1 CustomCrossOver-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-101
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NEW_FUNC[1/2]:
2 changes: 2 additions & 0 deletions io/linereader/readerchunkstruncated/chunk-102
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
0x7c889f4e2840 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x2c2b840) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
NEW_FUNC[2/2]:
2 changes: 2 additions & 0 deletions io/linereader/readerchunkstruncated/chunk-103
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
0x7c889fe22850 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x356b850) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
#31 NEW cov: 20865 ft: 29023 corp: 27/196Kb lim: 20000 exec/s: 0 rss: 2549Mb L: 3336/13275 MS: 1
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-104
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CustomCrossOver-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-105
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NEW_FUNC[1/24]:
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-106
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0x7c889e4838d0 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x1bcc8d0) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-107
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NEW_FUNC[2/24]: 0x7c889e4981c0 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x1be11c0) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-108
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#32 NEW cov: 20922 ft: 29111 corp: 28/204Kb lim: 20000
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-109
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
exec/s: 0 rss: 2551Mb L: 7431/13275 MS: 1 CustomCrossOver-
2 changes: 2 additions & 0 deletions io/linereader/readerchunkstruncated/chunk-11
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
INFO: Loaded 3 modules (1083633 inline 8-bit counters): 19597 [0x6047114dd4d0, 0x6047114e215d), 1021372 [0x7c88a335ec00, 0x7c88a34581bc), 42664 [0x7c889c7969b0, 0x7c889c7a1058),
INFO: Loaded 3 PC tables (1083633 PCs): 19597 [0x6047114e2160,0x60471152ea30),
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-110
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NEW_FUNC[1/55]:
2 changes: 2 additions & 0 deletions io/linereader/readerchunkstruncated/chunk-111
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
0x7c889f31e3f0 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x2a673f0) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
NEW_FUNC[2/55]:
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-112
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0x7c889f356c40 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x2a9fc40) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-113
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#33 NEW cov: 21034 ft: 29266 corp: 29
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-114
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/214Kb lim: 20000 exec/s: 0 rss: 2554Mb L: 10308/13275 MS: 1 Custom-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-115
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NEW_FUNC[1/14]:
2 changes: 2 additions & 0 deletions io/linereader/readerchunkstruncated/chunk-116
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
0x7c88a114fa60 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x4898a60) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
NEW_FUNC[2/14]:
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-117
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0x7c88a1180d30 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x48c9d30) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-118
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#34 NEW cov: 21079 ft: 29352 corp: 30/224Kb lim: 20000 exec/s: 0
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-119
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rss: 2555Mb L: 10110/13275 MS: 1 CustomCrossOver-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-12
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1021372 [0x7c88a34581c0,0x7c88a43edd80), 42664 [0x7c889c7a1058,0x7c889c847ad8),
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-120
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#35 NEW cov: 21080 ft: 29360 corp: 31/233Kb lim: 20000 exec/s: 0 rss: 2557Mb
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-121
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
L: 9431/13275 MS: 1 CustomCrossOver-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-122
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NEW_FUNC[1/438]:
2 changes: 2 additions & 0 deletions io/linereader/readerchunkstruncated/chunk-123
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
0x7c889e4826f0 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x1bcb6f0) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
NEW_FUNC[2/438]:
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-124
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0x7c889e482960 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x1bcb960) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-125
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#37 NEW cov: 22254 ft: 30990 corp: 32/243Kb lim: 20000 exec/s: 0 rss: 2567Mb
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-126
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
L: 10296/13275 MS: 1 Custom-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-127
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#38 NEW cov: 22254 ft: 31004 corp: 33/253Kb lim: 20000 exec/s: 0 rss: 2570Mb
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-128
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
L: 10477/13275 MS: 1 CustomCrossOver-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-129
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#39 NEW cov: 22256 ft: 31027 corp: 34/260Kb lim: 20000 exec/s: 0 rss: 2571Mb L: 6915/13275 MS: 2
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-13
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
INFO: 0 files found in /tmp/fuzzcorp/libFuzzer/sol_txn_diff-tgt_rvfruw8lACoPdDHqsnOfcQ/seeds/sol_txn_diff
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-130
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CopyPart-Custom-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-131
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#40 NEW cov: 22256 ft: 31042 corp: 35/269Kb lim: 20000 exec/s: 0 rss: 2574Mb
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-132
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
L: 9604/13275 MS: 3 ChangeBit-ChangeByte-Custom-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-133
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NEW_FUNC[1/2]:
2 changes: 2 additions & 0 deletions io/linereader/readerchunkstruncated/chunk-134
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
0x6047112bc270 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/target/fuzz_sol_txn+0x345270)
NEW_FUNC[2/2]: 0x6047112bc340 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/target/fuzz_sol_txn+0x345340)
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-135
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#41 NEW cov: 22311 ft: 32011 corp: 36
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-136
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/278Kb lim: 20000 exec/s: 0 rss: 2577Mb L: 9371/13275 MS: 2 ShuffleBytes-CustomCrossOver-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-137
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NEW_FUNC[1/7]:
2 changes: 2 additions & 0 deletions io/linereader/readerchunkstruncated/chunk-138
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
0x7c889fe3cc00 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x3585c00) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
NEW_FUNC[2/7]:
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-139
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0x7c889fe41000 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x358a000) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-14
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
INFO: A corpus is not provided, starting from an empty corpus
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-140
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#42 NEW cov: 22375 ft: 32130 corp: 37/289Kb lim: 20000 exec/s: 0 rss: 2581Mb L: 10461/13275 MS: 1 CustomCrossOver-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-141
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#43 NEW cov: 22376 ft: 32361 corp: 38/293Kb lim: 20000 exec/s: 0 rss: 2585Mb
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-142
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
L: 4067/13275 MS: 1 CustomCrossOver-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-143
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NEW_FUNC[1/2]:
2 changes: 2 additions & 0 deletions io/linereader/readerchunkstruncated/chunk-144
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
0x6047113003e0 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/target/fuzz_sol_txn+0x3893e0)
NEW_FUNC[2/2]:
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-145
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0x7c88a01c33e0 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x390c3e0) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-146
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#44 NEW cov: 22435
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-147
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ft: 32555 corp: 39/303Kb lim: 20000 exec/s: 0 rss: 2587Mb L: 11086/13275 MS: 1 CustomCrossOver-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-148
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#45 NEW cov: 22436 ft: 32765 corp: 40/306Kb lim: 20000 exec/s: 0 rss: 2589Mb L: 3069/13275 MS: 1
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-149
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CustomCrossOver-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-15
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#2 INITED cov: 34 ft: 35 corp: 1/1b exec/s: 0
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-150
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#46 NEW cov: 22437 ft: 32769 corp: 41/318Kb lim: 20000 exec/s: 0 rss: 2592Mb
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-151
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
L: 11581/13275 MS: 1 CustomCrossOver-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-152
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#47 NEW cov: 22440 ft: 32787 corp: 42/324Kb lim: 20000 exec/s: 0 rss: 2594Mb
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-153
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
L: 6714/13275 MS: 1 Custom-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-154
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#48 NEW cov: 22441 ft: 32790 corp: 43/331Kb lim: 20000 exec/s: 0 rss: 2597Mb L: 6787/13275
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-155
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
MS: 1 CustomCrossOver-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-156
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NEW_FUNC[1/64]:
2 changes: 2 additions & 0 deletions io/linereader/readerchunkstruncated/chunk-157
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
0x7c88a03ccf60 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x3b15f60) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
NEW_FUNC[2/64]:
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-158
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0x7c88a03d4cc0 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x3b1dcc0) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-159
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#49 NEW cov: 22688 ft: 33429 corp: 44/336Kb lim: 20000 exec/s: 49 rss: 2600Mb L: 5492/13275 MS: 2 CrossOver-Custom-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-16
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rss: 2447Mb
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-160
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#50 NEW cov: 22689 ft: 33444 corp: 45/347Kb lim: 20000 exec/s: 50
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-161
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rss: 2600Mb L: 10689/13275 MS: 1 CustomCrossOver-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-162
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#51 NEW cov: 22693 ft: 33456 corp: 46/352Kb lim: 20000 exec/s: 51 rss: 2600Mb L: 5791/13275 MS: 2 EraseBytes-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-163
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Custom-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-164
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#52 NEW cov: 22697 ft: 33486 corp: 47/360Kb lim: 20000 exec/s: 52 rss: 2600Mb
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-165
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
L: 7475/13275 MS: 2 ChangeByte-Custom-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-166
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#53 NEW cov: 22697 ft: 33498 corp: 48/372Kb lim: 20000 exec/s: 53 rss: 2600Mb
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-167
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
L: 13016/13275 MS: 1 CustomCrossOver-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-168
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#54 NEW cov: 22697 ft: 33508 corp: 49/375Kb lim: 20000 exec/s: 54 rss: 2600Mb
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-169
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
L: 2945/13275 MS: 2 InsertRepeatedBytes-Custom-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-17
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NEW_FUNC[1/6145]:
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-170
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NEW_FUNC[1/1]:
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-171
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0x60471130e7f0 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/target/fuzz_sol_txn+0x3977f0)
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-172
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#55 NEW cov: 22774 ft: 33635 corp: 50/380Kb lim: 20000 exec/s: 55 rss: 2600Mb L: 4999/13275 MS: 1 CustomCrossOver-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-173
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#56 NEW cov: 22775 ft: 33637 corp: 51/390Kb lim: 20000 exec/s: 56 rss: 2600Mb
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-174
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
L: 10459/13275 MS: 1 CustomCrossOver-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-175
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NEW_FUNC[1/9]:
2 changes: 2 additions & 0 deletions io/linereader/readerchunkstruncated/chunk-176
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
0x7c88a114c2c0 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x48952c0) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
NEW_FUNC[2/9]:
2 changes: 2 additions & 0 deletions io/linereader/readerchunkstruncated/chunk-177
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
0x7c88a1150740 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x4899740) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
#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"-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-178
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#58 NEW cov: 22794 ft: 33667 corp: 53/398Kb lim: 20000 exec/s: 58 rss: 2600Mb
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-179
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
L: 4111/13275 MS: 1 Custom-
2 changes: 2 additions & 0 deletions io/linereader/readerchunkstruncated/chunk-18
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
0x604711292b50 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/target/fuzz_sol_txn+0x31bb50)
NEW_FUNC[2/6145]:
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-180
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NEW_FUNC[1/3]:
2 changes: 2 additions & 0 deletions io/linereader/readerchunkstruncated/chunk-181
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
0x6047112bf360 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/target/fuzz_sol_txn+0x348360)
NEW_FUNC[2/3]: 0x6047112bf7a0 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/target/fuzz_sol_txn+0x3487a0)
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-182
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#59 NEW cov: 22834 ft: 33721 corp: 54/407Kb lim: 20000 exec/s: 59 rss: 2600Mb L: 8844/13275 MS: 1 CustomCrossOver-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-183
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NEW_FUNC[1/194]:
2 changes: 2 additions & 0 deletions io/linereader/readerchunkstruncated/chunk-184
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
0x60471130aa70 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/target/fuzz_sol_txn+0x393a70)
NEW_FUNC[2/194]: 0x60471130e260 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/target/fuzz_sol_txn+0x397260)
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-185
Original file line number Diff line number Diff line change
@@ -0,0 +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-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-186
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#61 NEW cov: 23255 ft: 34278 corp: 56/427Kb lim: 20000 exec/s: 61
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-187
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rss: 2600Mb L: 16903/16903 MS: 1 CustomCrossOver-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-188
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#62 NEW cov: 23256 ft: 34283 corp: 57/439Kb lim: 20000 exec/s: 62 rss: 2600Mb
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-189
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
L: 12226/16903 MS: 2 ChangeBinInt-CustomCrossOver-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-19
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0x604711295170 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/target/fuzz_sol_txn+0x31e170)
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-190
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NEW_FUNC[1/2]:
2 changes: 2 additions & 0 deletions io/linereader/readerchunkstruncated/chunk-191
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
0x7c889f5afc50 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x2cf8c50) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
NEW_FUNC[2/2]:
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-192
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0x7c889f603fc0 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x2d4cfc0) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-193
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#63 NEW cov: 23266 ft: 34314
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-194
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
corp: 58/450Kb lim: 20000 exec/s: 63 rss: 2600Mb L: 11484/16903 MS: 1 CustomCrossOver-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-195
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#64 NEW cov: 23266 ft: 34325 corp: 59/454Kb lim: 20000 exec/s: 64
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-196
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rss: 2600Mb L: 4414/16903 MS: 2 InsertByte-Custom-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-197
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NEW_FUNC[1/3]:
2 changes: 2 additions & 0 deletions io/linereader/readerchunkstruncated/chunk-198
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
0x7c889ff81ca0 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x36caca0) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
NEW_FUNC[2/3]:
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-199
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0x7c889ff948f0 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x36dd8f0) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-2
Original file line number Diff line number Diff line change
@@ -0,0 +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
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-20
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#4 NEW cov: 12734 ft: 12656 corp: 2/10912b lim: 20000 exec/s: 0 rss: 2457Mb L: 10911/10911 MS: 1
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-200
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#65 NEW cov: 23284 ft: 34425 corp: 60/462Kb lim: 20000 exec/s: 65 rss: 2600Mb L: 7378/16903 MS: 1 CustomCrossOver-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-201
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#66 NEW cov: 23285 ft: 34447 corp: 61/471Kb lim: 20000 exec/s: 66 rss: 2600Mb
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-202
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
L: 9706/16903 MS: 1 CustomCrossOver-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-203
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NEW_FUNC[1/2]:
2 changes: 2 additions & 0 deletions io/linereader/readerchunkstruncated/chunk-204
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
0x7c88a05bcaf0 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x3d05af0) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
NEW_FUNC[2/2]:
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-205
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0x7c88a05bcbc0 (/tmp/fuzzcorp-dl-cache/uLb1x50jkHHBmgweIO5aL9vkNGFxveWFAk4ULw/unpacked/lib/libsolfuzz_agave.so+0x3d05bc0) (BuildId: bd33607aa1c623f243804dff557a34df86a26961)
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-206
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#67 NEW cov: 23293 ft: 34540 corp: 62/485Kb lim: 20000 exec/s: 67
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-207
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rss: 2600Mb L: 13911/16903 MS: 1 Custom-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-208
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#68 NEW cov: 23293 ft: 34544 corp: 63/490Kb lim: 20000 exec/s: 68
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-209
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
rss: 2600Mb L: 5258/16903 MS: 1 CustomCrossOver-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-21
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CustomCrossOver-
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-210
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#69 NEW cov: 23293 ft: 34551 corp: 64/500Kb lim: 20000 exec/s: 69 rss: 2600Mb
1 change: 1 addition & 0 deletions io/linereader/readerchunkstruncated/chunk-211
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
L: 10140/16903 MS: 2 ChangeBit-Custom-
Loading

0 comments on commit 8695358

Please sign in to comment.