github.com/ubiq/go-ubiq/v6@v6.0.0/core/vm/logger.go (about)

     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  // it under the terms of the GNU Lesser General Public License as published by
     6  // the Free Software Foundation, either version 3 of the License, or
     7  // (at your option) any later version.
     8  //
     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  // GNU Lesser General Public License for more details.
    13  //
    14  // 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/holiman/uint256"
    28  	"github.com/ubiq/go-ubiq/v6/common"
    29  	"github.com/ubiq/go-ubiq/v6/common/hexutil"
    30  	"github.com/ubiq/go-ubiq/v6/common/math"
    31  	"github.com/ubiq/go-ubiq/v6/core/types"
    32  	"github.com/ubiq/go-ubiq/v6/params"
    33  )
    34  
    35  // Storage represents a contract's storage.
    36  type Storage map[common.Hash]common.Hash
    37  
    38  // Copy duplicates the current storage.
    39  func (s Storage) Copy() Storage {
    40  	cpy := make(Storage)
    41  	for key, value := range s {
    42  		cpy[key] = value
    43  	}
    44  	return cpy
    45  }
    46  
    47  // LogConfig are the configuration options for structured logger the EVM
    48  type LogConfig struct {
    49  	EnableMemory     bool // enable memory capture
    50  	DisableStack     bool // disable stack capture
    51  	DisableStorage   bool // disable storage capture
    52  	EnableReturnData bool // enable return data capture
    53  	Debug            bool // print output during capture end
    54  	Limit            int  // maximum length of output, but zero means unlimited
    55  	// Chain overrides, can be used to execute a trace using future fork rules
    56  	Overrides *params.ChainConfig `json:"overrides,omitempty"`
    57  }
    58  
    59  //go:generate gencodec -type StructLog -field-override structLogMarshaling -out gen_structlog.go
    60  
    61  // StructLog is emitted to the EVM each cycle and lists information about the current internal state
    62  // prior to the execution of the statement.
    63  type StructLog struct {
    64  	Pc            uint64                      `json:"pc"`
    65  	Op            OpCode                      `json:"op"`
    66  	Gas           uint64                      `json:"gas"`
    67  	GasCost       uint64                      `json:"gasCost"`
    68  	Memory        []byte                      `json:"memory"`
    69  	MemorySize    int                         `json:"memSize"`
    70  	Stack         []uint256.Int               `json:"stack"`
    71  	ReturnData    []byte                      `json:"returnData"`
    72  	Storage       map[common.Hash]common.Hash `json:"-"`
    73  	Depth         int                         `json:"depth"`
    74  	RefundCounter uint64                      `json:"refund"`
    75  	Err           error                       `json:"-"`
    76  }
    77  
    78  // overrides for gencodec
    79  type structLogMarshaling struct {
    80  	Gas         math.HexOrDecimal64
    81  	GasCost     math.HexOrDecimal64
    82  	Memory      hexutil.Bytes
    83  	ReturnData  hexutil.Bytes
    84  	OpName      string `json:"opName"` // adds call to OpName() in MarshalJSON
    85  	ErrorString string `json:"error"`  // adds call to ErrorString() in MarshalJSON
    86  }
    87  
    88  // OpName formats the operand name in a human-readable format.
    89  func (s *StructLog) OpName() string {
    90  	return s.Op.String()
    91  }
    92  
    93  // ErrorString formats the log's error as a string.
    94  func (s *StructLog) ErrorString() string {
    95  	if s.Err != nil {
    96  		return s.Err.Error()
    97  	}
    98  	return ""
    99  }
   100  
   101  // EVMLogger is used to collect execution traces from an EVM transaction
   102  // execution. CaptureState is called for each step of the VM with the
   103  // current VM state.
   104  // Note that reference types are actual VM data structures; make copies
   105  // if you need to retain them beyond the current call.
   106  type EVMLogger interface {
   107  	CaptureStart(env *EVM, from common.Address, to common.Address, create bool, input []byte, gas uint64, value *big.Int)
   108  	CaptureState(pc uint64, op OpCode, gas, cost uint64, scope *ScopeContext, rData []byte, depth int, err error)
   109  	CaptureEnter(typ OpCode, from common.Address, to common.Address, input []byte, gas uint64, value *big.Int)
   110  	CaptureExit(output []byte, gasUsed uint64, err error)
   111  	CaptureFault(pc uint64, op OpCode, gas, cost uint64, scope *ScopeContext, depth int, err error)
   112  	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  // a track record of modified storage which is used in reporting snapshots of the
   119  // contract their storage.
   120  type StructLogger struct {
   121  	cfg LogConfig
   122  	env *EVM
   123  
   124  	storage map[common.Address]Storage
   125  	logs    []StructLog
   126  	output  []byte
   127  	err     error
   128  }
   129  
   130  // NewStructLogger returns a new logger
   131  func NewStructLogger(cfg *LogConfig) *StructLogger {
   132  	logger := &StructLogger{
   133  		storage: make(map[common.Address]Storage),
   134  	}
   135  	if cfg != nil {
   136  		logger.cfg = *cfg
   137  	}
   138  	return logger
   139  }
   140  
   141  // Reset clears the data held by the logger.
   142  func (l *StructLogger) Reset() {
   143  	l.storage = make(map[common.Address]Storage)
   144  	l.output = make([]byte, 0)
   145  	l.logs = l.logs[:0]
   146  	l.err = nil
   147  }
   148  
   149  // CaptureStart implements the EVMLogger interface to initialize the tracing operation.
   150  func (l *StructLogger) CaptureStart(env *EVM, from common.Address, to common.Address, create bool, input []byte, gas uint64, value *big.Int) {
   151  	l.env = env
   152  }
   153  
   154  // CaptureState logs a new structured log message and pushes it out to the environment
   155  //
   156  // CaptureState also tracks SLOAD/SSTORE ops to track storage change.
   157  func (l *StructLogger) CaptureState(pc uint64, op OpCode, gas, cost uint64, scope *ScopeContext, rData []byte, depth int, err error) {
   158  	memory := scope.Memory
   159  	stack := scope.Stack
   160  	contract := scope.Contract
   161  	// check if already accumulated the specified number of logs
   162  	if l.cfg.Limit != 0 && l.cfg.Limit <= len(l.logs) {
   163  		return
   164  	}
   165  	// Copy a snapshot of the current memory state to a new buffer
   166  	var mem []byte
   167  	if l.cfg.EnableMemory {
   168  		mem = make([]byte, len(memory.Data()))
   169  		copy(mem, memory.Data())
   170  	}
   171  	// Copy a snapshot of the current stack state to a new buffer
   172  	var stck []uint256.Int
   173  	if !l.cfg.DisableStack {
   174  		stck = make([]uint256.Int, len(stack.Data()))
   175  		for i, item := range stack.Data() {
   176  			stck[i] = item
   177  		}
   178  	}
   179  	// Copy a snapshot of the current storage to a new container
   180  	var storage Storage
   181  	if !l.cfg.DisableStorage && (op == SLOAD || op == SSTORE) {
   182  		// initialise new changed values storage container for this contract
   183  		// if not present.
   184  		if l.storage[contract.Address()] == nil {
   185  			l.storage[contract.Address()] = make(Storage)
   186  		}
   187  		// capture SLOAD opcodes and record the read entry in the local storage
   188  		if op == SLOAD && stack.len() >= 1 {
   189  			var (
   190  				address = common.Hash(stack.data[stack.len()-1].Bytes32())
   191  				value   = l.env.StateDB.GetState(contract.Address(), address)
   192  			)
   193  			l.storage[contract.Address()][address] = value
   194  			storage = l.storage[contract.Address()].Copy()
   195  		} else if op == SSTORE && stack.len() >= 2 {
   196  			// capture SSTORE opcodes and record the written entry in the local storage.
   197  			var (
   198  				value   = common.Hash(stack.data[stack.len()-2].Bytes32())
   199  				address = common.Hash(stack.data[stack.len()-1].Bytes32())
   200  			)
   201  			l.storage[contract.Address()][address] = value
   202  			storage = l.storage[contract.Address()].Copy()
   203  		}
   204  	}
   205  	var rdata []byte
   206  	if l.cfg.EnableReturnData {
   207  		rdata = make([]byte, len(rData))
   208  		copy(rdata, rData)
   209  	}
   210  	// create a new snapshot of the EVM.
   211  	log := StructLog{pc, op, gas, cost, mem, memory.Len(), stck, rdata, storage, depth, l.env.StateDB.GetRefund(), err}
   212  	l.logs = append(l.logs, log)
   213  }
   214  
   215  // CaptureFault implements the EVMLogger interface to trace an execution fault
   216  // while running an opcode.
   217  func (l *StructLogger) CaptureFault(pc uint64, op OpCode, gas, cost uint64, scope *ScopeContext, depth int, err error) {
   218  }
   219  
   220  // CaptureEnd is called after the call finishes to finalize the tracing.
   221  func (l *StructLogger) CaptureEnd(output []byte, gasUsed uint64, t time.Duration, err error) {
   222  	l.output = output
   223  	l.err = err
   224  	if l.cfg.Debug {
   225  		fmt.Printf("0x%x\n", output)
   226  		if err != nil {
   227  			fmt.Printf(" error: %v\n", err)
   228  		}
   229  	}
   230  }
   231  
   232  func (l *StructLogger) CaptureEnter(typ OpCode, from common.Address, to common.Address, input []byte, gas uint64, value *big.Int) {
   233  }
   234  
   235  func (l *StructLogger) CaptureExit(output []byte, gasUsed uint64, err error) {}
   236  
   237  // StructLogs returns the captured log entries.
   238  func (l *StructLogger) StructLogs() []StructLog { return l.logs }
   239  
   240  // Error returns the VM error captured by the trace.
   241  func (l *StructLogger) Error() error { return l.err }
   242  
   243  // Output returns the VM return value captured by the trace.
   244  func (l *StructLogger) Output() []byte { return l.output }
   245  
   246  // WriteTrace writes a formatted trace to the given writer
   247  func WriteTrace(writer io.Writer, logs []StructLog) {
   248  	for _, log := range logs {
   249  		fmt.Fprintf(writer, "%-16spc=%08d gas=%v cost=%v", log.Op, log.Pc, log.Gas, log.GasCost)
   250  		if log.Err != nil {
   251  			fmt.Fprintf(writer, " ERROR: %v", log.Err)
   252  		}
   253  		fmt.Fprintln(writer)
   254  
   255  		if len(log.Stack) > 0 {
   256  			fmt.Fprintln(writer, "Stack:")
   257  			for i := len(log.Stack) - 1; i >= 0; i-- {
   258  				fmt.Fprintf(writer, "%08d  %s\n", len(log.Stack)-i-1, log.Stack[i].Hex())
   259  			}
   260  		}
   261  		if len(log.Memory) > 0 {
   262  			fmt.Fprintln(writer, "Memory:")
   263  			fmt.Fprint(writer, hex.Dump(log.Memory))
   264  		}
   265  		if len(log.Storage) > 0 {
   266  			fmt.Fprintln(writer, "Storage:")
   267  			for h, item := range log.Storage {
   268  				fmt.Fprintf(writer, "%x: %x\n", h, item)
   269  			}
   270  		}
   271  		if len(log.ReturnData) > 0 {
   272  			fmt.Fprintln(writer, "ReturnData:")
   273  			fmt.Fprint(writer, hex.Dump(log.ReturnData))
   274  		}
   275  		fmt.Fprintln(writer)
   276  	}
   277  }
   278  
   279  // WriteLogs writes vm logs in a readable format to the given writer
   280  func WriteLogs(writer io.Writer, logs []*types.Log) {
   281  	for _, log := range logs {
   282  		fmt.Fprintf(writer, "LOG%d: %x bn=%d txi=%x\n", len(log.Topics), log.Address, log.BlockNumber, log.TxIndex)
   283  
   284  		for i, topic := range log.Topics {
   285  			fmt.Fprintf(writer, "%08d  %x\n", i, topic)
   286  		}
   287  
   288  		fmt.Fprint(writer, hex.Dump(log.Data))
   289  		fmt.Fprintln(writer)
   290  	}
   291  }
   292  
   293  type mdLogger struct {
   294  	out io.Writer
   295  	cfg *LogConfig
   296  	env *EVM
   297  }
   298  
   299  // NewMarkdownLogger creates a logger which outputs information in a format adapted
   300  // for human readability, and is also a valid markdown table
   301  func NewMarkdownLogger(cfg *LogConfig, writer io.Writer) *mdLogger {
   302  	l := &mdLogger{out: writer, cfg: cfg}
   303  	if l.cfg == nil {
   304  		l.cfg = &LogConfig{}
   305  	}
   306  	return l
   307  }
   308  
   309  func (t *mdLogger) CaptureStart(env *EVM, from common.Address, to common.Address, create bool, input []byte, gas uint64, value *big.Int) {
   310  	t.env = env
   311  	if !create {
   312  		fmt.Fprintf(t.out, "From: `%v`\nTo: `%v`\nData: `0x%x`\nGas: `%d`\nValue `%v` wei\n",
   313  			from.String(), to.String(),
   314  			input, gas, value)
   315  	} else {
   316  		fmt.Fprintf(t.out, "From: `%v`\nCreate at: `%v`\nData: `0x%x`\nGas: `%d`\nValue `%v` wei\n",
   317  			from.String(), to.String(),
   318  			input, gas, value)
   319  	}
   320  
   321  	fmt.Fprintf(t.out, `
   322  |  Pc   |      Op     | Cost |   Stack   |   RStack  |  Refund |
   323  |-------|-------------|------|-----------|-----------|---------|
   324  `)
   325  }
   326  
   327  // CaptureState also tracks SLOAD/SSTORE ops to track storage change.
   328  func (t *mdLogger) CaptureState(pc uint64, op OpCode, gas, cost uint64, scope *ScopeContext, rData []byte, depth int, err error) {
   329  	stack := scope.Stack
   330  	fmt.Fprintf(t.out, "| %4d  | %10v  |  %3d |", pc, op, cost)
   331  
   332  	if !t.cfg.DisableStack {
   333  		// format stack
   334  		var a []string
   335  		for _, elem := range stack.data {
   336  			a = append(a, elem.Hex())
   337  		}
   338  		b := fmt.Sprintf("[%v]", strings.Join(a, ","))
   339  		fmt.Fprintf(t.out, "%10v |", b)
   340  	}
   341  	fmt.Fprintf(t.out, "%10v |", t.env.StateDB.GetRefund())
   342  	fmt.Fprintln(t.out, "")
   343  	if err != nil {
   344  		fmt.Fprintf(t.out, "Error: %v\n", err)
   345  	}
   346  }
   347  
   348  func (t *mdLogger) CaptureFault(pc uint64, op OpCode, gas, cost uint64, scope *ScopeContext, depth int, err error) {
   349  	fmt.Fprintf(t.out, "\nError: at pc=%d, op=%v: %v\n", pc, op, err)
   350  }
   351  
   352  func (t *mdLogger) CaptureEnd(output []byte, gasUsed uint64, tm time.Duration, err error) {
   353  	fmt.Fprintf(t.out, "\nOutput: `0x%x`\nConsumed gas: `%d`\nError: `%v`\n",
   354  		output, gasUsed, err)
   355  }
   356  
   357  func (t *mdLogger) CaptureEnter(typ OpCode, from common.Address, to common.Address, input []byte, gas uint64, value *big.Int) {
   358  }
   359  
   360  func (t *mdLogger) CaptureExit(output []byte, gasUsed uint64, err error) {}