logger.go 12.1 KB
Newer Older
1
// Copyright 2015 The go-ethereum Authors
2
// This file is part of the go-ethereum library.
3
//
4
// The go-ethereum library is free software: you can redistribute it and/or modify
5 6 7 8
// 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.
//
9
// The go-ethereum library is distributed in the hope that it will be useful,
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 13 14
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
15
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
16

17
package vm
18 19

import (
20
	"encoding/hex"
21
	"fmt"
22
	"io"
23
	"math/big"
24
	"strings"
25
	"time"
26 27

	"github.com/ethereum/go-ethereum/common"
28
	"github.com/ethereum/go-ethereum/common/hexutil"
29
	"github.com/ethereum/go-ethereum/common/math"
30
	"github.com/ethereum/go-ethereum/core/types"
31
	"github.com/ethereum/go-ethereum/params"
32
	"github.com/holiman/uint256"
33 34
)

35
// Storage represents a contract's storage.
36 37
type Storage map[common.Hash]common.Hash

38
// Copy duplicates the current storage.
39
func (s Storage) Copy() Storage {
40
	cpy := make(Storage)
41
	for key, value := range s {
42 43 44 45 46 47 48
		cpy[key] = value
	}
	return cpy
}

// LogConfig are the configuration options for structured logger the EVM
type LogConfig struct {
49 50 51 52 53 54
	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
55 56
	// Chain overrides, can be used to execute a trace using future fork rules
	Overrides *params.ChainConfig `json:"overrides,omitempty"`
57 58
}

59 60
//go:generate gencodec -type StructLog -field-override structLogMarshaling -out gen_structlog.go

61
// StructLog is emitted to the EVM each cycle and lists information about the current internal state
62 63
// prior to the execution of the statement.
type StructLog struct {
64 65 66 67 68 69
	Pc            uint64                      `json:"pc"`
	Op            OpCode                      `json:"op"`
	Gas           uint64                      `json:"gas"`
	GasCost       uint64                      `json:"gasCost"`
	Memory        []byte                      `json:"memory"`
	MemorySize    int                         `json:"memSize"`
70
	Stack         []uint256.Int               `json:"stack"`
71
	ReturnData    []byte                      `json:"returnData"`
72 73 74 75
	Storage       map[common.Hash]common.Hash `json:"-"`
	Depth         int                         `json:"depth"`
	RefundCounter uint64                      `json:"refund"`
	Err           error                       `json:"-"`
76 77 78 79
}

// overrides for gencodec
type structLogMarshaling struct {
80 81 82
	Gas         math.HexOrDecimal64
	GasCost     math.HexOrDecimal64
	Memory      hexutil.Bytes
83
	ReturnData  hexutil.Bytes
84 85
	OpName      string `json:"opName"` // adds call to OpName() in MarshalJSON
	ErrorString string `json:"error"`  // adds call to ErrorString() in MarshalJSON
86 87
}

88
// OpName formats the operand name in a human-readable format.
89 90 91 92
func (s *StructLog) OpName() string {
	return s.Op.String()
}

93
// ErrorString formats the log's error as a string.
94 95 96 97 98 99 100
func (s *StructLog) ErrorString() string {
	if s.Err != nil {
		return s.Err.Error()
	}
	return ""
}

101
// EVMLogger is used to collect execution traces from an EVM transaction
102 103 104 105
// 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.
106
type EVMLogger interface {
107 108
	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)
109 110
	CaptureEnter(typ OpCode, from common.Address, to common.Address, input []byte, gas uint64, value *big.Int)
	CaptureExit(output []byte, gasUsed uint64, err error)
111 112
	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)
113 114
}

115
// StructLogger is an EVM state logger and implements EVMLogger.
116
//
117
// StructLogger can capture state based on the given Log configuration and also keeps
118 119
// a track record of modified storage which is used in reporting snapshots of the
// contract their storage.
120
type StructLogger struct {
121 122
	cfg LogConfig

123 124 125 126
	storage map[common.Address]Storage
	logs    []StructLog
	output  []byte
	err     error
127 128
}

129
// NewStructLogger returns a new logger
130 131
func NewStructLogger(cfg *LogConfig) *StructLogger {
	logger := &StructLogger{
132
		storage: make(map[common.Address]Storage),
133
	}
134 135 136 137
	if cfg != nil {
		logger.cfg = *cfg
	}
	return logger
138 139
}

140 141 142 143 144 145 146 147
// 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
}

148
// CaptureStart implements the EVMLogger interface to initialize the tracing operation.
149
func (l *StructLogger) CaptureStart(env *EVM, from common.Address, to common.Address, create bool, input []byte, gas uint64, value *big.Int) {
150 151
}

152
// CaptureState logs a new structured log message and pushes it out to the environment
153
//
154
// CaptureState also tracks SLOAD/SSTORE ops to track storage change.
155 156 157 158
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
159 160
	// check if already accumulated the specified number of logs
	if l.cfg.Limit != 0 && l.cfg.Limit <= len(l.logs) {
161
		return
162
	}
163
	// Copy a snapshot of the current memory state to a new buffer
164
	var mem []byte
165
	if l.cfg.EnableMemory {
166 167 168
		mem = make([]byte, len(memory.Data()))
		copy(mem, memory.Data())
	}
169
	// Copy a snapshot of the current stack state to a new buffer
170
	var stck []uint256.Int
171
	if !l.cfg.DisableStack {
172
		stck = make([]uint256.Int, len(stack.Data()))
173
		for i, item := range stack.Data() {
174
			stck[i] = item
175 176
		}
	}
177 178
	// Copy a snapshot of the current storage to a new container
	var storage Storage
179
	if !l.cfg.DisableStorage && (op == SLOAD || op == SSTORE) {
180 181 182 183 184 185 186 187 188 189 190 191
		// 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
192 193 194
			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.
195 196 197 198 199
			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
200
			storage = l.storage[contract.Address()].Copy()
201 202
		}
	}
203
	var rdata []byte
204
	if l.cfg.EnableReturnData {
205 206 207
		rdata = make([]byte, len(rData))
		copy(rdata, rData)
	}
208
	// create a new snapshot of the EVM.
209
	log := StructLog{pc, op, gas, cost, mem, memory.Len(), stck, rdata, storage, depth, env.StateDB.GetRefund(), err}
210 211 212
	l.logs = append(l.logs, log)
}

213
// CaptureFault implements the EVMLogger interface to trace an execution fault
214
// while running an opcode.
215
func (l *StructLogger) CaptureFault(env *EVM, pc uint64, op OpCode, gas, cost uint64, scope *ScopeContext, depth int, err error) {
216 217
}

218
// CaptureEnd is called after the call finishes to finalize the tracing.
219
func (l *StructLogger) CaptureEnd(output []byte, gasUsed uint64, t time.Duration, err error) {
220 221
	l.output = output
	l.err = err
222 223 224 225 226 227
	if l.cfg.Debug {
		fmt.Printf("0x%x\n", output)
		if err != nil {
			fmt.Printf(" error: %v\n", err)
		}
	}
228 229
}

230 231 232 233 234
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) {}

235 236 237 238 239 240 241 242
// 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 }
243

244 245
// WriteTrace writes a formatted trace to the given writer
func WriteTrace(writer io.Writer, logs []StructLog) {
246
	for _, log := range logs {
247
		fmt.Fprintf(writer, "%-16spc=%08d gas=%v cost=%v", log.Op, log.Pc, log.Gas, log.GasCost)
248
		if log.Err != nil {
249
			fmt.Fprintf(writer, " ERROR: %v", log.Err)
250
		}
251
		fmt.Fprintln(writer)
obscuren's avatar
obscuren committed
252

253 254 255
		if len(log.Stack) > 0 {
			fmt.Fprintln(writer, "Stack:")
			for i := len(log.Stack) - 1; i >= 0; i-- {
256
				fmt.Fprintf(writer, "%08d  %s\n", len(log.Stack)-i-1, log.Stack[i].Hex())
257
			}
258
		}
259 260 261 262 263 264 265 266 267
		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)
			}
268
		}
269 270 271 272
		if len(log.ReturnData) > 0 {
			fmt.Fprintln(writer, "ReturnData:")
			fmt.Fprint(writer, hex.Dump(log.ReturnData))
		}
273 274 275 276 277 278 279 280 281 282 283
		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)
284
		}
285 286 287

		fmt.Fprint(writer, hex.Dump(log.Data))
		fmt.Fprintln(writer)
288 289
	}
}
290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305

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
}

306
func (t *mdLogger) CaptureStart(env *EVM, from common.Address, to common.Address, create bool, input []byte, gas uint64, value *big.Int) {
307 308 309 310 311 312 313 314 315 316 317
	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, `
318 319
|  Pc   |      Op     | Cost |   Stack   |   RStack  |  Refund |
|-------|-------------|------|-----------|-----------|---------|
320 321 322
`)
}

323 324 325
// 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
326 327
	fmt.Fprintf(t.out, "| %4d  | %10v  |  %3d |", pc, op, cost)

328 329
	if !t.cfg.DisableStack {
		// format stack
330 331
		var a []string
		for _, elem := range stack.data {
332
			a = append(a, elem.Hex())
333 334 335 336
		}
		b := fmt.Sprintf("[%v]", strings.Join(a, ","))
		fmt.Fprintf(t.out, "%10v |", b)
	}
337
	fmt.Fprintf(t.out, "%10v |", env.StateDB.GetRefund())
338 339 340 341 342 343
	fmt.Fprintln(t.out, "")
	if err != nil {
		fmt.Fprintf(t.out, "Error: %v\n", err)
	}
}

344
func (t *mdLogger) CaptureFault(env *EVM, pc uint64, op OpCode, gas, cost uint64, scope *ScopeContext, depth int, err error) {
345 346 347
	fmt.Fprintf(t.out, "\nError: at pc=%d, op=%v: %v\n", pc, op, err)
}

348
func (t *mdLogger) CaptureEnd(output []byte, gasUsed uint64, tm time.Duration, err error) {
349
	fmt.Fprintf(t.out, "\nOutput: `0x%x`\nConsumed gas: `%d`\nError: `%v`\n",
350 351
		output, gasUsed, err)
}
352 353 354 355 356

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) {}