2015-07-07 00:54:22 +00:00
|
|
|
// Copyright 2015 The go-ethereum Authors
|
2015-07-22 16:48:40 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
2015-07-07 00:54:22 +00:00
|
|
|
//
|
2015-07-23 16:35:11 +00:00
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
2015-07-07 00:54:22 +00:00
|
|
|
// 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.
|
|
|
|
//
|
2015-07-22 16:48:40 +00:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2015-07-07 00:54:22 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-07-22 16:48:40 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-07 00:54:22 +00:00
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
2015-07-22 16:48:40 +00:00
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
2015-07-07 00:54:22 +00:00
|
|
|
|
2015-06-10 17:56:40 +00:00
|
|
|
package vm
|
2015-06-10 10:23:49 +00:00
|
|
|
|
|
|
|
import (
|
2017-03-01 00:11:24 +00:00
|
|
|
"encoding/hex"
|
2015-06-10 10:23:49 +00:00
|
|
|
"fmt"
|
2017-03-01 09:19:15 +00:00
|
|
|
"io"
|
2016-02-03 22:46:27 +00:00
|
|
|
"math/big"
|
2020-06-02 10:30:16 +00:00
|
|
|
"strings"
|
2017-06-07 15:09:08 +00:00
|
|
|
"time"
|
2015-06-10 10:23:49 +00:00
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2017-06-07 15:09:08 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common/hexutil"
|
2017-02-28 14:09:11 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common/math"
|
2017-03-01 09:19:15 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
2020-10-23 06:26:57 +00:00
|
|
|
"github.com/ethereum/go-ethereum/params"
|
2021-07-01 07:15:04 +00:00
|
|
|
"github.com/holiman/uint256"
|
2015-06-10 10:23:49 +00:00
|
|
|
)
|
|
|
|
|
2018-06-26 12:56:25 +00:00
|
|
|
// Storage represents a contract's storage.
|
2016-02-03 22:46:27 +00:00
|
|
|
type Storage map[common.Hash]common.Hash
|
|
|
|
|
2018-06-26 12:56:25 +00:00
|
|
|
// Copy duplicates the current storage.
|
2018-05-02 08:27:59 +00:00
|
|
|
func (s Storage) Copy() Storage {
|
2016-02-03 22:46:27 +00:00
|
|
|
cpy := make(Storage)
|
2018-05-02 08:27:59 +00:00
|
|
|
for key, value := range s {
|
2016-02-03 22:46:27 +00:00
|
|
|
cpy[key] = value
|
|
|
|
}
|
|
|
|
return cpy
|
|
|
|
}
|
|
|
|
|
|
|
|
// LogConfig are the configuration options for structured logger the EVM
|
|
|
|
type LogConfig struct {
|
2021-09-13 16:59:52 +00:00
|
|
|
EnableMemory bool // enable memory capture
|
|
|
|
DisableStack bool // disable stack capture
|
|
|
|
DisableStorage bool // disable storage capture
|
|
|
|
EnableReturnData bool // enable return data capture
|
|
|
|
Debug bool // print output during capture end
|
|
|
|
Limit int // maximum length of output, but zero means unlimited
|
2020-10-23 06:26:57 +00:00
|
|
|
// Chain overrides, can be used to execute a trace using future fork rules
|
|
|
|
Overrides *params.ChainConfig `json:"overrides,omitempty"`
|
2016-02-03 22:46:27 +00:00
|
|
|
}
|
|
|
|
|
2017-06-07 15:09:08 +00:00
|
|
|
//go:generate gencodec -type StructLog -field-override structLogMarshaling -out gen_structlog.go
|
|
|
|
|
2017-01-05 10:52:10 +00:00
|
|
|
// StructLog is emitted to the EVM each cycle and lists information about the current internal state
|
2016-02-03 22:46:27 +00:00
|
|
|
// prior to the execution of the statement.
|
|
|
|
type StructLog struct {
|
2018-10-23 14:28:18 +00:00
|
|
|
Pc uint64 `json:"pc"`
|
|
|
|
Op OpCode `json:"op"`
|
|
|
|
Gas uint64 `json:"gas"`
|
|
|
|
GasCost uint64 `json:"gasCost"`
|
|
|
|
Memory []byte `json:"memory"`
|
|
|
|
MemorySize int `json:"memSize"`
|
2021-07-01 07:15:04 +00:00
|
|
|
Stack []uint256.Int `json:"stack"`
|
2020-07-16 12:06:19 +00:00
|
|
|
ReturnData []byte `json:"returnData"`
|
2018-10-23 14:28:18 +00:00
|
|
|
Storage map[common.Hash]common.Hash `json:"-"`
|
|
|
|
Depth int `json:"depth"`
|
|
|
|
RefundCounter uint64 `json:"refund"`
|
|
|
|
Err error `json:"-"`
|
2017-06-07 15:09:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// overrides for gencodec
|
|
|
|
type structLogMarshaling struct {
|
2018-01-08 12:15:57 +00:00
|
|
|
Gas math.HexOrDecimal64
|
|
|
|
GasCost math.HexOrDecimal64
|
|
|
|
Memory hexutil.Bytes
|
2020-10-16 09:28:03 +00:00
|
|
|
ReturnData hexutil.Bytes
|
2018-01-08 12:15:57 +00:00
|
|
|
OpName string `json:"opName"` // adds call to OpName() in MarshalJSON
|
|
|
|
ErrorString string `json:"error"` // adds call to ErrorString() in MarshalJSON
|
2017-06-07 15:09:08 +00:00
|
|
|
}
|
|
|
|
|
2018-06-26 12:56:25 +00:00
|
|
|
// OpName formats the operand name in a human-readable format.
|
2017-06-07 15:09:08 +00:00
|
|
|
func (s *StructLog) OpName() string {
|
|
|
|
return s.Op.String()
|
|
|
|
}
|
|
|
|
|
2018-06-26 12:56:25 +00:00
|
|
|
// ErrorString formats the log's error as a string.
|
2018-01-08 12:15:57 +00:00
|
|
|
func (s *StructLog) ErrorString() string {
|
|
|
|
if s.Err != nil {
|
|
|
|
return s.Err.Error()
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2021-11-05 10:48:21 +00:00
|
|
|
// EVMLogger is used to collect execution traces from an EVM transaction
|
2016-08-19 14:19:51 +00:00
|
|
|
// execution. CaptureState is called for each step of the VM with the
|
|
|
|
// current VM state.
|
|
|
|
// Note that reference types are actual VM data structures; make copies
|
|
|
|
// if you need to retain them beyond the current call.
|
2021-11-05 10:48:21 +00:00
|
|
|
type EVMLogger interface {
|
2021-03-25 09:13:14 +00:00
|
|
|
CaptureStart(env *EVM, from common.Address, to common.Address, create bool, input []byte, gas uint64, value *big.Int)
|
|
|
|
CaptureState(env *EVM, pc uint64, op OpCode, gas, cost uint64, scope *ScopeContext, rData []byte, depth int, err error)
|
core,eth: call frame tracing (#23087)
This change introduces 2 new optional methods; `enter()` and `exit()` for js tracers, and makes `step()` optiona. The two new methods are invoked when entering and exiting a call frame (but not invoked for the outermost scope, which has it's own methods). Currently these are the data fields passed to each of them:
enter: type (opcode), from, to, input, gas, value
exit: output, gasUsed, error
The PR also comes with a re-write of the callTracer. As a backup we keep the previous tracing script under the name `callTracerLegacy`. Behaviour of both tracers are equivalent for the most part, although there are some small differences (improvements), where the new tracer is more correct / has more information.
2021-09-17 07:31:22 +00:00
|
|
|
CaptureEnter(typ OpCode, from common.Address, to common.Address, input []byte, gas uint64, value *big.Int)
|
|
|
|
CaptureExit(output []byte, gasUsed uint64, err error)
|
2021-03-25 09:13:14 +00:00
|
|
|
CaptureFault(env *EVM, pc uint64, op OpCode, gas, cost uint64, scope *ScopeContext, depth int, err error)
|
|
|
|
CaptureEnd(output []byte, gasUsed uint64, t time.Duration, err error)
|
2016-08-19 14:19:51 +00:00
|
|
|
}
|
|
|
|
|
2021-11-05 10:48:21 +00:00
|
|
|
// StructLogger is an EVM state logger and implements EVMLogger.
|
2016-02-03 22:46:27 +00:00
|
|
|
//
|
2016-08-19 14:19:51 +00:00
|
|
|
// StructLogger can capture state based on the given Log configuration and also keeps
|
2016-02-03 22:46:27 +00:00
|
|
|
// a track record of modified storage which is used in reporting snapshots of the
|
|
|
|
// contract their storage.
|
2016-08-19 14:19:51 +00:00
|
|
|
type StructLogger struct {
|
2016-02-03 22:46:27 +00:00
|
|
|
cfg LogConfig
|
|
|
|
|
2020-06-10 09:46:13 +00:00
|
|
|
storage map[common.Address]Storage
|
|
|
|
logs []StructLog
|
|
|
|
output []byte
|
|
|
|
err error
|
2016-02-03 22:46:27 +00:00
|
|
|
}
|
|
|
|
|
2017-06-07 15:09:08 +00:00
|
|
|
// NewStructLogger returns a new logger
|
2016-08-19 14:19:51 +00:00
|
|
|
func NewStructLogger(cfg *LogConfig) *StructLogger {
|
|
|
|
logger := &StructLogger{
|
2020-06-10 09:46:13 +00:00
|
|
|
storage: make(map[common.Address]Storage),
|
2016-02-03 22:46:27 +00:00
|
|
|
}
|
2016-08-19 14:19:51 +00:00
|
|
|
if cfg != nil {
|
|
|
|
logger.cfg = *cfg
|
|
|
|
}
|
|
|
|
return logger
|
2016-02-03 22:46:27 +00:00
|
|
|
}
|
|
|
|
|
2021-07-01 07:15:04 +00:00
|
|
|
// Reset clears the data held by the logger.
|
|
|
|
func (l *StructLogger) Reset() {
|
|
|
|
l.storage = make(map[common.Address]Storage)
|
|
|
|
l.output = make([]byte, 0)
|
|
|
|
l.logs = l.logs[:0]
|
|
|
|
l.err = nil
|
|
|
|
}
|
|
|
|
|
2021-11-05 10:48:21 +00:00
|
|
|
// CaptureStart implements the EVMLogger interface to initialize the tracing operation.
|
2021-03-25 09:13:14 +00:00
|
|
|
func (l *StructLogger) CaptureStart(env *EVM, from common.Address, to common.Address, create bool, input []byte, gas uint64, value *big.Int) {
|
cmd, core, eth/tracers: support fancier js tracing (#15516)
* cmd, core, eth/tracers: support fancier js tracing
* eth, internal/web3ext: rework trace API, concurrency, chain tracing
* eth/tracers: add three more JavaScript tracers
* eth/tracers, vendor: swap ottovm to duktape for tracing
* core, eth, internal: finalize call tracer and needed extras
* eth, tests: prestate tracer, call test suite, rewinding
* vendor: fix windows builds for tracer js engine
* vendor: temporary duktape fix
* eth/tracers: fix up 4byte and evmdis tracer
* vendor: pull in latest duktape with my upstream fixes
* eth: fix some review comments
* eth: rename rewind to reexec to make it more obvious
* core/vm: terminate tracing using defers
2017-12-21 11:56:11 +00:00
|
|
|
}
|
|
|
|
|
2017-06-07 15:09:08 +00:00
|
|
|
// CaptureState logs a new structured log message and pushes it out to the environment
|
2016-02-03 22:46:27 +00:00
|
|
|
//
|
2020-06-10 09:46:13 +00:00
|
|
|
// CaptureState also tracks SLOAD/SSTORE ops to track storage change.
|
2021-03-25 09:13:14 +00:00
|
|
|
func (l *StructLogger) CaptureState(env *EVM, pc uint64, op OpCode, gas, cost uint64, scope *ScopeContext, rData []byte, depth int, err error) {
|
|
|
|
memory := scope.Memory
|
|
|
|
stack := scope.Stack
|
|
|
|
contract := scope.Contract
|
2016-09-30 10:22:42 +00:00
|
|
|
// check if already accumulated the specified number of logs
|
|
|
|
if l.cfg.Limit != 0 && l.cfg.Limit <= len(l.logs) {
|
2021-03-25 09:13:14 +00:00
|
|
|
return
|
2016-09-30 10:22:42 +00:00
|
|
|
}
|
2019-04-04 10:30:10 +00:00
|
|
|
// Copy a snapshot of the current memory state to a new buffer
|
2016-02-03 22:46:27 +00:00
|
|
|
var mem []byte
|
2021-09-13 16:59:52 +00:00
|
|
|
if l.cfg.EnableMemory {
|
2016-02-03 22:46:27 +00:00
|
|
|
mem = make([]byte, len(memory.Data()))
|
|
|
|
copy(mem, memory.Data())
|
|
|
|
}
|
2017-11-16 16:53:18 +00:00
|
|
|
// Copy a snapshot of the current stack state to a new buffer
|
2021-07-01 07:15:04 +00:00
|
|
|
var stck []uint256.Int
|
2016-02-03 22:46:27 +00:00
|
|
|
if !l.cfg.DisableStack {
|
2021-07-01 07:15:04 +00:00
|
|
|
stck = make([]uint256.Int, len(stack.Data()))
|
2016-02-03 22:46:27 +00:00
|
|
|
for i, item := range stack.Data() {
|
2021-07-01 07:15:04 +00:00
|
|
|
stck[i] = item
|
2016-02-03 22:46:27 +00:00
|
|
|
}
|
|
|
|
}
|
2020-06-10 09:46:13 +00:00
|
|
|
// Copy a snapshot of the current storage to a new container
|
|
|
|
var storage Storage
|
2021-07-01 07:15:04 +00:00
|
|
|
if !l.cfg.DisableStorage && (op == SLOAD || op == SSTORE) {
|
2020-06-10 09:46:13 +00:00
|
|
|
// initialise new changed values storage container for this contract
|
|
|
|
// if not present.
|
|
|
|
if l.storage[contract.Address()] == nil {
|
|
|
|
l.storage[contract.Address()] = make(Storage)
|
|
|
|
}
|
|
|
|
// capture SLOAD opcodes and record the read entry in the local storage
|
|
|
|
if op == SLOAD && stack.len() >= 1 {
|
|
|
|
var (
|
|
|
|
address = common.Hash(stack.data[stack.len()-1].Bytes32())
|
|
|
|
value = env.StateDB.GetState(contract.Address(), address)
|
|
|
|
)
|
|
|
|
l.storage[contract.Address()][address] = value
|
2021-07-01 07:15:04 +00:00
|
|
|
storage = l.storage[contract.Address()].Copy()
|
|
|
|
} else if op == SSTORE && stack.len() >= 2 {
|
|
|
|
// capture SSTORE opcodes and record the written entry in the local storage.
|
2020-06-10 09:46:13 +00:00
|
|
|
var (
|
|
|
|
value = common.Hash(stack.data[stack.len()-2].Bytes32())
|
|
|
|
address = common.Hash(stack.data[stack.len()-1].Bytes32())
|
|
|
|
)
|
|
|
|
l.storage[contract.Address()][address] = value
|
2021-07-01 07:15:04 +00:00
|
|
|
storage = l.storage[contract.Address()].Copy()
|
2020-06-10 09:46:13 +00:00
|
|
|
}
|
|
|
|
}
|
2020-07-16 12:06:19 +00:00
|
|
|
var rdata []byte
|
2021-09-13 16:59:52 +00:00
|
|
|
if l.cfg.EnableReturnData {
|
2020-07-16 12:06:19 +00:00
|
|
|
rdata = make([]byte, len(rData))
|
|
|
|
copy(rdata, rData)
|
|
|
|
}
|
2019-04-04 10:30:10 +00:00
|
|
|
// create a new snapshot of the EVM.
|
2021-03-02 21:40:57 +00:00
|
|
|
log := StructLog{pc, op, gas, cost, mem, memory.Len(), stck, rdata, storage, depth, env.StateDB.GetRefund(), err}
|
2016-08-19 14:19:51 +00:00
|
|
|
l.logs = append(l.logs, log)
|
|
|
|
}
|
|
|
|
|
2021-11-05 10:48:21 +00:00
|
|
|
// CaptureFault implements the EVMLogger interface to trace an execution fault
|
2018-06-26 12:56:25 +00:00
|
|
|
// while running an opcode.
|
2021-03-25 09:13:14 +00:00
|
|
|
func (l *StructLogger) CaptureFault(env *EVM, pc uint64, op OpCode, gas, cost uint64, scope *ScopeContext, depth int, err error) {
|
cmd, core, eth/tracers: support fancier js tracing (#15516)
* cmd, core, eth/tracers: support fancier js tracing
* eth, internal/web3ext: rework trace API, concurrency, chain tracing
* eth/tracers: add three more JavaScript tracers
* eth/tracers, vendor: swap ottovm to duktape for tracing
* core, eth, internal: finalize call tracer and needed extras
* eth, tests: prestate tracer, call test suite, rewinding
* vendor: fix windows builds for tracer js engine
* vendor: temporary duktape fix
* eth/tracers: fix up 4byte and evmdis tracer
* vendor: pull in latest duktape with my upstream fixes
* eth: fix some review comments
* eth: rename rewind to reexec to make it more obvious
* core/vm: terminate tracing using defers
2017-12-21 11:56:11 +00:00
|
|
|
}
|
|
|
|
|
2018-06-26 12:56:25 +00:00
|
|
|
// CaptureEnd is called after the call finishes to finalize the tracing.
|
2021-03-25 09:13:14 +00:00
|
|
|
func (l *StructLogger) CaptureEnd(output []byte, gasUsed uint64, t time.Duration, err error) {
|
2018-01-04 12:18:30 +00:00
|
|
|
l.output = output
|
|
|
|
l.err = err
|
2018-04-06 10:43:36 +00:00
|
|
|
if l.cfg.Debug {
|
|
|
|
fmt.Printf("0x%x\n", output)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf(" error: %v\n", err)
|
|
|
|
}
|
|
|
|
}
|
2017-06-07 15:09:08 +00:00
|
|
|
}
|
|
|
|
|
core,eth: call frame tracing (#23087)
This change introduces 2 new optional methods; `enter()` and `exit()` for js tracers, and makes `step()` optiona. The two new methods are invoked when entering and exiting a call frame (but not invoked for the outermost scope, which has it's own methods). Currently these are the data fields passed to each of them:
enter: type (opcode), from, to, input, gas, value
exit: output, gasUsed, error
The PR also comes with a re-write of the callTracer. As a backup we keep the previous tracing script under the name `callTracerLegacy`. Behaviour of both tracers are equivalent for the most part, although there are some small differences (improvements), where the new tracer is more correct / has more information.
2021-09-17 07:31:22 +00:00
|
|
|
func (l *StructLogger) CaptureEnter(typ OpCode, from common.Address, to common.Address, input []byte, gas uint64, value *big.Int) {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l *StructLogger) CaptureExit(output []byte, gasUsed uint64, err error) {}
|
|
|
|
|
2018-01-04 12:18:30 +00:00
|
|
|
// StructLogs returns the captured log entries.
|
|
|
|
func (l *StructLogger) StructLogs() []StructLog { return l.logs }
|
|
|
|
|
|
|
|
// Error returns the VM error captured by the trace.
|
|
|
|
func (l *StructLogger) Error() error { return l.err }
|
|
|
|
|
|
|
|
// Output returns the VM return value captured by the trace.
|
|
|
|
func (l *StructLogger) Output() []byte { return l.output }
|
2016-02-03 22:46:27 +00:00
|
|
|
|
2017-03-01 09:19:15 +00:00
|
|
|
// WriteTrace writes a formatted trace to the given writer
|
|
|
|
func WriteTrace(writer io.Writer, logs []StructLog) {
|
2015-06-10 10:23:49 +00:00
|
|
|
for _, log := range logs {
|
2017-07-19 12:32:45 +00:00
|
|
|
fmt.Fprintf(writer, "%-16spc=%08d gas=%v cost=%v", log.Op, log.Pc, log.Gas, log.GasCost)
|
2015-06-12 11:35:14 +00:00
|
|
|
if log.Err != nil {
|
2017-03-01 09:19:15 +00:00
|
|
|
fmt.Fprintf(writer, " ERROR: %v", log.Err)
|
2015-06-12 11:35:14 +00:00
|
|
|
}
|
2017-07-19 12:32:45 +00:00
|
|
|
fmt.Fprintln(writer)
|
2015-06-10 19:08:54 +00:00
|
|
|
|
2017-07-19 12:32:45 +00:00
|
|
|
if len(log.Stack) > 0 {
|
|
|
|
fmt.Fprintln(writer, "Stack:")
|
|
|
|
for i := len(log.Stack) - 1; i >= 0; i-- {
|
2021-07-01 07:15:04 +00:00
|
|
|
fmt.Fprintf(writer, "%08d %s\n", len(log.Stack)-i-1, log.Stack[i].Hex())
|
2017-07-19 12:32:45 +00:00
|
|
|
}
|
2015-06-10 10:23:49 +00:00
|
|
|
}
|
2017-07-19 12:32:45 +00:00
|
|
|
if len(log.Memory) > 0 {
|
|
|
|
fmt.Fprintln(writer, "Memory:")
|
|
|
|
fmt.Fprint(writer, hex.Dump(log.Memory))
|
|
|
|
}
|
|
|
|
if len(log.Storage) > 0 {
|
|
|
|
fmt.Fprintln(writer, "Storage:")
|
|
|
|
for h, item := range log.Storage {
|
|
|
|
fmt.Fprintf(writer, "%x: %x\n", h, item)
|
|
|
|
}
|
2017-03-01 09:19:15 +00:00
|
|
|
}
|
2020-07-16 12:06:19 +00:00
|
|
|
if len(log.ReturnData) > 0 {
|
|
|
|
fmt.Fprintln(writer, "ReturnData:")
|
|
|
|
fmt.Fprint(writer, hex.Dump(log.ReturnData))
|
|
|
|
}
|
2017-03-01 09:19:15 +00:00
|
|
|
fmt.Fprintln(writer)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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)
|
2015-06-10 10:57:37 +00:00
|
|
|
}
|
2017-03-01 09:19:15 +00:00
|
|
|
|
|
|
|
fmt.Fprint(writer, hex.Dump(log.Data))
|
|
|
|
fmt.Fprintln(writer)
|
2015-06-10 10:23:49 +00:00
|
|
|
}
|
|
|
|
}
|
2020-06-02 10:30:16 +00:00
|
|
|
|
|
|
|
type mdLogger struct {
|
|
|
|
out io.Writer
|
|
|
|
cfg *LogConfig
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewMarkdownLogger creates a logger which outputs information in a format adapted
|
|
|
|
// for human readability, and is also a valid markdown table
|
|
|
|
func NewMarkdownLogger(cfg *LogConfig, writer io.Writer) *mdLogger {
|
|
|
|
l := &mdLogger{writer, cfg}
|
|
|
|
if l.cfg == nil {
|
|
|
|
l.cfg = &LogConfig{}
|
|
|
|
}
|
|
|
|
return l
|
|
|
|
}
|
|
|
|
|
2021-03-25 09:13:14 +00:00
|
|
|
func (t *mdLogger) CaptureStart(env *EVM, from common.Address, to common.Address, create bool, input []byte, gas uint64, value *big.Int) {
|
2020-06-02 10:30:16 +00:00
|
|
|
if !create {
|
|
|
|
fmt.Fprintf(t.out, "From: `%v`\nTo: `%v`\nData: `0x%x`\nGas: `%d`\nValue `%v` wei\n",
|
|
|
|
from.String(), to.String(),
|
|
|
|
input, gas, value)
|
|
|
|
} else {
|
|
|
|
fmt.Fprintf(t.out, "From: `%v`\nCreate at: `%v`\nData: `0x%x`\nGas: `%d`\nValue `%v` wei\n",
|
|
|
|
from.String(), to.String(),
|
|
|
|
input, gas, value)
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Fprintf(t.out, `
|
2020-10-23 06:26:57 +00:00
|
|
|
| Pc | Op | Cost | Stack | RStack | Refund |
|
|
|
|
|-------|-------------|------|-----------|-----------|---------|
|
2020-06-02 10:30:16 +00:00
|
|
|
`)
|
|
|
|
}
|
|
|
|
|
2021-03-25 09:13:14 +00:00
|
|
|
// CaptureState also tracks SLOAD/SSTORE ops to track storage change.
|
|
|
|
func (t *mdLogger) CaptureState(env *EVM, pc uint64, op OpCode, gas, cost uint64, scope *ScopeContext, rData []byte, depth int, err error) {
|
|
|
|
stack := scope.Stack
|
2020-06-02 10:30:16 +00:00
|
|
|
fmt.Fprintf(t.out, "| %4d | %10v | %3d |", pc, op, cost)
|
|
|
|
|
2020-10-08 12:03:24 +00:00
|
|
|
if !t.cfg.DisableStack {
|
|
|
|
// format stack
|
2020-06-02 10:30:16 +00:00
|
|
|
var a []string
|
|
|
|
for _, elem := range stack.data {
|
2021-07-01 07:15:04 +00:00
|
|
|
a = append(a, elem.Hex())
|
2020-06-02 10:30:16 +00:00
|
|
|
}
|
|
|
|
b := fmt.Sprintf("[%v]", strings.Join(a, ","))
|
|
|
|
fmt.Fprintf(t.out, "%10v |", b)
|
|
|
|
}
|
2020-10-23 06:26:57 +00:00
|
|
|
fmt.Fprintf(t.out, "%10v |", env.StateDB.GetRefund())
|
2020-06-02 10:30:16 +00:00
|
|
|
fmt.Fprintln(t.out, "")
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(t.out, "Error: %v\n", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-25 09:13:14 +00:00
|
|
|
func (t *mdLogger) CaptureFault(env *EVM, pc uint64, op OpCode, gas, cost uint64, scope *ScopeContext, depth int, err error) {
|
2020-06-02 10:30:16 +00:00
|
|
|
fmt.Fprintf(t.out, "\nError: at pc=%d, op=%v: %v\n", pc, op, err)
|
|
|
|
}
|
|
|
|
|
2021-03-25 09:13:14 +00:00
|
|
|
func (t *mdLogger) CaptureEnd(output []byte, gasUsed uint64, tm time.Duration, err error) {
|
2020-10-23 06:26:57 +00:00
|
|
|
fmt.Fprintf(t.out, "\nOutput: `0x%x`\nConsumed gas: `%d`\nError: `%v`\n",
|
2020-06-02 10:30:16 +00:00
|
|
|
output, gasUsed, err)
|
|
|
|
}
|
core,eth: call frame tracing (#23087)
This change introduces 2 new optional methods; `enter()` and `exit()` for js tracers, and makes `step()` optiona. The two new methods are invoked when entering and exiting a call frame (but not invoked for the outermost scope, which has it's own methods). Currently these are the data fields passed to each of them:
enter: type (opcode), from, to, input, gas, value
exit: output, gasUsed, error
The PR also comes with a re-write of the callTracer. As a backup we keep the previous tracing script under the name `callTracerLegacy`. Behaviour of both tracers are equivalent for the most part, although there are some small differences (improvements), where the new tracer is more correct / has more information.
2021-09-17 07:31:22 +00:00
|
|
|
|
|
|
|
func (t *mdLogger) CaptureEnter(typ OpCode, from common.Address, to common.Address, input []byte, gas uint64, value *big.Int) {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *mdLogger) CaptureExit(output []byte, gasUsed uint64, err error) {}
|