logger.go 11.6 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
	"errors"
22
	"fmt"
23
	"io"
24
	"math/big"
25
	"strings"
26
	"time"
27 28

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

35 36
var errTraceLimitReached = errors.New("the number of logs reached the specified limit")

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

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

// LogConfig are the configuration options for structured logger the EVM
type LogConfig struct {
51 52 53 54 55 56
	DisableMemory     bool // disable memory capture
	DisableStack      bool // disable stack capture
	DisableStorage    bool // disable storage capture
	DisableReturnData bool // disable return data capture
	Debug             bool // print output during capture end
	Limit             int  // maximum length of output, but zero means unlimited
57 58
	// Chain overrides, can be used to execute a trace using future fork rules
	Overrides *params.ChainConfig `json:"overrides,omitempty"`
59 60
}

61 62
//go:generate gencodec -type StructLog -field-override structLogMarshaling -out gen_structlog.go

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

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

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

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

104 105 106 107 108 109
// Tracer is used to collect execution traces from an EVM transaction
// 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.
type Tracer interface {
110
	CaptureStart(from common.Address, to common.Address, create bool, input []byte, gas uint64, value *big.Int) error
111 112
	CaptureState(env *EVM, pc uint64, op OpCode, gas, cost uint64, memory *Memory, stack *Stack, rData []byte, contract *Contract, depth int, err error) error
	CaptureFault(env *EVM, pc uint64, op OpCode, gas, cost uint64, memory *Memory, stack *Stack, contract *Contract, depth int, err error) error
113
	CaptureEnd(output []byte, gasUsed uint64, t time.Duration, err error) error
114 115 116
}

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

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

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

141
// CaptureStart implements the Tracer interface to initialize the tracing operation.
142 143 144 145
func (l *StructLogger) CaptureStart(from common.Address, to common.Address, create bool, input []byte, gas uint64, value *big.Int) error {
	return nil
}

146
// CaptureState logs a new structured log message and pushes it out to the environment
147
//
148
// CaptureState also tracks SLOAD/SSTORE ops to track storage change.
149
func (l *StructLogger) CaptureState(env *EVM, pc uint64, op OpCode, gas, cost uint64, memory *Memory, stack *Stack, rData []byte, contract *Contract, depth int, err error) error {
150 151
	// check if already accumulated the specified number of logs
	if l.cfg.Limit != 0 && l.cfg.Limit <= len(l.logs) {
152
		return errTraceLimitReached
153
	}
154
	// Copy a snapshot of the current memory state to a new buffer
155 156 157 158 159
	var mem []byte
	if !l.cfg.DisableMemory {
		mem = make([]byte, len(memory.Data()))
		copy(mem, memory.Data())
	}
160
	// Copy a snapshot of the current stack state to a new buffer
161 162 163 164
	var stck []*big.Int
	if !l.cfg.DisableStack {
		stck = make([]*big.Int, len(stack.Data()))
		for i, item := range stack.Data() {
165
			stck[i] = new(big.Int).Set(item.ToBig())
166 167
		}
	}
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
	// Copy a snapshot of the current storage to a new container
	var storage Storage
	if !l.cfg.DisableStorage {
		// 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
		}
		// capture SSTORE opcodes and record the written entry in the local storage.
		if op == SSTORE && stack.len() >= 2 {
			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
		}
		storage = l.storage[contract.Address()].Copy()
	}
194 195 196 197 198
	var rdata []byte
	if !l.cfg.DisableReturnData {
		rdata = make([]byte, len(rData))
		copy(rdata, rData)
	}
199
	// create a new snapshot of the EVM.
200
	log := StructLog{pc, op, gas, cost, mem, memory.Len(), stck, rdata, storage, depth, env.StateDB.GetRefund(), err}
201
	l.logs = append(l.logs, log)
202
	return nil
203 204
}

205 206
// CaptureFault implements the Tracer interface to trace an execution fault
// while running an opcode.
207
func (l *StructLogger) CaptureFault(env *EVM, pc uint64, op OpCode, gas, cost uint64, memory *Memory, stack *Stack, contract *Contract, depth int, err error) error {
208 209 210
	return nil
}

211
// CaptureEnd is called after the call finishes to finalize the tracing.
212
func (l *StructLogger) CaptureEnd(output []byte, gasUsed uint64, t time.Duration, err error) error {
213 214
	l.output = output
	l.err = err
215 216 217 218 219 220
	if l.cfg.Debug {
		fmt.Printf("0x%x\n", output)
		if err != nil {
			fmt.Printf(" error: %v\n", err)
		}
	}
221 222 223
	return nil
}

224 225 226 227 228 229 230 231
// 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 }
232

233 234
// WriteTrace writes a formatted trace to the given writer
func WriteTrace(writer io.Writer, logs []StructLog) {
235
	for _, log := range logs {
236
		fmt.Fprintf(writer, "%-16spc=%08d gas=%v cost=%v", log.Op, log.Pc, log.Gas, log.GasCost)
237
		if log.Err != nil {
238
			fmt.Fprintf(writer, " ERROR: %v", log.Err)
239
		}
240
		fmt.Fprintln(writer)
obscuren's avatar
obscuren committed
241

242 243 244 245 246
		if len(log.Stack) > 0 {
			fmt.Fprintln(writer, "Stack:")
			for i := len(log.Stack) - 1; i >= 0; i-- {
				fmt.Fprintf(writer, "%08d  %x\n", len(log.Stack)-i-1, math.PaddedBigBytes(log.Stack[i], 32))
			}
247
		}
248 249 250 251 252 253 254 255 256
		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)
			}
257
		}
258 259 260 261
		if len(log.ReturnData) > 0 {
			fmt.Fprintln(writer, "ReturnData:")
			fmt.Fprint(writer, hex.Dump(log.ReturnData))
		}
262 263 264 265 266 267 268 269 270 271 272
		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)
273
		}
274 275 276

		fmt.Fprint(writer, hex.Dump(log.Data))
		fmt.Fprintln(writer)
277 278
	}
}
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306

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
}

func (t *mdLogger) CaptureStart(from common.Address, to common.Address, create bool, input []byte, gas uint64, value *big.Int) error {
	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, `
307 308
|  Pc   |      Op     | Cost |   Stack   |   RStack  |  Refund |
|-------|-------------|------|-----------|-----------|---------|
309 310 311 312
`)
	return nil
}

313
func (t *mdLogger) CaptureState(env *EVM, pc uint64, op OpCode, gas, cost uint64, memory *Memory, stack *Stack, rData []byte, contract *Contract, depth int, err error) error {
314 315
	fmt.Fprintf(t.out, "| %4d  | %10v  |  %3d |", pc, op, cost)

316 317
	if !t.cfg.DisableStack {
		// format stack
318 319
		var a []string
		for _, elem := range stack.data {
320
			a = append(a, fmt.Sprintf("%v", elem.String()))
321 322 323 324
		}
		b := fmt.Sprintf("[%v]", strings.Join(a, ","))
		fmt.Fprintf(t.out, "%10v |", b)
	}
325
	fmt.Fprintf(t.out, "%10v |", env.StateDB.GetRefund())
326 327 328 329 330 331 332
	fmt.Fprintln(t.out, "")
	if err != nil {
		fmt.Fprintf(t.out, "Error: %v\n", err)
	}
	return nil
}

333
func (t *mdLogger) CaptureFault(env *EVM, pc uint64, op OpCode, gas, cost uint64, memory *Memory, stack *Stack, contract *Contract, depth int, err error) error {
334 335 336 337 338 339 340

	fmt.Fprintf(t.out, "\nError: at pc=%d, op=%v: %v\n", pc, op, err)

	return nil
}

func (t *mdLogger) CaptureEnd(output []byte, gasUsed uint64, tm time.Duration, err error) error {
341
	fmt.Fprintf(t.out, "\nOutput: `0x%x`\nConsumed gas: `%d`\nError: `%v`\n",
342 343 344
		output, gasUsed, err)
	return nil
}