| 
									
										
										
										
											2015-01-06 12:13:57 +01:00
										 |  |  | /* | 
					
						
							|  |  |  | 	This file is part of go-ethereum | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	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 | 
					
						
							|  |  |  | 	the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  | 	(at your option) any later version. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	go-ethereum is distributed in the hope that it will be useful, | 
					
						
							|  |  |  | 	but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  | 	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  | 	GNU General Public License for more details. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  | 	along with go-ethereum.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * @authors | 
					
						
							|  |  |  |  * 	Jeffrey Wilcke <i@jev.io> | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2014-07-24 12:30:41 +02:00
										 |  |  | package utils | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2014-08-11 16:24:35 +02:00
										 |  |  | 	"math/big" | 
					
						
							| 
									
										
										
										
											2014-12-03 17:22:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-04 10:28:02 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/core" | 
					
						
							|  |  |  | 	"github.com/ethereum/go-ethereum/core/types" | 
					
						
							| 
									
										
										
										
											2014-10-31 14:43:14 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/state" | 
					
						
							| 
									
										
										
										
											2014-10-23 15:01:27 +02:00
										 |  |  | 	"github.com/ethereum/go-ethereum/vm" | 
					
						
							| 
									
										
										
										
											2014-07-24 12:30:41 +02:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | type VMEnv struct { | 
					
						
							| 
									
										
										
										
											2015-01-03 17:18:43 +01:00
										 |  |  | 	chain *core.ChainManager | 
					
						
							| 
									
										
										
										
											2014-12-04 11:40:20 +01:00
										 |  |  | 	state *state.StateDB | 
					
						
							| 
									
										
										
										
											2014-11-18 16:58:22 +01:00
										 |  |  | 	block *types.Block | 
					
						
							| 
									
										
										
										
											2014-07-24 12:30:41 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	transactor []byte | 
					
						
							|  |  |  | 	value      *big.Int | 
					
						
							| 
									
										
										
										
											2014-12-03 17:22:26 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	depth int | 
					
						
							|  |  |  | 	Gas   *big.Int | 
					
						
							| 
									
										
										
										
											2014-07-24 12:30:41 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-03 17:18:43 +01:00
										 |  |  | func NewEnv(chain *core.ChainManager, state *state.StateDB, block *types.Block, transactor []byte, value *big.Int) *VMEnv { | 
					
						
							| 
									
										
										
										
											2014-07-24 12:30:41 +02:00
										 |  |  | 	return &VMEnv{ | 
					
						
							| 
									
										
										
										
											2015-01-03 17:18:43 +01:00
										 |  |  | 		chain:      chain, | 
					
						
							| 
									
										
										
										
											2014-07-24 12:30:41 +02:00
										 |  |  | 		state:      state, | 
					
						
							|  |  |  | 		block:      block, | 
					
						
							|  |  |  | 		transactor: transactor, | 
					
						
							|  |  |  | 		value:      value, | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-31 14:43:14 +01:00
										 |  |  | func (self *VMEnv) Origin() []byte        { return self.transactor } | 
					
						
							| 
									
										
										
										
											2014-12-23 13:48:44 +01:00
										 |  |  | func (self *VMEnv) BlockNumber() *big.Int { return self.block.Number() } | 
					
						
							|  |  |  | func (self *VMEnv) PrevHash() []byte      { return self.block.ParentHash() } | 
					
						
							|  |  |  | func (self *VMEnv) Coinbase() []byte      { return self.block.Coinbase() } | 
					
						
							|  |  |  | func (self *VMEnv) Time() int64           { return self.block.Time() } | 
					
						
							|  |  |  | func (self *VMEnv) Difficulty() *big.Int  { return self.block.Difficulty() } | 
					
						
							|  |  |  | func (self *VMEnv) GasLimit() *big.Int    { return self.block.GasLimit() } | 
					
						
							| 
									
										
										
										
											2014-10-31 14:43:14 +01:00
										 |  |  | func (self *VMEnv) Value() *big.Int       { return self.value } | 
					
						
							| 
									
										
										
										
											2014-12-04 11:40:20 +01:00
										 |  |  | func (self *VMEnv) State() *state.StateDB { return self.state } | 
					
						
							| 
									
										
										
										
											2014-12-03 17:22:26 +01:00
										 |  |  | func (self *VMEnv) Depth() int            { return self.depth } | 
					
						
							|  |  |  | func (self *VMEnv) SetDepth(i int)        { self.depth = i } | 
					
						
							| 
									
										
										
										
											2015-01-03 17:18:43 +01:00
										 |  |  | func (self *VMEnv) GetHash(n uint64) []byte { | 
					
						
							|  |  |  | 	if block := self.chain.GetBlockByNumber(n); block != nil { | 
					
						
							|  |  |  | 		return block.Hash() | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return nil | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-12-04 12:35:23 +01:00
										 |  |  | func (self *VMEnv) AddLog(log state.Log) { | 
					
						
							| 
									
										
										
										
											2014-12-03 17:22:26 +01:00
										 |  |  | 	self.state.AddLog(log) | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-10-23 01:01:41 +02:00
										 |  |  | func (self *VMEnv) Transfer(from, to vm.Account, amount *big.Int) error { | 
					
						
							|  |  |  | 	return vm.Transfer(from, to, amount) | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-12-03 17:22:26 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-04 10:28:02 +01:00
										 |  |  | func (self *VMEnv) vm(addr, data []byte, gas, price, value *big.Int) *core.Execution { | 
					
						
							| 
									
										
										
										
											2014-12-19 00:18:52 +01:00
										 |  |  | 	return core.NewExecution(self, addr, data, gas, price, value) | 
					
						
							| 
									
										
										
										
											2014-12-03 17:22:26 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-02 16:14:12 +01:00
										 |  |  | func (self *VMEnv) Call(caller vm.ContextRef, addr, data []byte, gas, price, value *big.Int) ([]byte, error) { | 
					
						
							| 
									
										
										
										
											2014-12-03 17:22:26 +01:00
										 |  |  | 	exe := self.vm(addr, data, gas, price, value) | 
					
						
							|  |  |  | 	ret, err := exe.Call(addr, caller) | 
					
						
							|  |  |  | 	self.Gas = exe.Gas | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret, err | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-01-02 16:14:12 +01:00
										 |  |  | func (self *VMEnv) CallCode(caller vm.ContextRef, addr, data []byte, gas, price, value *big.Int) ([]byte, error) { | 
					
						
							| 
									
										
										
										
											2014-12-03 17:22:26 +01:00
										 |  |  | 	exe := self.vm(caller.Address(), data, gas, price, value) | 
					
						
							|  |  |  | 	return exe.Call(addr, caller) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-02 16:14:12 +01:00
										 |  |  | func (self *VMEnv) Create(caller vm.ContextRef, addr, data []byte, gas, price, value *big.Int) ([]byte, error, vm.ContextRef) { | 
					
						
							| 
									
										
										
										
											2014-12-03 17:22:26 +01:00
										 |  |  | 	exe := self.vm(addr, data, gas, price, value) | 
					
						
							|  |  |  | 	return exe.Create(caller) | 
					
						
							|  |  |  | } |