2015-07-07 00:54:22 +00:00
|
|
|
// Copyright 2014 The go-ethereum Authors
|
2015-07-22 16:48:40 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
2015-07-07 00:54:22 +00:00
|
|
|
//
|
2015-07-23 16:35:11 +00:00
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
2015-07-07 00:54:22 +00: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 16:48:40 +00:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2015-07-07 00:54:22 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-07-22 16:48:40 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-07 00:54:22 +00: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 16:48:40 +00:00
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
2015-07-07 00:54:22 +00:00
|
|
|
|
2014-12-04 09:28:02 +00:00
|
|
|
package core
|
2014-07-24 10:04:15 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"math/big"
|
2014-08-11 14:23:38 +00:00
|
|
|
|
2015-03-16 22:17:28 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2015-03-23 15:59:09 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/state"
|
2015-03-24 14:23:16 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
2015-03-23 15:59:09 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/vm"
|
2014-07-24 10:04:15 +00:00
|
|
|
)
|
|
|
|
|
2016-03-15 18:08:18 +00:00
|
|
|
// GetHashFn returns a function for which the VM env can query block hashes through
|
2016-02-09 22:20:42 +00:00
|
|
|
// up to the limit defined by the Yellow Paper and uses the given block chain
|
|
|
|
// to query for information.
|
|
|
|
func GetHashFn(ref common.Hash, chain *BlockChain) func(n uint64) common.Hash {
|
|
|
|
return func(n uint64) common.Hash {
|
|
|
|
for block := chain.GetBlock(ref); block != nil; block = chain.GetBlock(block.ParentHash()) {
|
|
|
|
if block.NumberU64() == n {
|
|
|
|
return block.Hash()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return common.Hash{}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-24 10:04:15 +00:00
|
|
|
type VMEnv struct {
|
2016-02-03 22:46:27 +00:00
|
|
|
state *state.StateDB // State to use for executing
|
|
|
|
evm *vm.EVM // The Ethereum Virtual Machine
|
|
|
|
depth int // Current execution depth
|
|
|
|
msg Message // Message appliod
|
|
|
|
|
|
|
|
header *types.Header // Header information
|
|
|
|
chain *BlockChain // Blockchain handle
|
|
|
|
logs []vm.StructLog // Logs for the custom structured logger
|
|
|
|
getHashFn func(uint64) common.Hash // getHashFn callback is used to retrieve block hashes
|
|
|
|
|
2014-07-24 10:04:15 +00:00
|
|
|
}
|
|
|
|
|
2016-02-03 22:46:27 +00:00
|
|
|
func NewEnv(state *state.StateDB, chain *BlockChain, msg Message, header *types.Header, cfg *vm.Config) *VMEnv {
|
2016-01-21 14:29:58 +00:00
|
|
|
env := &VMEnv{
|
2016-02-09 22:20:42 +00:00
|
|
|
chain: chain,
|
|
|
|
state: state,
|
|
|
|
header: header,
|
|
|
|
msg: msg,
|
|
|
|
getHashFn: GetHashFn(header.ParentHash, chain),
|
2014-07-24 10:04:15 +00:00
|
|
|
}
|
2016-02-03 22:46:27 +00:00
|
|
|
|
|
|
|
// initialise a default config if none present
|
|
|
|
if cfg == nil {
|
|
|
|
cfg = new(vm.Config)
|
|
|
|
}
|
|
|
|
|
|
|
|
// if no log collector is present set self as the collector
|
|
|
|
if cfg.Logger.Collector == nil {
|
|
|
|
cfg.Logger.Collector = env
|
|
|
|
}
|
|
|
|
|
|
|
|
env.evm = vm.New(env, cfg)
|
2016-01-21 14:29:58 +00:00
|
|
|
return env
|
2014-07-24 10:04:15 +00:00
|
|
|
}
|
|
|
|
|
2016-02-03 22:46:27 +00:00
|
|
|
func (self *VMEnv) Vm() vm.Vm { return self.evm }
|
2015-03-17 11:16:21 +00:00
|
|
|
func (self *VMEnv) Origin() common.Address { f, _ := self.msg.From(); return f }
|
2015-06-16 10:41:50 +00:00
|
|
|
func (self *VMEnv) BlockNumber() *big.Int { return self.header.Number }
|
|
|
|
func (self *VMEnv) Coinbase() common.Address { return self.header.Coinbase }
|
2015-08-24 00:52:53 +00:00
|
|
|
func (self *VMEnv) Time() *big.Int { return self.header.Time }
|
2015-06-16 10:41:50 +00:00
|
|
|
func (self *VMEnv) Difficulty() *big.Int { return self.header.Difficulty }
|
|
|
|
func (self *VMEnv) GasLimit() *big.Int { return self.header.GasLimit }
|
2015-03-17 10:19:23 +00:00
|
|
|
func (self *VMEnv) Value() *big.Int { return self.msg.Value() }
|
2015-08-30 08:19:10 +00:00
|
|
|
func (self *VMEnv) Db() vm.Database { return self.state }
|
2015-03-17 10:19:23 +00:00
|
|
|
func (self *VMEnv) Depth() int { return self.depth }
|
|
|
|
func (self *VMEnv) SetDepth(i int) { self.depth = i }
|
|
|
|
func (self *VMEnv) GetHash(n uint64) common.Hash {
|
2016-02-09 22:20:42 +00:00
|
|
|
return self.getHashFn(n)
|
2015-01-03 16:18:43 +00:00
|
|
|
}
|
2015-06-10 10:23:49 +00:00
|
|
|
|
2015-08-30 08:19:10 +00:00
|
|
|
func (self *VMEnv) AddLog(log *vm.Log) {
|
2014-10-30 12:32:50 +00:00
|
|
|
self.state.AddLog(log)
|
2014-10-27 10:44:16 +00:00
|
|
|
}
|
2015-08-30 08:19:10 +00:00
|
|
|
func (self *VMEnv) CanTransfer(from common.Address, balance *big.Int) bool {
|
|
|
|
return self.state.GetBalance(from).Cmp(balance) >= 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (self *VMEnv) MakeSnapshot() vm.Database {
|
|
|
|
return self.state.Copy()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (self *VMEnv) SetSnapshot(copy vm.Database) {
|
|
|
|
self.state.Set(copy.(*state.StateDB))
|
2015-08-02 00:20:41 +00:00
|
|
|
}
|
|
|
|
|
2015-10-06 10:35:05 +00:00
|
|
|
func (self *VMEnv) Transfer(from, to vm.Account, amount *big.Int) {
|
|
|
|
Transfer(from, to, amount)
|
2014-10-22 23:01:26 +00:00
|
|
|
}
|
2014-12-03 16:06:54 +00:00
|
|
|
|
2015-08-30 08:19:10 +00:00
|
|
|
func (self *VMEnv) Call(me vm.ContractRef, addr common.Address, data []byte, gas, price, value *big.Int) ([]byte, error) {
|
|
|
|
return Call(self, me, addr, data, gas, price, value)
|
2014-12-03 16:06:54 +00:00
|
|
|
}
|
2015-08-30 08:19:10 +00:00
|
|
|
func (self *VMEnv) CallCode(me vm.ContractRef, addr common.Address, data []byte, gas, price, value *big.Int) ([]byte, error) {
|
|
|
|
return CallCode(self, me, addr, data, gas, price, value)
|
2014-12-03 16:06:54 +00:00
|
|
|
}
|
|
|
|
|
2015-11-27 14:40:29 +00:00
|
|
|
func (self *VMEnv) DelegateCall(me vm.ContractRef, addr common.Address, data []byte, gas, price *big.Int) ([]byte, error) {
|
|
|
|
return DelegateCall(self, me, addr, data, gas, price)
|
|
|
|
}
|
|
|
|
|
2015-08-30 08:19:10 +00:00
|
|
|
func (self *VMEnv) Create(me vm.ContractRef, data []byte, gas, price, value *big.Int) ([]byte, common.Address, error) {
|
|
|
|
return Create(self, me, data, gas, price, value)
|
2014-12-03 16:06:54 +00:00
|
|
|
}
|
2015-06-10 10:23:49 +00:00
|
|
|
|
|
|
|
func (self *VMEnv) StructLogs() []vm.StructLog {
|
|
|
|
return self.logs
|
|
|
|
}
|
|
|
|
|
|
|
|
func (self *VMEnv) AddStructLog(log vm.StructLog) {
|
|
|
|
self.logs = append(self.logs, log)
|
|
|
|
}
|