| 
									
										
										
										
											2017-06-07 17:09:08 +02:00
										 |  |  | // Copyright 2017 The go-ethereum Authors | 
					
						
							| 
									
										
										
										
											2018-02-14 13:49:11 +01:00
										 |  |  | // This file is part of go-ethereum. | 
					
						
							| 
									
										
										
										
											2017-06-07 17:09:08 +02:00
										 |  |  | // | 
					
						
							| 
									
										
										
										
											2018-02-14 13:49:11 +01:00
										 |  |  | // go-ethereum is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  | // it under the terms of the GNU General Public License as published by | 
					
						
							| 
									
										
										
										
											2017-06-07 17:09:08 +02:00
										 |  |  | // the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  | // (at your option) any later version. | 
					
						
							|  |  |  | // | 
					
						
							| 
									
										
										
										
											2018-02-14 13:49:11 +01:00
										 |  |  | // go-ethereum is distributed in the hope that it will be useful, | 
					
						
							| 
									
										
										
										
											2017-06-07 17:09:08 +02:00
										 |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 
					
						
							| 
									
										
										
										
											2018-02-14 13:49:11 +01:00
										 |  |  | // GNU General Public License for more details. | 
					
						
							| 
									
										
										
										
											2017-06-07 17:09:08 +02:00
										 |  |  | // | 
					
						
							| 
									
										
										
										
											2018-02-14 13:49:11 +01:00
										 |  |  | // You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  | // along with go-ethereum. If not, see <http://www.gnu.org/licenses/>. | 
					
						
							| 
									
										
										
										
											2017-06-07 17:09:08 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-15 12:28:44 +02:00
										 |  |  | package vm | 
					
						
							| 
									
										
										
										
											2017-06-07 17:09:08 +02: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 13:56:11 +02:00
										 |  |  | 	"math/big" | 
					
						
							| 
									
										
										
										
											2017-06-07 17:09:08 +02:00
										 |  |  | 	"time" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	"github.com/ethereum/go-ethereum/common" | 
					
						
							|  |  |  | 	"github.com/ethereum/go-ethereum/common/math" | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type JSONLogger struct { | 
					
						
							|  |  |  | 	encoder *json.Encoder | 
					
						
							| 
									
										
										
										
											2018-10-15 12:28:44 +02:00
										 |  |  | 	cfg     *LogConfig | 
					
						
							| 
									
										
										
										
											2017-06-07 17:09:08 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-09 00:38:03 -07:00
										 |  |  | // NewJSONLogger creates a new EVM tracer that prints execution steps as JSON objects | 
					
						
							|  |  |  | // into the provided stream. | 
					
						
							| 
									
										
										
										
											2018-10-15 12:28:44 +02:00
										 |  |  | func NewJSONLogger(cfg *LogConfig, writer io.Writer) *JSONLogger { | 
					
						
							| 
									
										
										
										
											2017-06-21 14:52:31 +02:00
										 |  |  | 	return &JSONLogger{json.NewEncoder(writer), cfg} | 
					
						
							| 
									
										
										
										
											2017-06-07 17:09:08 +02: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 13:56:11 +02: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 17:09:08 +02:00
										 |  |  | // CaptureState outputs state information on the logger. | 
					
						
							| 
									
										
										
										
											2018-10-15 12:28:44 +02:00
										 |  |  | func (l *JSONLogger) CaptureState(env *EVM, pc uint64, op OpCode, gas, cost uint64, memory *Memory, stack *Stack, contract *Contract, depth int, err error) error { | 
					
						
							|  |  |  | 	log := StructLog{ | 
					
						
							| 
									
										
										
										
											2018-10-23 16:28:18 +02: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 14:52:31 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if !l.cfg.DisableMemory { | 
					
						
							|  |  |  | 		log.Memory = memory.Data() | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if !l.cfg.DisableStack { | 
					
						
							|  |  |  | 		log.Stack = stack.Data() | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return l.encoder.Encode(log) | 
					
						
							| 
									
										
										
										
											2017-06-07 17:09:08 +02: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 13:56:11 +02:00
										 |  |  | // CaptureFault outputs state information on the logger. | 
					
						
							| 
									
										
										
										
											2018-10-15 12:28:44 +02:00
										 |  |  | func (l *JSONLogger) CaptureFault(env *EVM, pc uint64, op OpCode, gas, cost uint64, memory *Memory, stack *Stack, 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 13:56:11 +02:00
										 |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-07 17:09:08 +02:00
										 |  |  | // CaptureEnd is triggered at end of execution. | 
					
						
							| 
									
										
										
										
											2017-08-23 13:37:18 +02:00
										 |  |  | func (l *JSONLogger) CaptureEnd(output []byte, gasUsed uint64, t time.Duration, err error) error { | 
					
						
							| 
									
										
										
										
											2017-06-07 17:09:08 +02:00
										 |  |  | 	type endLog struct { | 
					
						
							|  |  |  | 		Output  string              `json:"output"` | 
					
						
							|  |  |  | 		GasUsed math.HexOrDecimal64 `json:"gasUsed"` | 
					
						
							|  |  |  | 		Time    time.Duration       `json:"time"` | 
					
						
							| 
									
										
										
										
											2017-08-23 13:37:18 +02:00
										 |  |  | 		Err     string              `json:"error,omitempty"` | 
					
						
							| 
									
										
										
										
											2017-06-07 17:09:08 +02:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2017-08-23 13:37:18 +02: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 17:09:08 +02:00
										 |  |  | } |