2017-02-28 18:11:24 -06:00
|
|
|
// Copyright 2017 The go-ethereum Authors
|
|
|
|
// This file is part of go-ethereum.
|
|
|
|
//
|
|
|
|
// go-ethereum is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// go-ethereum 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 General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2019-10-28 08:55:20 -05:00
|
|
|
"bytes"
|
cmd/evm, eth/tracers: refactor structlogger and make it streaming (#30806)
This PR refactors the structlog a bit, making it so that it can be used
in a streaming mode.
-------------
OBS: this PR makes a change in the input `config` config, the third
input-parem field to `debug.traceCall`. Previously, seteting it to e.g.
` {"enableMemory": true, "limit": 1024}` would mean that the response
was limited to `1024` items. Since an 'item' may include both memory and
storage, the actual size of the response was undertermined.
After this change, the response will be limited to `1024` __`bytes`__
(or thereabouts).
-----------
The commandline usage of structlog now uses the streaming mode, leaving
the non-streaming mode of operation for the eth_Call.
There are two benefits of streaming mode
1. Not have to maintain a long list of operations,
2. Not have to duplicate / n-plicate data, e.g. memory / stack /
returndata so that each entry has their own private slice.
---------
Co-authored-by: Gary Rong <garyrong0905@gmail.com>
2024-12-04 01:52:59 -06:00
|
|
|
"encoding/hex"
|
2017-06-07 10:09:08 -05:00
|
|
|
"encoding/json"
|
2017-02-28 18:11:24 -06:00
|
|
|
"fmt"
|
2022-05-16 04:59:35 -05:00
|
|
|
"io"
|
2018-04-26 03:30:23 -05:00
|
|
|
"math/big"
|
2017-02-28 18:11:24 -06:00
|
|
|
"os"
|
2018-04-26 03:30:23 -05:00
|
|
|
goruntime "runtime"
|
2024-10-31 12:26:02 -05:00
|
|
|
"slices"
|
2024-12-02 08:18:02 -06:00
|
|
|
"strings"
|
2019-12-18 02:43:18 -06:00
|
|
|
"testing"
|
2017-02-28 18:11:24 -06:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/cmd/utils"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2017-06-07 10:09:08 -05:00
|
|
|
"github.com/ethereum/go-ethereum/core"
|
2018-09-24 07:57:49 -05:00
|
|
|
"github.com/ethereum/go-ethereum/core/rawdb"
|
2017-02-28 18:11:24 -06:00
|
|
|
"github.com/ethereum/go-ethereum/core/state"
|
2024-03-22 12:53:53 -05:00
|
|
|
"github.com/ethereum/go-ethereum/core/tracing"
|
cmd/evm, eth/tracers: refactor structlogger and make it streaming (#30806)
This PR refactors the structlog a bit, making it so that it can be used
in a streaming mode.
-------------
OBS: this PR makes a change in the input `config` config, the third
input-parem field to `debug.traceCall`. Previously, seteting it to e.g.
` {"enableMemory": true, "limit": 1024}` would mean that the response
was limited to `1024` items. Since an 'item' may include both memory and
storage, the actual size of the response was undertermined.
After this change, the response will be limited to `1024` __`bytes`__
(or thereabouts).
-----------
The commandline usage of structlog now uses the streaming mode, leaving
the non-streaming mode of operation for the eth_Call.
There are two benefits of streaming mode
1. Not have to maintain a long list of operations,
2. Not have to duplicate / n-plicate data, e.g. memory / stack /
returndata so that each entry has their own private slice.
---------
Co-authored-by: Gary Rong <garyrong0905@gmail.com>
2024-12-04 01:52:59 -06:00
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
2017-02-28 18:11:24 -06:00
|
|
|
"github.com/ethereum/go-ethereum/core/vm"
|
|
|
|
"github.com/ethereum/go-ethereum/core/vm/runtime"
|
2022-06-27 11:22:36 -05:00
|
|
|
"github.com/ethereum/go-ethereum/internal/flags"
|
2017-06-07 10:09:08 -05:00
|
|
|
"github.com/ethereum/go-ethereum/params"
|
2024-02-13 07:49:53 -06:00
|
|
|
"github.com/ethereum/go-ethereum/triedb"
|
|
|
|
"github.com/ethereum/go-ethereum/triedb/hashdb"
|
2022-06-27 11:22:36 -05:00
|
|
|
"github.com/urfave/cli/v2"
|
2017-02-28 18:11:24 -06:00
|
|
|
)
|
|
|
|
|
2022-06-27 11:22:36 -05:00
|
|
|
var runCommand = &cli.Command{
|
2017-02-28 18:11:24 -06:00
|
|
|
Action: runCmd,
|
|
|
|
Name: "run",
|
2023-11-21 01:56:23 -06:00
|
|
|
Usage: "Run arbitrary evm binary",
|
2017-02-28 18:11:24 -06:00
|
|
|
ArgsUsage: "<code>",
|
|
|
|
Description: `The run command runs arbitrary EVM code.`,
|
2024-12-02 08:18:02 -06:00
|
|
|
Flags: slices.Concat([]cli.Flag{
|
|
|
|
BenchFlag,
|
|
|
|
CodeFileFlag,
|
|
|
|
CreateFlag,
|
|
|
|
GasFlag,
|
|
|
|
GenesisFlag,
|
|
|
|
InputFlag,
|
|
|
|
InputFileFlag,
|
|
|
|
PriceFlag,
|
|
|
|
ReceiverFlag,
|
|
|
|
SenderFlag,
|
|
|
|
ValueFlag,
|
|
|
|
StatDumpFlag,
|
2024-12-10 02:43:24 -06:00
|
|
|
DumpFlag,
|
2024-12-02 08:18:02 -06:00
|
|
|
}, traceFlags),
|
2017-02-28 18:11:24 -06:00
|
|
|
}
|
|
|
|
|
2024-12-02 08:18:02 -06:00
|
|
|
var (
|
|
|
|
CodeFileFlag = &cli.StringFlag{
|
|
|
|
Name: "codefile",
|
|
|
|
Usage: "File containing EVM code. If '-' is specified, code is read from stdin ",
|
|
|
|
Category: flags.VMCategory,
|
|
|
|
}
|
|
|
|
CreateFlag = &cli.BoolFlag{
|
|
|
|
Name: "create",
|
|
|
|
Usage: "Indicates the action should be create rather than call",
|
|
|
|
Category: flags.VMCategory,
|
|
|
|
}
|
|
|
|
GasFlag = &cli.Uint64Flag{
|
|
|
|
Name: "gas",
|
|
|
|
Usage: "Gas limit for the evm",
|
|
|
|
Value: 10000000000,
|
|
|
|
Category: flags.VMCategory,
|
|
|
|
}
|
|
|
|
GenesisFlag = &cli.StringFlag{
|
|
|
|
Name: "prestate",
|
|
|
|
Usage: "JSON file with prestate (genesis) config",
|
|
|
|
Category: flags.VMCategory,
|
|
|
|
}
|
|
|
|
InputFlag = &cli.StringFlag{
|
|
|
|
Name: "input",
|
|
|
|
Usage: "Input for the EVM",
|
|
|
|
Category: flags.VMCategory,
|
|
|
|
}
|
|
|
|
InputFileFlag = &cli.StringFlag{
|
|
|
|
Name: "inputfile",
|
|
|
|
Usage: "File containing input for the EVM",
|
|
|
|
Category: flags.VMCategory,
|
|
|
|
}
|
|
|
|
PriceFlag = &flags.BigFlag{
|
|
|
|
Name: "price",
|
|
|
|
Usage: "Price set for the evm",
|
|
|
|
Value: new(big.Int),
|
|
|
|
Category: flags.VMCategory,
|
|
|
|
}
|
|
|
|
ReceiverFlag = &cli.StringFlag{
|
|
|
|
Name: "receiver",
|
|
|
|
Usage: "The transaction receiver (execution context)",
|
|
|
|
Category: flags.VMCategory,
|
|
|
|
}
|
|
|
|
SenderFlag = &cli.StringFlag{
|
|
|
|
Name: "sender",
|
|
|
|
Usage: "The transaction origin",
|
|
|
|
Category: flags.VMCategory,
|
|
|
|
}
|
|
|
|
ValueFlag = &flags.BigFlag{
|
|
|
|
Name: "value",
|
|
|
|
Usage: "Value set for the evm",
|
|
|
|
Value: new(big.Int),
|
|
|
|
Category: flags.VMCategory,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2017-06-07 10:09:08 -05:00
|
|
|
// readGenesis will read the given JSON format genesis file and return
|
|
|
|
// the initialized Genesis structure
|
|
|
|
func readGenesis(genesisPath string) *core.Genesis {
|
|
|
|
// Make sure we have a valid genesis JSON
|
|
|
|
if len(genesisPath) == 0 {
|
|
|
|
utils.Fatalf("Must supply path to genesis JSON file")
|
|
|
|
}
|
|
|
|
file, err := os.Open(genesisPath)
|
|
|
|
if err != nil {
|
|
|
|
utils.Fatalf("Failed to read genesis file: %v", err)
|
|
|
|
}
|
|
|
|
defer file.Close()
|
|
|
|
|
|
|
|
genesis := new(core.Genesis)
|
|
|
|
if err := json.NewDecoder(file).Decode(genesis); err != nil {
|
|
|
|
utils.Fatalf("invalid genesis file: %v", err)
|
|
|
|
}
|
|
|
|
return genesis
|
|
|
|
}
|
|
|
|
|
2020-04-01 05:40:07 -05:00
|
|
|
type execStats struct {
|
2024-11-08 08:18:42 -06:00
|
|
|
Time time.Duration `json:"time"` // The execution Time.
|
|
|
|
Allocs int64 `json:"allocs"` // The number of heap allocations during execution.
|
|
|
|
BytesAllocated int64 `json:"bytesAllocated"` // The cumulative number of bytes allocated during execution.
|
|
|
|
GasUsed uint64 `json:"gasUsed"` // the amount of gas used during execution
|
2020-04-01 05:40:07 -05:00
|
|
|
}
|
2019-12-18 02:43:18 -06:00
|
|
|
|
2024-11-08 08:18:42 -06:00
|
|
|
func timedExec(bench bool, execFunc func() ([]byte, uint64, error)) ([]byte, execStats, error) {
|
2019-12-18 02:43:18 -06:00
|
|
|
if bench {
|
2024-11-26 09:12:38 -06:00
|
|
|
testing.Init()
|
2024-11-08 08:18:42 -06:00
|
|
|
// Do one warm-up run
|
|
|
|
output, gasUsed, err := execFunc()
|
2019-12-18 02:43:18 -06:00
|
|
|
result := testing.Benchmark(func(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
2024-11-08 08:18:42 -06:00
|
|
|
haveOutput, haveGasUsed, haveErr := execFunc()
|
|
|
|
if !bytes.Equal(haveOutput, output) {
|
2024-11-26 09:12:38 -06:00
|
|
|
panic(fmt.Sprintf("output differs\nhave %x\nwant %x\n", haveOutput, output))
|
2024-11-08 08:18:42 -06:00
|
|
|
}
|
|
|
|
if haveGasUsed != gasUsed {
|
2024-11-26 09:12:38 -06:00
|
|
|
panic(fmt.Sprintf("gas differs, have %v want %v", haveGasUsed, gasUsed))
|
2024-11-08 08:18:42 -06:00
|
|
|
}
|
|
|
|
if haveErr != err {
|
2024-11-26 09:12:38 -06:00
|
|
|
panic(fmt.Sprintf("err differs, have %v want %v", haveErr, err))
|
2024-11-08 08:18:42 -06:00
|
|
|
}
|
2019-12-18 02:43:18 -06:00
|
|
|
}
|
|
|
|
})
|
|
|
|
// Get the average execution time from the benchmarking result.
|
|
|
|
// There are other useful stats here that could be reported.
|
2024-11-08 08:18:42 -06:00
|
|
|
stats := execStats{
|
|
|
|
Time: time.Duration(result.NsPerOp()),
|
|
|
|
Allocs: result.AllocsPerOp(),
|
|
|
|
BytesAllocated: result.AllocedBytesPerOp(),
|
|
|
|
GasUsed: gasUsed,
|
|
|
|
}
|
|
|
|
return output, stats, err
|
2019-12-18 02:43:18 -06:00
|
|
|
}
|
2024-11-08 08:18:42 -06:00
|
|
|
var memStatsBefore, memStatsAfter goruntime.MemStats
|
|
|
|
goruntime.ReadMemStats(&memStatsBefore)
|
|
|
|
t0 := time.Now()
|
|
|
|
output, gasUsed, err := execFunc()
|
|
|
|
duration := time.Since(t0)
|
|
|
|
goruntime.ReadMemStats(&memStatsAfter)
|
|
|
|
stats := execStats{
|
|
|
|
Time: duration,
|
|
|
|
Allocs: int64(memStatsAfter.Mallocs - memStatsBefore.Mallocs),
|
|
|
|
BytesAllocated: int64(memStatsAfter.TotalAlloc - memStatsBefore.TotalAlloc),
|
|
|
|
GasUsed: gasUsed,
|
|
|
|
}
|
|
|
|
return output, stats, err
|
2019-12-18 02:43:18 -06:00
|
|
|
}
|
|
|
|
|
2017-02-28 18:11:24 -06:00
|
|
|
func runCmd(ctx *cli.Context) error {
|
|
|
|
var (
|
2024-03-22 12:53:53 -05:00
|
|
|
tracer *tracing.Hooks
|
2024-11-26 09:12:38 -06:00
|
|
|
prestate *state.StateDB
|
2023-09-19 06:41:16 -05:00
|
|
|
chainConfig *params.ChainConfig
|
|
|
|
sender = common.BytesToAddress([]byte("sender"))
|
|
|
|
receiver = common.BytesToAddress([]byte("receiver"))
|
|
|
|
preimages = ctx.Bool(DumpFlag.Name)
|
2023-10-02 04:49:29 -05:00
|
|
|
blobHashes []common.Hash // TODO (MariusVanDerWijden) implement blob hashes in state tests
|
|
|
|
blobBaseFee = new(big.Int) // TODO (MariusVanDerWijden) implement blob fee in state tests
|
2017-02-28 18:11:24 -06:00
|
|
|
)
|
2024-12-10 02:43:24 -06:00
|
|
|
tracer = tracerFromFlags(ctx)
|
2023-09-19 06:41:16 -05:00
|
|
|
initialGas := ctx.Uint64(GasFlag.Name)
|
|
|
|
genesisConfig := new(core.Genesis)
|
|
|
|
genesisConfig.GasLimit = initialGas
|
2022-06-27 11:22:36 -05:00
|
|
|
if ctx.String(GenesisFlag.Name) != "" {
|
2023-09-19 06:41:16 -05:00
|
|
|
genesisConfig = readGenesis(ctx.String(GenesisFlag.Name))
|
|
|
|
if genesisConfig.GasLimit != 0 {
|
|
|
|
initialGas = genesisConfig.GasLimit
|
|
|
|
}
|
2017-06-07 10:09:08 -05:00
|
|
|
} else {
|
2023-12-18 06:56:27 -06:00
|
|
|
genesisConfig.Config = params.AllDevChainProtocolChanges
|
2017-06-07 10:09:08 -05:00
|
|
|
}
|
2023-09-19 06:41:16 -05:00
|
|
|
|
|
|
|
db := rawdb.NewMemoryDatabase()
|
2024-02-13 07:49:53 -06:00
|
|
|
triedb := triedb.NewDatabase(db, &triedb.Config{
|
2023-09-19 06:41:16 -05:00
|
|
|
Preimages: preimages,
|
|
|
|
HashDB: hashdb.Defaults,
|
|
|
|
})
|
|
|
|
defer triedb.Close()
|
|
|
|
genesis := genesisConfig.MustCommit(db, triedb)
|
2024-09-05 05:10:47 -05:00
|
|
|
sdb := state.NewDatabase(triedb, nil)
|
2024-11-26 09:12:38 -06:00
|
|
|
prestate, _ = state.New(genesis.Root(), sdb)
|
2023-09-19 06:41:16 -05:00
|
|
|
chainConfig = genesisConfig.Config
|
|
|
|
|
2022-06-27 11:22:36 -05:00
|
|
|
if ctx.String(SenderFlag.Name) != "" {
|
|
|
|
sender = common.HexToAddress(ctx.String(SenderFlag.Name))
|
2017-06-07 10:09:08 -05:00
|
|
|
}
|
2017-02-28 18:11:24 -06:00
|
|
|
|
2022-06-27 11:22:36 -05:00
|
|
|
if ctx.String(ReceiverFlag.Name) != "" {
|
|
|
|
receiver = common.HexToAddress(ctx.String(ReceiverFlag.Name))
|
2017-08-15 04:31:36 -05:00
|
|
|
}
|
|
|
|
|
2019-12-18 02:43:18 -06:00
|
|
|
var code []byte
|
2022-06-27 11:22:36 -05:00
|
|
|
codeFileFlag := ctx.String(CodeFileFlag.Name)
|
2024-12-02 08:18:02 -06:00
|
|
|
hexcode := ctx.Args().First()
|
2019-06-25 03:03:04 -05:00
|
|
|
|
2024-12-02 08:18:02 -06:00
|
|
|
// The '--codefile' flag overrides code in state
|
|
|
|
if codeFileFlag == "-" {
|
|
|
|
// If - is specified, it means that code comes from stdin
|
|
|
|
// Try reading from stdin
|
|
|
|
input, err := io.ReadAll(os.Stdin)
|
2017-03-01 04:52:57 -06:00
|
|
|
if err != nil {
|
2024-12-02 08:18:02 -06:00
|
|
|
fmt.Printf("Could not load code from stdin: %v\n", err)
|
|
|
|
os.Exit(1)
|
2017-03-01 04:52:57 -06:00
|
|
|
}
|
2024-12-02 08:18:02 -06:00
|
|
|
hexcode = string(input)
|
|
|
|
} else if codeFileFlag != "" {
|
|
|
|
// Codefile with hex assembly
|
|
|
|
input, err := os.ReadFile(codeFileFlag)
|
2017-03-01 04:52:57 -06:00
|
|
|
if err != nil {
|
2024-12-02 08:18:02 -06:00
|
|
|
fmt.Printf("Could not load code from file: %v\n", err)
|
|
|
|
os.Exit(1)
|
2017-03-01 04:52:57 -06:00
|
|
|
}
|
2024-12-02 08:18:02 -06:00
|
|
|
hexcode = string(input)
|
2017-02-28 18:11:24 -06:00
|
|
|
}
|
2024-12-02 08:18:02 -06:00
|
|
|
|
|
|
|
hexcode = strings.TrimSpace(hexcode)
|
|
|
|
if len(hexcode)%2 != 0 {
|
|
|
|
fmt.Printf("Invalid input length for hex data (%d)\n", len(hexcode))
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
code = common.FromHex(hexcode)
|
|
|
|
|
2017-03-01 03:19:15 -06:00
|
|
|
runtimeConfig := runtime.Config{
|
2018-04-26 03:30:23 -05:00
|
|
|
Origin: sender,
|
2024-11-26 09:12:38 -06:00
|
|
|
State: prestate,
|
2018-04-26 03:30:23 -05:00
|
|
|
GasLimit: initialGas,
|
2022-06-27 11:22:36 -05:00
|
|
|
GasPrice: flags.GlobalBig(ctx, PriceFlag.Name),
|
|
|
|
Value: flags.GlobalBig(ctx, ValueFlag.Name),
|
2018-09-20 01:24:53 -05:00
|
|
|
Difficulty: genesisConfig.Difficulty,
|
2023-01-25 05:12:28 -06:00
|
|
|
Time: genesisConfig.Timestamp,
|
2018-09-20 01:24:53 -05:00
|
|
|
Coinbase: genesisConfig.Coinbase,
|
|
|
|
BlockNumber: new(big.Int).SetUint64(genesisConfig.Number),
|
2024-08-08 11:58:08 -05:00
|
|
|
BaseFee: genesisConfig.BaseFee,
|
2023-06-05 08:43:25 -05:00
|
|
|
BlobHashes: blobHashes,
|
2023-10-02 04:49:29 -05:00
|
|
|
BlobBaseFee: blobBaseFee,
|
2017-03-01 03:19:15 -06:00
|
|
|
EVMConfig: vm.Config{
|
2021-07-06 15:03:09 -05:00
|
|
|
Tracer: tracer,
|
2017-03-01 03:19:15 -06:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2017-06-07 10:09:08 -05:00
|
|
|
if chainConfig != nil {
|
|
|
|
runtimeConfig.ChainConfig = chainConfig
|
2019-09-13 15:32:20 -05:00
|
|
|
} else {
|
|
|
|
runtimeConfig.ChainConfig = params.AllEthashProtocolChanges
|
2017-06-07 10:09:08 -05:00
|
|
|
}
|
2019-12-18 02:43:18 -06:00
|
|
|
|
2019-11-17 08:45:54 -06:00
|
|
|
var hexInput []byte
|
2022-06-27 11:22:36 -05:00
|
|
|
if inputFileFlag := ctx.String(InputFileFlag.Name); inputFileFlag != "" {
|
2019-12-18 02:43:18 -06:00
|
|
|
var err error
|
2022-05-16 04:59:35 -05:00
|
|
|
if hexInput, err = os.ReadFile(inputFileFlag); err != nil {
|
2019-11-17 08:45:54 -06:00
|
|
|
fmt.Printf("could not load input from file: %v\n", err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
} else {
|
2022-06-27 11:22:36 -05:00
|
|
|
hexInput = []byte(ctx.String(InputFlag.Name))
|
2019-11-17 08:45:54 -06:00
|
|
|
}
|
2022-04-25 02:16:49 -05:00
|
|
|
hexInput = bytes.TrimSpace(hexInput)
|
|
|
|
if len(hexInput)%2 != 0 {
|
|
|
|
fmt.Println("input length must be even")
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
input := common.FromHex(string(hexInput))
|
2019-12-18 02:43:18 -06:00
|
|
|
|
|
|
|
var execFunc func() ([]byte, uint64, error)
|
2022-06-27 11:22:36 -05:00
|
|
|
if ctx.Bool(CreateFlag.Name) {
|
2019-11-17 08:45:54 -06:00
|
|
|
input = append(code, input...)
|
2019-12-18 02:43:18 -06:00
|
|
|
execFunc = func() ([]byte, uint64, error) {
|
2024-11-26 09:12:38 -06:00
|
|
|
// don't mutate the state!
|
|
|
|
runtimeConfig.State = prestate.Copy()
|
2019-12-18 02:43:18 -06:00
|
|
|
output, _, gasLeft, err := runtime.Create(input, &runtimeConfig)
|
|
|
|
return output, gasLeft, err
|
|
|
|
}
|
2017-02-28 18:11:24 -06:00
|
|
|
} else {
|
2017-08-15 04:31:36 -05:00
|
|
|
if len(code) > 0 {
|
2024-11-26 09:12:38 -06:00
|
|
|
prestate.SetCode(receiver, code)
|
2017-08-15 04:31:36 -05:00
|
|
|
}
|
2019-12-18 02:43:18 -06:00
|
|
|
execFunc = func() ([]byte, uint64, error) {
|
2024-11-26 09:12:38 -06:00
|
|
|
// don't mutate the state!
|
|
|
|
runtimeConfig.State = prestate.Copy()
|
2024-11-08 08:18:42 -06:00
|
|
|
output, gasLeft, err := runtime.Call(receiver, input, &runtimeConfig)
|
|
|
|
return output, initialGas - gasLeft, err
|
2019-12-18 02:43:18 -06:00
|
|
|
}
|
2017-02-28 18:11:24 -06:00
|
|
|
}
|
2019-12-18 02:43:18 -06:00
|
|
|
|
2022-06-27 11:22:36 -05:00
|
|
|
bench := ctx.Bool(BenchFlag.Name)
|
2024-11-08 08:18:42 -06:00
|
|
|
output, stats, err := timedExec(bench, execFunc)
|
2017-02-28 18:11:24 -06:00
|
|
|
|
2022-06-27 11:22:36 -05:00
|
|
|
if ctx.Bool(DumpFlag.Name) {
|
all: implement state history v2 (#30107)
This pull request delivers the new version of the state history, where
the raw storage key is used instead of the hash.
Before the cancun fork, it's supported by protocol to destruct a
specific account and therefore, all the storage slot owned by it should
be wiped in the same transition.
Technically, storage wiping should be performed through storage
iteration, and only the storage key hash will be available for traversal
if the state snapshot is not available. Therefore, the storage key hash
is chosen as the identifier in the old version state history.
Fortunately, account self-destruction has been deprecated by the
protocol since the Cancun fork, and there are no empty accounts eligible
for deletion under EIP-158. Therefore, we can conclude that no storage
wiping should occur after the Cancun fork. In this case, it makes no
sense to keep using hash.
Besides, another big reason for making this change is the current format
state history is unusable if verkle is activated. Verkle tree has a
different key derivation scheme (merkle uses keccak256), the preimage of
key hash must be provided in order to make verkle rollback functional.
This pull request is a prerequisite for landing verkle.
Additionally, the raw storage key is more human-friendly for those who
want to manually check the history, even though Solidity already
performs some hashing to derive the storage location.
---
This pull request doesn't bump the database version, as I believe the
database should still be compatible if users degrade from the new geth
version to old one, the only side effect is the persistent new version
state history will be unusable.
---------
Co-authored-by: Zsolt Felfoldi <zsfelfoldi@gmail.com>
2025-01-16 19:59:02 -06:00
|
|
|
root, err := runtimeConfig.State.Commit(genesisConfig.Number, true, false)
|
2024-04-02 07:25:06 -05:00
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("Failed to commit changes %v\n", err)
|
|
|
|
return err
|
|
|
|
}
|
2024-09-05 05:10:47 -05:00
|
|
|
dumpdb, err := state.New(root, sdb)
|
2024-04-02 07:25:06 -05:00
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("Failed to open statedb %v\n", err)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
fmt.Println(string(dumpdb.Dump(nil)))
|
2017-02-28 18:11:24 -06:00
|
|
|
}
|
2017-03-01 03:19:15 -06:00
|
|
|
|
2022-06-27 11:22:36 -05:00
|
|
|
if ctx.Bool(DebugFlag.Name) {
|
cmd/evm, eth/tracers: refactor structlogger and make it streaming (#30806)
This PR refactors the structlog a bit, making it so that it can be used
in a streaming mode.
-------------
OBS: this PR makes a change in the input `config` config, the third
input-parem field to `debug.traceCall`. Previously, seteting it to e.g.
` {"enableMemory": true, "limit": 1024}` would mean that the response
was limited to `1024` items. Since an 'item' may include both memory and
storage, the actual size of the response was undertermined.
After this change, the response will be limited to `1024` __`bytes`__
(or thereabouts).
-----------
The commandline usage of structlog now uses the streaming mode, leaving
the non-streaming mode of operation for the eth_Call.
There are two benefits of streaming mode
1. Not have to maintain a long list of operations,
2. Not have to duplicate / n-plicate data, e.g. memory / stack /
returndata so that each entry has their own private slice.
---------
Co-authored-by: Gary Rong <garyrong0905@gmail.com>
2024-12-04 01:52:59 -06:00
|
|
|
if logs := runtimeConfig.State.Logs(); len(logs) > 0 {
|
|
|
|
fmt.Fprintln(os.Stderr, "### LOGS")
|
|
|
|
writeLogs(os.Stderr, logs)
|
2017-06-07 10:09:08 -05:00
|
|
|
}
|
2017-05-23 02:34:04 -05:00
|
|
|
}
|
2017-02-28 18:11:24 -06:00
|
|
|
|
2022-06-27 11:22:36 -05:00
|
|
|
if bench || ctx.Bool(StatDumpFlag.Name) {
|
2020-04-01 05:40:07 -05:00
|
|
|
fmt.Fprintf(os.Stderr, `EVM gas used: %d
|
|
|
|
execution time: %v
|
|
|
|
allocations: %d
|
|
|
|
allocated bytes: %d
|
2024-11-08 08:18:42 -06:00
|
|
|
`, stats.GasUsed, stats.Time, stats.Allocs, stats.BytesAllocated)
|
2017-06-07 10:09:08 -05:00
|
|
|
}
|
2018-04-06 05:43:36 -05:00
|
|
|
if tracer == nil {
|
2022-07-04 03:03:32 -05:00
|
|
|
fmt.Printf("%#x\n", output)
|
2017-08-23 06:37:18 -05:00
|
|
|
if err != nil {
|
2018-08-01 11:09:08 -05:00
|
|
|
fmt.Printf(" error: %v\n", err)
|
2017-08-23 06:37:18 -05:00
|
|
|
}
|
2017-02-28 18:11:24 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
cmd/evm, eth/tracers: refactor structlogger and make it streaming (#30806)
This PR refactors the structlog a bit, making it so that it can be used
in a streaming mode.
-------------
OBS: this PR makes a change in the input `config` config, the third
input-parem field to `debug.traceCall`. Previously, seteting it to e.g.
` {"enableMemory": true, "limit": 1024}` would mean that the response
was limited to `1024` items. Since an 'item' may include both memory and
storage, the actual size of the response was undertermined.
After this change, the response will be limited to `1024` __`bytes`__
(or thereabouts).
-----------
The commandline usage of structlog now uses the streaming mode, leaving
the non-streaming mode of operation for the eth_Call.
There are two benefits of streaming mode
1. Not have to maintain a long list of operations,
2. Not have to duplicate / n-plicate data, e.g. memory / stack /
returndata so that each entry has their own private slice.
---------
Co-authored-by: Gary Rong <garyrong0905@gmail.com>
2024-12-04 01:52:59 -06:00
|
|
|
|
|
|
|
// writeLogs writes vm logs in a readable format to the given writer
|
|
|
|
func writeLogs(writer io.Writer, logs []*types.Log) {
|
|
|
|
for _, log := range logs {
|
|
|
|
fmt.Fprintf(writer, "LOG%d: %x bn=%d txi=%x\n", len(log.Topics), log.Address, log.BlockNumber, log.TxIndex)
|
|
|
|
|
|
|
|
for i, topic := range log.Topics {
|
|
|
|
fmt.Fprintf(writer, "%08d %x\n", i, topic)
|
|
|
|
}
|
|
|
|
fmt.Fprint(writer, hex.Dump(log.Data))
|
|
|
|
fmt.Fprintln(writer)
|
|
|
|
}
|
|
|
|
}
|