| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // Copyright 2015 The go-ethereum Authors | 
					
						
							| 
									
										
										
										
											2015-07-22 18:48:40 +02:00
										 |  |  | // This file is part of the go-ethereum library. | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // | 
					
						
							| 
									
										
										
										
											2015-07-23 18:35:11 +02:00
										 |  |  | // The go-ethereum library is free software: you can redistribute it and/or modify | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02: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 18:48:40 +02:00
										 |  |  | // The go-ethereum library is distributed in the hope that it will be useful, | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							| 
									
										
										
										
											2015-07-22 18:48:40 +02:00
										 |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02: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 18:48:40 +02:00
										 |  |  | // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 19:56:40 +02:00
										 |  |  | package vm | 
					
						
							| 
									
										
										
										
											2015-06-10 12:23:49 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2017-03-01 01:11:24 +01:00
										 |  |  | 	"encoding/hex" | 
					
						
							| 
									
										
										
										
											2015-06-10 12:23:49 +02:00
										 |  |  | 	"fmt" | 
					
						
							| 
									
										
										
										
											2017-03-01 10:19:15 +01:00
										 |  |  | 	"io" | 
					
						
							| 
									
										
										
										
											2016-02-03 23:46:27 +01:00
										 |  |  | 	"math/big" | 
					
						
							| 
									
										
										
										
											2015-06-10 12:23:49 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/ethereum/go-ethereum/common" | 
					
						
							| 
									
										
										
										
											2017-02-28 15:09:11 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/common/math" | 
					
						
							| 
									
										
										
										
											2017-03-01 10:19:15 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/core/types" | 
					
						
							| 
									
										
										
										
											2015-06-10 12:23:49 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-03 23:46:27 +01:00
										 |  |  | type Storage map[common.Hash]common.Hash | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (self Storage) Copy() Storage { | 
					
						
							|  |  |  | 	cpy := make(Storage) | 
					
						
							|  |  |  | 	for key, value := range self { | 
					
						
							|  |  |  | 		cpy[key] = value | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return cpy | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // LogConfig are the configuration options for structured logger the EVM | 
					
						
							|  |  |  | type LogConfig struct { | 
					
						
							| 
									
										
										
										
											2016-08-19 15:19:51 +01:00
										 |  |  | 	DisableMemory  bool // disable memory capture | 
					
						
							|  |  |  | 	DisableStack   bool // disable stack capture | 
					
						
							|  |  |  | 	DisableStorage bool // disable storage capture | 
					
						
							|  |  |  | 	FullStorage    bool // show full storage (slow) | 
					
						
							| 
									
										
										
										
											2016-09-30 12:22:42 +02:00
										 |  |  | 	Limit          int  // maximum length of output, but zero means unlimited | 
					
						
							| 
									
										
										
										
											2016-02-03 23:46:27 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | // StructLog is emitted to the EVM each cycle and lists information about the current internal state | 
					
						
							| 
									
										
										
										
											2016-02-03 23:46:27 +01:00
										 |  |  | // prior to the execution of the statement. | 
					
						
							|  |  |  | type StructLog struct { | 
					
						
							|  |  |  | 	Pc      uint64 | 
					
						
							|  |  |  | 	Op      OpCode | 
					
						
							| 
									
										
										
										
											2017-03-22 15:32:51 +01:00
										 |  |  | 	Gas     uint64 | 
					
						
							|  |  |  | 	GasCost uint64 | 
					
						
							| 
									
										
										
										
											2016-02-03 23:46:27 +01:00
										 |  |  | 	Memory  []byte | 
					
						
							|  |  |  | 	Stack   []*big.Int | 
					
						
							|  |  |  | 	Storage map[common.Hash]common.Hash | 
					
						
							|  |  |  | 	Depth   int | 
					
						
							|  |  |  | 	Err     error | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-19 15:19:51 +01:00
										 |  |  | // 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 { | 
					
						
							| 
									
										
										
										
											2017-03-22 15:32:51 +01:00
										 |  |  | 	CaptureState(env *EVM, pc uint64, op OpCode, gas, cost uint64, memory *Memory, stack *Stack, contract *Contract, depth int, err error) error | 
					
						
							| 
									
										
										
										
											2016-08-19 15:19:51 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // StructLogger is an EVM state logger and implements Tracer. | 
					
						
							| 
									
										
										
										
											2016-02-03 23:46:27 +01:00
										 |  |  | // | 
					
						
							| 
									
										
										
										
											2016-08-19 15:19:51 +01:00
										 |  |  | // StructLogger can capture state based on the given Log configuration and also keeps | 
					
						
							| 
									
										
										
										
											2016-02-03 23:46:27 +01:00
										 |  |  | // a track record of modified storage which is used in reporting snapshots of the | 
					
						
							|  |  |  | // contract their storage. | 
					
						
							| 
									
										
										
										
											2016-08-19 15:19:51 +01:00
										 |  |  | type StructLogger struct { | 
					
						
							| 
									
										
										
										
											2016-02-03 23:46:27 +01:00
										 |  |  | 	cfg LogConfig | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-19 15:19:51 +01:00
										 |  |  | 	logs          []StructLog | 
					
						
							| 
									
										
										
										
											2016-02-03 23:46:27 +01:00
										 |  |  | 	changedValues map[common.Address]Storage | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-19 15:19:51 +01:00
										 |  |  | // NewLogger returns a new logger | 
					
						
							|  |  |  | func NewStructLogger(cfg *LogConfig) *StructLogger { | 
					
						
							|  |  |  | 	logger := &StructLogger{ | 
					
						
							| 
									
										
										
										
											2016-02-03 23:46:27 +01:00
										 |  |  | 		changedValues: make(map[common.Address]Storage), | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2016-08-19 15:19:51 +01:00
										 |  |  | 	if cfg != nil { | 
					
						
							|  |  |  | 		logger.cfg = *cfg | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return logger | 
					
						
							| 
									
										
										
										
											2016-02-03 23:46:27 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // captureState logs a new structured log message and pushes it out to the environment | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // captureState also tracks SSTORE ops to track dirty values. | 
					
						
							| 
									
										
										
										
											2017-03-22 15:32:51 +01:00
										 |  |  | func (l *StructLogger) CaptureState(env *EVM, pc uint64, op OpCode, gas, cost uint64, memory *Memory, stack *Stack, contract *Contract, depth int, err error) error { | 
					
						
							| 
									
										
										
										
											2016-09-30 12:22:42 +02:00
										 |  |  | 	// check if already accumulated the specified number of logs | 
					
						
							|  |  |  | 	if l.cfg.Limit != 0 && l.cfg.Limit <= len(l.logs) { | 
					
						
							| 
									
										
										
										
											2017-01-05 11:52:10 +01:00
										 |  |  | 		return ErrTraceLimitReached | 
					
						
							| 
									
										
										
										
											2016-09-30 12:22:42 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-02-03 23:46:27 +01:00
										 |  |  | 	// initialise new changed values storage container for this contract | 
					
						
							|  |  |  | 	// if not present. | 
					
						
							|  |  |  | 	if l.changedValues[contract.Address()] == nil { | 
					
						
							|  |  |  | 		l.changedValues[contract.Address()] = make(Storage) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// capture SSTORE opcodes and determine the changed value and store | 
					
						
							|  |  |  | 	// it in the local storage container. NOTE: we do not need to do any | 
					
						
							|  |  |  | 	// range checks here because that's already handler prior to calling | 
					
						
							|  |  |  | 	// this function. | 
					
						
							|  |  |  | 	switch op { | 
					
						
							|  |  |  | 	case SSTORE: | 
					
						
							|  |  |  | 		var ( | 
					
						
							|  |  |  | 			value   = common.BigToHash(stack.data[stack.len()-2]) | 
					
						
							|  |  |  | 			address = common.BigToHash(stack.data[stack.len()-1]) | 
					
						
							|  |  |  | 		) | 
					
						
							|  |  |  | 		l.changedValues[contract.Address()][address] = value | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// copy a snapstot of the current memory state to a new buffer | 
					
						
							|  |  |  | 	var mem []byte | 
					
						
							|  |  |  | 	if !l.cfg.DisableMemory { | 
					
						
							|  |  |  | 		mem = make([]byte, len(memory.Data())) | 
					
						
							|  |  |  | 		copy(mem, memory.Data()) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// copy a snapshot of the current stack state to a new buffer | 
					
						
							|  |  |  | 	var stck []*big.Int | 
					
						
							|  |  |  | 	if !l.cfg.DisableStack { | 
					
						
							|  |  |  | 		stck = make([]*big.Int, len(stack.Data())) | 
					
						
							|  |  |  | 		for i, item := range stack.Data() { | 
					
						
							|  |  |  | 			stck[i] = new(big.Int).Set(item) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Copy the storage based on the settings specified in the log config. If full storage | 
					
						
							|  |  |  | 	// is disabled (default) we can use the simple Storage.Copy method, otherwise we use | 
					
						
							|  |  |  | 	// the state object to query for all values (slow process). | 
					
						
							|  |  |  | 	var storage Storage | 
					
						
							|  |  |  | 	if !l.cfg.DisableStorage { | 
					
						
							|  |  |  | 		if l.cfg.FullStorage { | 
					
						
							|  |  |  | 			storage = make(Storage) | 
					
						
							|  |  |  | 			// Get the contract account and loop over each storage entry. This may involve looping over | 
					
						
							|  |  |  | 			// the trie and is a very expensive process. | 
					
						
							| 
									
										
										
										
											2017-02-22 23:29:59 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			env.StateDB.ForEachStorage(contract.Address(), func(key, value common.Hash) bool { | 
					
						
							| 
									
										
										
										
											2016-02-03 23:46:27 +01:00
										 |  |  | 				storage[key] = value | 
					
						
							|  |  |  | 				// Return true, indicating we'd like to continue. | 
					
						
							|  |  |  | 				return true | 
					
						
							|  |  |  | 			}) | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			// copy a snapshot of the current storage to a new container. | 
					
						
							|  |  |  | 			storage = l.changedValues[contract.Address()].Copy() | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	// create a new snaptshot of the EVM. | 
					
						
							| 
									
										
										
										
											2017-03-22 15:32:51 +01:00
										 |  |  | 	log := StructLog{pc, op, gas, cost, mem, stck, storage, env.depth, err} | 
					
						
							| 
									
										
										
										
											2016-08-19 15:19:51 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	l.logs = append(l.logs, log) | 
					
						
							| 
									
										
										
										
											2016-09-30 12:22:42 +02:00
										 |  |  | 	return nil | 
					
						
							| 
									
										
										
										
											2016-08-19 15:19:51 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // StructLogs returns a list of captured log entries | 
					
						
							|  |  |  | func (l *StructLogger) StructLogs() []StructLog { | 
					
						
							|  |  |  | 	return l.logs | 
					
						
							| 
									
										
										
										
											2016-02-03 23:46:27 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-01 10:19:15 +01:00
										 |  |  | // WriteTrace writes a formatted trace to the given writer | 
					
						
							|  |  |  | func WriteTrace(writer io.Writer, logs []StructLog) { | 
					
						
							| 
									
										
										
										
											2015-06-10 12:23:49 +02:00
										 |  |  | 	for _, log := range logs { | 
					
						
							| 
									
										
										
										
											2017-03-01 10:19:15 +01:00
										 |  |  | 		fmt.Fprintf(writer, "%-10spc=%08d gas=%v cost=%v", log.Op, log.Pc, log.Gas, log.GasCost) | 
					
						
							| 
									
										
										
										
											2015-06-12 13:35:14 +02:00
										 |  |  | 		if log.Err != nil { | 
					
						
							| 
									
										
										
										
											2017-03-01 10:19:15 +01:00
										 |  |  | 			fmt.Fprintf(writer, " ERROR: %v", log.Err) | 
					
						
							| 
									
										
										
										
											2015-06-12 13:35:14 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-03-01 10:19:15 +01:00
										 |  |  | 		fmt.Fprintf(writer, "\n") | 
					
						
							| 
									
										
										
										
											2015-06-10 21:08:54 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		for i := len(log.Stack) - 1; i >= 0; i-- { | 
					
						
							| 
									
										
										
										
											2017-03-01 10:19:15 +01:00
										 |  |  | 			fmt.Fprintf(writer, "%08d  %x\n", len(log.Stack)-i-1, math.PaddedBigBytes(log.Stack[i], 32)) | 
					
						
							| 
									
										
										
										
											2015-06-10 12:23:49 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-01 10:19:15 +01:00
										 |  |  | 		fmt.Fprint(writer, hex.Dump(log.Memory)) | 
					
						
							| 
									
										
										
										
											2015-06-10 12:57:37 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		for h, item := range log.Storage { | 
					
						
							| 
									
										
										
										
											2017-03-01 10:19:15 +01:00
										 |  |  | 			fmt.Fprintf(writer, "%x: %x\n", h, item) | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		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 12:57:37 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2017-03-01 10:19:15 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		fmt.Fprint(writer, hex.Dump(log.Data)) | 
					
						
							|  |  |  | 		fmt.Fprintln(writer) | 
					
						
							| 
									
										
										
										
											2015-06-10 12:23:49 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | } |