mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
core/types: add rlp-fuzzer
This commit is contained in:
parent
4ba891112e
commit
f786e6f4f4
7 changed files with 149 additions and 172 deletions
147
core/types/rlp_fuzzer_test.go
Normal file
147
core/types/rlp_fuzzer_test.go
Normal file
|
|
@ -0,0 +1,147 @@
|
||||||
|
// 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 types
|
||||||
|
|
||||||
|
import (
|
||||||
|
"bytes"
|
||||||
|
"fmt"
|
||||||
|
"math/big"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/ethereum/go-ethereum/rlp"
|
||||||
|
"github.com/holiman/uint256"
|
||||||
|
)
|
||||||
|
|
||||||
|
func decodeEncode(input []byte, val interface{}) error {
|
||||||
|
if err := rlp.DecodeBytes(input, val); err != nil {
|
||||||
|
// not valid rlp, nothing to do
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
// If it _were_ valid rlp, we can encode it again
|
||||||
|
output, err := rlp.EncodeToBytes(val)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
if !bytes.Equal(input, output) {
|
||||||
|
return fmt.Errorf("encode-decode is not equal, \ninput : %x\noutput: %x", input, output)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func FuzzRLP(f *testing.F) {
|
||||||
|
f.Fuzz(fuzzRlp)
|
||||||
|
}
|
||||||
|
|
||||||
|
func fuzzRlp(t *testing.T, input []byte) {
|
||||||
|
if len(input) == 0 || len(input) > 500*1024 {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
rlp.Split(input)
|
||||||
|
if elems, _, err := rlp.SplitList(input); err == nil {
|
||||||
|
rlp.CountValues(elems)
|
||||||
|
}
|
||||||
|
rlp.NewStream(bytes.NewReader(input), 0).Decode(new(interface{}))
|
||||||
|
if err := decodeEncode(input, new(interface{})); err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
{
|
||||||
|
var v struct {
|
||||||
|
Int uint
|
||||||
|
String string
|
||||||
|
Bytes []byte
|
||||||
|
}
|
||||||
|
if err := decodeEncode(input, &v); err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
type Types struct {
|
||||||
|
Bool bool
|
||||||
|
Raw rlp.RawValue
|
||||||
|
Slice []*Types
|
||||||
|
Iface []interface{}
|
||||||
|
}
|
||||||
|
var v Types
|
||||||
|
if err := decodeEncode(input, &v); err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
type AllTypes struct {
|
||||||
|
Int uint
|
||||||
|
String string
|
||||||
|
Bytes []byte
|
||||||
|
Bool bool
|
||||||
|
Raw rlp.RawValue
|
||||||
|
Slice []*AllTypes
|
||||||
|
Array [3]*AllTypes
|
||||||
|
Iface []interface{}
|
||||||
|
}
|
||||||
|
var v AllTypes
|
||||||
|
if err := decodeEncode(input, &v); err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
if err := decodeEncode(input, [10]byte{}); err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
var v struct {
|
||||||
|
Byte [10]byte
|
||||||
|
Rool [10]bool
|
||||||
|
}
|
||||||
|
if err := decodeEncode(input, &v); err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
var h Header
|
||||||
|
if err := decodeEncode(input, &h); err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
var b Block
|
||||||
|
if err := decodeEncode(input, &b); err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
var tx Transaction
|
||||||
|
if err := decodeEncode(input, &tx); err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
var txs Transactions
|
||||||
|
if err := decodeEncode(input, &txs); err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
var rs Receipts
|
||||||
|
if err := decodeEncode(input, &rs); err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
var v struct {
|
||||||
|
AnIntPtr *big.Int
|
||||||
|
AnInt big.Int
|
||||||
|
AnU256Ptr *uint256.Int
|
||||||
|
AnU256 uint256.Int
|
||||||
|
NotAnU256 [4]uint64
|
||||||
|
}
|
||||||
|
if err := decodeEncode(input, &v); err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -105,12 +105,13 @@ compile_fuzzer common/bitutil FuzzDecoder fuzzBitutilDecoder
|
||||||
compile_fuzzer core/vm/runtime FuzzVmRuntime fuzzVmRuntime
|
compile_fuzzer core/vm/runtime FuzzVmRuntime fuzzVmRuntime
|
||||||
compile_fuzzer core/vm FuzzPrecompiledContracts fuzzPrecompiledContracts
|
compile_fuzzer core/vm FuzzPrecompiledContracts fuzzPrecompiledContracts
|
||||||
|
|
||||||
|
compile_fuzzer core/types/ FuzzRLP fuzzRlp
|
||||||
|
|
||||||
compile_fuzzer tests/fuzzers/bn256 FuzzAdd fuzzBn256Add
|
compile_fuzzer tests/fuzzers/bn256 FuzzAdd fuzzBn256Add
|
||||||
compile_fuzzer tests/fuzzers/bn256 FuzzMul fuzzBn256Mul
|
compile_fuzzer tests/fuzzers/bn256 FuzzMul fuzzBn256Mul
|
||||||
compile_fuzzer tests/fuzzers/bn256 FuzzPair fuzzBn256Pair
|
compile_fuzzer tests/fuzzers/bn256 FuzzPair fuzzBn256Pair
|
||||||
compile_fuzzer tests/fuzzers/keystore Fuzz fuzzKeystore
|
compile_fuzzer tests/fuzzers/keystore Fuzz fuzzKeystore
|
||||||
compile_fuzzer tests/fuzzers/txfetcher Fuzz fuzzTxfetcher
|
compile_fuzzer tests/fuzzers/txfetcher Fuzz fuzzTxfetcher
|
||||||
compile_fuzzer tests/fuzzers/rlp Fuzz fuzzRlp
|
|
||||||
compile_fuzzer tests/fuzzers/trie Fuzz fuzzTrie
|
compile_fuzzer tests/fuzzers/trie Fuzz fuzzTrie
|
||||||
compile_fuzzer tests/fuzzers/stacktrie Fuzz fuzzStackTrie
|
compile_fuzzer tests/fuzzers/stacktrie Fuzz fuzzStackTrie
|
||||||
compile_fuzzer tests/fuzzers/difficulty Fuzz fuzzDifficulty
|
compile_fuzzer tests/fuzzers/difficulty Fuzz fuzzDifficulty
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -1 +0,0 @@
|
||||||
Ë€€€À€ÀÃÀÀÀÀ
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
øNƒ“à€€€‚
|
|
||||||
• <EFBFBD>aùËåÀP?-'´{ÏЋD<>Y¯<1E>³fÆj\ÿE÷ ~ì<>•ÒçF?1(íij6<6A>@Év±LÀÝÚ‘‘
|
|
||||||
|
|
@ -1,143 +0,0 @@
|
||||||
// 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/ethereum/go-ethereum/core/types"
|
|
||||||
"github.com/ethereum/go-ethereum/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
|
|
||||||
}
|
|
||||||
|
|
@ -1,25 +0,0 @@
|
||||||
// Copyright 2023 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 "testing"
|
|
||||||
|
|
||||||
func Fuzz(f *testing.F) {
|
|
||||||
f.Fuzz(func(t *testing.T, data []byte) {
|
|
||||||
fuzz(data)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
Loading…
Reference in a new issue