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-10-18 11:31:20 +00:00
|
|
|
package vm
|
2014-07-22 09:54:48 +00:00
|
|
|
|
|
|
|
import (
|
2014-08-11 14:23:38 +00:00
|
|
|
"math/big"
|
|
|
|
|
2015-03-16 10:27:38 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2014-07-22 09:54:48 +00:00
|
|
|
)
|
|
|
|
|
2015-08-30 08:19:10 +00:00
|
|
|
// ContractRef is a reference to the contract's backing object
|
|
|
|
type ContractRef interface {
|
2014-07-22 09:54:48 +00:00
|
|
|
ReturnGas(*big.Int, *big.Int)
|
2015-03-16 17:42:18 +00:00
|
|
|
Address() common.Address
|
2014-12-03 16:06:54 +00:00
|
|
|
SetCode([]byte)
|
2016-01-11 16:20:31 +00:00
|
|
|
EachStorage(cb func(key, value []byte))
|
2014-07-22 09:54:48 +00:00
|
|
|
}
|
|
|
|
|
2015-08-30 08:19:10 +00:00
|
|
|
// Contract represents an ethereum contract in the state database. It contains
|
|
|
|
// the the contract code, calling arguments. Contract implements ContractReg
|
|
|
|
type Contract struct {
|
|
|
|
caller ContractRef
|
|
|
|
self ContractRef
|
2014-07-22 09:54:48 +00:00
|
|
|
|
2015-05-29 12:40:45 +00:00
|
|
|
jumpdests destinations // result of JUMPDEST analysis.
|
|
|
|
|
2015-03-13 12:44:15 +00:00
|
|
|
Code []byte
|
2015-07-17 21:09:36 +00:00
|
|
|
Input []byte
|
2015-03-17 10:19:23 +00:00
|
|
|
CodeAddr *common.Address
|
2015-03-13 12:44:15 +00:00
|
|
|
|
|
|
|
value, Gas, UsedGas, Price *big.Int
|
2014-07-22 09:54:48 +00:00
|
|
|
|
|
|
|
Args []byte
|
|
|
|
}
|
|
|
|
|
2015-05-29 12:40:45 +00:00
|
|
|
// Create a new context for the given data items.
|
2015-08-30 08:19:10 +00:00
|
|
|
func NewContract(caller ContractRef, object ContractRef, value, gas, price *big.Int) *Contract {
|
|
|
|
c := &Contract{caller: caller, self: object, Args: nil}
|
2014-07-22 09:54:48 +00:00
|
|
|
|
2015-08-30 08:19:10 +00:00
|
|
|
if parent, ok := caller.(*Contract); ok {
|
2015-05-29 12:40:45 +00:00
|
|
|
// Reuse JUMPDEST analysis from parent context if available.
|
|
|
|
c.jumpdests = parent.jumpdests
|
|
|
|
} else {
|
|
|
|
c.jumpdests = make(destinations)
|
|
|
|
}
|
|
|
|
|
2014-07-22 09:54:48 +00:00
|
|
|
// Gas should be a pointer so it can safely be reduced through the run
|
|
|
|
// This pointer will be off the state transition
|
|
|
|
c.Gas = gas //new(big.Int).Set(gas)
|
2015-03-13 12:44:15 +00:00
|
|
|
c.value = new(big.Int).Set(value)
|
2014-07-22 09:54:48 +00:00
|
|
|
// In most cases price and value are pointers to transaction objects
|
|
|
|
// and we don't want the transaction's values to change.
|
|
|
|
c.Price = new(big.Int).Set(price)
|
|
|
|
c.UsedGas = new(big.Int)
|
|
|
|
|
|
|
|
return c
|
|
|
|
}
|
|
|
|
|
2015-08-30 08:19:10 +00:00
|
|
|
// GetOp returns the n'th element in the contract's byte array
|
|
|
|
func (c *Contract) GetOp(n uint64) OpCode {
|
2015-01-04 13:20:16 +00:00
|
|
|
return OpCode(c.GetByte(n))
|
2014-10-14 09:48:52 +00:00
|
|
|
}
|
|
|
|
|
2015-08-30 08:19:10 +00:00
|
|
|
// GetByte returns the n'th byte in the contract's byte array
|
|
|
|
func (c *Contract) GetByte(n uint64) byte {
|
2015-06-10 08:44:46 +00:00
|
|
|
if n < uint64(len(c.Code)) {
|
|
|
|
return c.Code[n]
|
2014-10-14 09:48:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2015-08-30 08:19:10 +00:00
|
|
|
// Return returns the given ret argument and returns any remaining gas to the
|
|
|
|
// caller
|
|
|
|
func (c *Contract) Return(ret []byte) []byte {
|
2014-07-22 09:54:48 +00:00
|
|
|
// Return the remaining gas to the caller
|
|
|
|
c.caller.ReturnGas(c.Gas, c.Price)
|
|
|
|
|
|
|
|
return ret
|
|
|
|
}
|
|
|
|
|
2015-08-30 08:19:10 +00:00
|
|
|
// UseGas attempts the use gas and subtracts it and returns true on success
|
|
|
|
func (c *Contract) UseGas(gas *big.Int) (ok bool) {
|
|
|
|
ok = useGas(c.Gas, gas)
|
2015-03-28 19:03:25 +00:00
|
|
|
if ok {
|
|
|
|
c.UsedGas.Add(c.UsedGas, gas)
|
2014-07-22 09:54:48 +00:00
|
|
|
}
|
2015-03-28 19:03:25 +00:00
|
|
|
return
|
2014-07-22 09:54:48 +00:00
|
|
|
}
|
|
|
|
|
2015-08-30 08:19:10 +00:00
|
|
|
// ReturnGas adds the given gas back to itself.
|
|
|
|
func (c *Contract) ReturnGas(gas, price *big.Int) {
|
2015-01-02 15:14:12 +00:00
|
|
|
// Return the gas to the context
|
2014-07-22 09:54:48 +00:00
|
|
|
c.Gas.Add(c.Gas, gas)
|
|
|
|
c.UsedGas.Sub(c.UsedGas, gas)
|
|
|
|
}
|
|
|
|
|
2015-08-30 08:19:10 +00:00
|
|
|
// Address returns the contracts address
|
|
|
|
func (c *Contract) Address() common.Address {
|
2015-03-13 12:44:15 +00:00
|
|
|
return c.self.Address()
|
2014-12-03 16:35:57 +00:00
|
|
|
}
|
|
|
|
|
2015-08-30 08:19:10 +00:00
|
|
|
// SetCode sets the code to the contract
|
|
|
|
func (self *Contract) SetCode(code []byte) {
|
2014-12-03 16:35:57 +00:00
|
|
|
self.Code = code
|
|
|
|
}
|
2015-03-13 12:44:15 +00:00
|
|
|
|
2015-08-31 15:09:50 +00:00
|
|
|
// SetCallCode sets the code of the contract and address of the backing data
|
|
|
|
// object
|
2015-08-30 08:19:10 +00:00
|
|
|
func (self *Contract) SetCallCode(addr *common.Address, code []byte) {
|
2015-03-13 12:44:15 +00:00
|
|
|
self.Code = code
|
|
|
|
self.CodeAddr = addr
|
|
|
|
}
|
2016-01-11 16:20:31 +00:00
|
|
|
|
|
|
|
// EachStorage iterates the contract's storage and calls a method for every key
|
|
|
|
// value pair.
|
|
|
|
func (self *Contract) EachStorage(cb func(key, value []byte)) {
|
|
|
|
self.caller.EachStorage(cb)
|
|
|
|
}
|