2017-06-07 15:09:08 +00:00
|
|
|
// Copyright 2017 The go-ethereum Authors
|
2019-07-22 09:17:27 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
2017-06-07 15:09:08 +00:00
|
|
|
//
|
2019-07-22 09:17:27 +00:00
|
|
|
// 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
|
2017-06-07 15:09:08 +00:00
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
2019-07-22 09:17:27 +00:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2017-06-07 15:09:08 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2019-07-22 09:17:27 +00:00
|
|
|
// GNU Lesser General Public License for more details.
|
2017-06-07 15:09:08 +00:00
|
|
|
//
|
2019-07-22 09:17:27 +00:00
|
|
|
// 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/>.
|
2017-06-07 15:09:08 +00:00
|
|
|
|
2018-10-15 10:28:44 +00:00
|
|
|
package vm
|
2017-06-07 15:09:08 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"io"
|
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
|
|
|
"math/big"
|
2017-06-07 15:09:08 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
|
|
"github.com/ethereum/go-ethereum/common/math"
|
|
|
|
)
|
|
|
|
|
|
|
|
type JSONLogger struct {
|
|
|
|
encoder *json.Encoder
|
2018-10-15 10:28:44 +00:00
|
|
|
cfg *LogConfig
|
2017-06-07 15:09:08 +00:00
|
|
|
}
|
|
|
|
|
2018-05-09 07:38:03 +00:00
|
|
|
// NewJSONLogger creates a new EVM tracer that prints execution steps as JSON objects
|
|
|
|
// into the provided stream.
|
2018-10-15 10:28:44 +00:00
|
|
|
func NewJSONLogger(cfg *LogConfig, writer io.Writer) *JSONLogger {
|
2019-01-24 10:36:30 +00:00
|
|
|
l := &JSONLogger{json.NewEncoder(writer), cfg}
|
|
|
|
if l.cfg == nil {
|
|
|
|
l.cfg = &LogConfig{}
|
|
|
|
}
|
|
|
|
return l
|
2017-06-07 15:09:08 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
func (l *JSONLogger) CaptureStart(from common.Address, to common.Address, create bool, input []byte, gas uint64, value *big.Int) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-06-07 15:09:08 +00:00
|
|
|
// CaptureState outputs state information on the logger.
|
2020-07-16 12:06:19 +00:00
|
|
|
func (l *JSONLogger) CaptureState(env *EVM, pc uint64, op OpCode, gas, cost uint64, memory *Memory, stack *Stack, rStack *ReturnStack, rData []byte, contract *Contract, depth int, err error) error {
|
2018-10-15 10:28:44 +00:00
|
|
|
log := StructLog{
|
2018-10-23 14:28:18 +00:00
|
|
|
Pc: pc,
|
|
|
|
Op: op,
|
|
|
|
Gas: gas,
|
|
|
|
GasCost: cost,
|
|
|
|
MemorySize: memory.Len(),
|
|
|
|
Storage: nil,
|
|
|
|
Depth: depth,
|
|
|
|
RefundCounter: env.StateDB.GetRefund(),
|
|
|
|
Err: err,
|
2017-06-21 12:52:31 +00:00
|
|
|
}
|
|
|
|
if !l.cfg.DisableMemory {
|
|
|
|
log.Memory = memory.Data()
|
|
|
|
}
|
|
|
|
if !l.cfg.DisableStack {
|
2020-06-08 12:24:40 +00:00
|
|
|
//TODO(@holiman) improve this
|
|
|
|
logstack := make([]*big.Int, len(stack.Data()))
|
|
|
|
for i, item := range stack.Data() {
|
|
|
|
logstack[i] = item.ToBig()
|
|
|
|
}
|
|
|
|
log.Stack = logstack
|
2020-06-02 10:30:16 +00:00
|
|
|
log.ReturnStack = rStack.data
|
2017-06-21 12:52:31 +00:00
|
|
|
}
|
2020-07-16 12:06:19 +00:00
|
|
|
if !l.cfg.DisableReturnData {
|
|
|
|
log.ReturnData = rData
|
|
|
|
}
|
2017-06-21 12:52:31 +00:00
|
|
|
return l.encoder.Encode(log)
|
2017-06-07 15:09:08 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
// CaptureFault outputs state information on the logger.
|
2020-06-02 10:30:16 +00:00
|
|
|
func (l *JSONLogger) CaptureFault(env *EVM, pc uint64, op OpCode, gas, cost uint64, memory *Memory, stack *Stack, rStack *ReturnStack, contract *Contract, depth int, err error) 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
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-06-07 15:09:08 +00:00
|
|
|
// CaptureEnd is triggered at end of execution.
|
2017-08-23 11:37:18 +00:00
|
|
|
func (l *JSONLogger) CaptureEnd(output []byte, gasUsed uint64, t time.Duration, err error) error {
|
2017-06-07 15:09:08 +00:00
|
|
|
type endLog struct {
|
|
|
|
Output string `json:"output"`
|
|
|
|
GasUsed math.HexOrDecimal64 `json:"gasUsed"`
|
|
|
|
Time time.Duration `json:"time"`
|
2017-08-23 11:37:18 +00:00
|
|
|
Err string `json:"error,omitempty"`
|
2017-06-07 15:09:08 +00:00
|
|
|
}
|
2017-08-23 11:37:18 +00:00
|
|
|
if err != nil {
|
|
|
|
return l.encoder.Encode(endLog{common.Bytes2Hex(output), math.HexOrDecimal64(gasUsed), t, err.Error()})
|
|
|
|
}
|
|
|
|
return l.encoder.Encode(endLog{common.Bytes2Hex(output), math.HexOrDecimal64(gasUsed), t, ""})
|
2017-06-07 15:09:08 +00:00
|
|
|
}
|