vm_env.go 4.77 KB
Newer Older
1
// Copyright 2014 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 6 7 8
// 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.
//
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 13 14
// GNU Lesser General Public License for more details.
//
// 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

obscuren's avatar
obscuren committed
17
package core
18 19 20

import (
	"math/big"
obscuren's avatar
obscuren committed
21

obscuren's avatar
obscuren committed
22
	"github.com/ethereum/go-ethereum/common"
obscuren's avatar
obscuren committed
23
	"github.com/ethereum/go-ethereum/core/state"
obscuren's avatar
obscuren committed
24
	"github.com/ethereum/go-ethereum/core/types"
obscuren's avatar
obscuren committed
25
	"github.com/ethereum/go-ethereum/core/vm"
26 27
)

Leif Jurvetson's avatar
Leif Jurvetson committed
28
// GetHashFn returns a function for which the VM env can query block hashes through
29 30 31 32 33 34 35 36 37 38 39 40 41 42
// 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{}
	}
}

43
type VMEnv struct {
44 45 46 47 48
	chainConfig *ChainConfig   // Chain configuration
	state       *state.StateDB // State to use for executing
	evm         *vm.EVM        // The Ethereum Virtual Machine
	depth       int            // Current execution depth
	msg         Message        // Message appliod
49 50 51 52 53

	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
54 55
}

56
func NewEnv(state *state.StateDB, chainConfig *ChainConfig, chain *BlockChain, msg Message, header *types.Header, cfg vm.Config) *VMEnv {
57
	env := &VMEnv{
58 59 60 61 62 63
		chainConfig: chainConfig,
		chain:       chain,
		state:       state,
		header:      header,
		msg:         msg,
		getHashFn:   GetHashFn(header.ParentHash, chain),
64 65 66 67 68 69 70 71
	}

	// 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)
72
	return env
73 74
}

75
func (self *VMEnv) RuleSet() vm.RuleSet      { return self.chainConfig }
76
func (self *VMEnv) Vm() vm.Vm                { return self.evm }
77
func (self *VMEnv) Origin() common.Address   { f, _ := self.msg.From(); return f }
78 79
func (self *VMEnv) BlockNumber() *big.Int    { return self.header.Number }
func (self *VMEnv) Coinbase() common.Address { return self.header.Coinbase }
80
func (self *VMEnv) Time() *big.Int           { return self.header.Time }
81 82
func (self *VMEnv) Difficulty() *big.Int     { return self.header.Difficulty }
func (self *VMEnv) GasLimit() *big.Int       { return self.header.GasLimit }
obscuren's avatar
obscuren committed
83
func (self *VMEnv) Value() *big.Int          { return self.msg.Value() }
84
func (self *VMEnv) Db() vm.Database          { return self.state }
obscuren's avatar
obscuren committed
85 86 87
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 {
88
	return self.getHashFn(n)
89
}
90

91
func (self *VMEnv) AddLog(log *vm.Log) {
92
	self.state.AddLog(log)
obscuren's avatar
obscuren committed
93
}
94 95 96 97 98 99 100 101 102 103
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))
104 105
}

106 107
func (self *VMEnv) Transfer(from, to vm.Account, amount *big.Int) {
	Transfer(from, to, amount)
obscuren's avatar
obscuren committed
108
}
109

110 111
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)
112
}
113 114
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)
115 116
}

117 118 119 120
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)
}

121 122
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)
123
}
124 125 126 127 128 129 130 131

func (self *VMEnv) StructLogs() []vm.StructLog {
	return self.logs
}

func (self *VMEnv) AddStructLog(log vm.StructLog) {
	self.logs = append(self.logs, log)
}