forked from XinFinOrg/XDPoSChain
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
crypto, tests: update fuzzers to native go fuzzing (ethereum#28352)
- Loading branch information
Showing
9 changed files
with
315 additions
and
147 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,143 @@ | ||
// Copyright 2019 The go-ethereum Authors | ||
// This file is part of the go-ethereum library. | ||
// | ||
// The go-ethereum library is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU Lesser General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
// | ||
// The go-ethereum library is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU Lesser General Public License for more details. | ||
// | ||
// You should have received a copy of the GNU Lesser General Public License | ||
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
package rlp | ||
|
||
import ( | ||
"bytes" | ||
"fmt" | ||
"math/big" | ||
|
||
"github.com/XinFinOrg/XDPoSChain/core/types" | ||
"github.com/XinFinOrg/XDPoSChain/rlp" | ||
"github.com/holiman/uint256" | ||
) | ||
|
||
func decodeEncode(input []byte, val interface{}, i int) { | ||
if err := rlp.DecodeBytes(input, val); err == nil { | ||
output, err := rlp.EncodeToBytes(val) | ||
if err != nil { | ||
panic(err) | ||
} | ||
if !bytes.Equal(input, output) { | ||
panic(fmt.Sprintf("case %d: encode-decode is not equal, \ninput : %x\noutput: %x", i, input, output)) | ||
} | ||
} | ||
} | ||
|
||
func fuzz(input []byte) int { | ||
if len(input) == 0 { | ||
return 0 | ||
} | ||
if len(input) > 500*1024 { | ||
return 0 | ||
} | ||
|
||
var i int | ||
{ | ||
rlp.Split(input) | ||
} | ||
{ | ||
if elems, _, err := rlp.SplitList(input); err == nil { | ||
rlp.CountValues(elems) | ||
} | ||
} | ||
|
||
{ | ||
rlp.NewStream(bytes.NewReader(input), 0).Decode(new(interface{})) | ||
} | ||
|
||
{ | ||
decodeEncode(input, new(interface{}), i) | ||
i++ | ||
} | ||
{ | ||
var v struct { | ||
Int uint | ||
String string | ||
Bytes []byte | ||
} | ||
decodeEncode(input, &v, i) | ||
i++ | ||
} | ||
|
||
{ | ||
type Types struct { | ||
Bool bool | ||
Raw rlp.RawValue | ||
Slice []*Types | ||
Iface []interface{} | ||
} | ||
var v Types | ||
decodeEncode(input, &v, i) | ||
i++ | ||
} | ||
{ | ||
type AllTypes struct { | ||
Int uint | ||
String string | ||
Bytes []byte | ||
Bool bool | ||
Raw rlp.RawValue | ||
Slice []*AllTypes | ||
Array [3]*AllTypes | ||
Iface []interface{} | ||
} | ||
var v AllTypes | ||
decodeEncode(input, &v, i) | ||
i++ | ||
} | ||
{ | ||
decodeEncode(input, [10]byte{}, i) | ||
i++ | ||
} | ||
{ | ||
var v struct { | ||
Byte [10]byte | ||
Rool [10]bool | ||
} | ||
decodeEncode(input, &v, i) | ||
i++ | ||
} | ||
{ | ||
var h types.Header | ||
decodeEncode(input, &h, i) | ||
i++ | ||
var b types.Block | ||
decodeEncode(input, &b, i) | ||
i++ | ||
var t types.Transaction | ||
decodeEncode(input, &t, i) | ||
i++ | ||
var txs types.Transactions | ||
decodeEncode(input, &txs, i) | ||
i++ | ||
var rs types.Receipts | ||
decodeEncode(input, &rs, i) | ||
} | ||
{ | ||
i++ | ||
var v struct { | ||
AnIntPtr *big.Int | ||
AnInt big.Int | ||
AnU256Ptr *uint256.Int | ||
AnU256 uint256.Int | ||
NotAnU256 [4]uint64 | ||
} | ||
decodeEncode(input, &v, i) | ||
} | ||
return 1 | ||
} |
Oops, something went wrong.