2014-10-18 11:31:20 +00:00
|
|
|
package vm
|
2014-07-22 09:54:48 +00:00
|
|
|
|
|
|
|
// TODO Re write VM to use values instead of big integers?
|
|
|
|
|
|
|
|
import (
|
2014-08-11 14:23:38 +00:00
|
|
|
"math/big"
|
|
|
|
|
2014-10-23 13:01:27 +00:00
|
|
|
"github.com/ethereum/go-ethereum/ethutil"
|
2014-10-31 13:43:14 +00:00
|
|
|
"github.com/ethereum/go-ethereum/state"
|
2014-07-22 09:54:48 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type ClosureRef interface {
|
|
|
|
ReturnGas(*big.Int, *big.Int)
|
|
|
|
Address() []byte
|
2014-12-03 16:06:54 +00:00
|
|
|
SetCode([]byte)
|
2014-07-22 09:54:48 +00:00
|
|
|
GetStorage(*big.Int) *ethutil.Value
|
|
|
|
SetStorage(*big.Int, *ethutil.Value)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Basic inline closure object which implement the 'closure' interface
|
|
|
|
type Closure struct {
|
2014-08-15 14:19:10 +00:00
|
|
|
caller ClosureRef
|
2014-12-03 16:06:54 +00:00
|
|
|
object ClosureRef
|
2014-08-15 14:19:10 +00:00
|
|
|
Code []byte
|
2014-10-31 13:43:14 +00:00
|
|
|
message *state.Message
|
2014-07-22 09:54:48 +00:00
|
|
|
|
|
|
|
Gas, UsedGas, Price *big.Int
|
|
|
|
|
|
|
|
Args []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a new closure for the given data items
|
2014-12-03 16:06:54 +00:00
|
|
|
func NewClosure(msg *state.Message, caller ClosureRef, object ClosureRef, code []byte, gas, price *big.Int) *Closure {
|
2014-08-15 14:19:10 +00:00
|
|
|
c := &Closure{message: msg, caller: caller, object: object, Code: code, Args: nil}
|
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)
|
|
|
|
// 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
|
|
|
|
}
|
|
|
|
|
|
|
|
// Retuns the x element in data slice
|
|
|
|
func (c *Closure) GetStorage(x *big.Int) *ethutil.Value {
|
|
|
|
m := c.object.GetStorage(x)
|
|
|
|
if m == nil {
|
|
|
|
return ethutil.EmptyValue()
|
|
|
|
}
|
|
|
|
|
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Closure) Get(x *big.Int) *ethutil.Value {
|
|
|
|
return c.Gets(x, big.NewInt(1))
|
|
|
|
}
|
|
|
|
|
2014-10-14 09:48:52 +00:00
|
|
|
func (c *Closure) GetOp(x int) OpCode {
|
|
|
|
return OpCode(c.GetByte(x))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Closure) GetByte(x int) byte {
|
2014-12-01 19:49:56 +00:00
|
|
|
if x > -1 && x < len(c.Code) {
|
2014-10-14 09:48:52 +00:00
|
|
|
return c.Code[x]
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Closure) GetBytes(x, y int) []byte {
|
|
|
|
if x >= len(c.Code) || y >= len(c.Code) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return c.Code[x : x+y]
|
|
|
|
}
|
|
|
|
|
2014-07-22 09:54:48 +00:00
|
|
|
func (c *Closure) Gets(x, y *big.Int) *ethutil.Value {
|
|
|
|
if x.Int64() >= int64(len(c.Code)) || y.Int64() >= int64(len(c.Code)) {
|
|
|
|
return ethutil.NewValue(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
partial := c.Code[x.Int64() : x.Int64()+y.Int64()]
|
|
|
|
|
|
|
|
return ethutil.NewValue(partial)
|
|
|
|
}
|
|
|
|
|
2014-12-03 16:06:54 +00:00
|
|
|
func (self *Closure) SetCode(code []byte) {
|
|
|
|
self.Code = code
|
|
|
|
}
|
|
|
|
|
2014-07-22 09:54:48 +00:00
|
|
|
func (c *Closure) SetStorage(x *big.Int, val *ethutil.Value) {
|
|
|
|
c.object.SetStorage(x, val)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Closure) Address() []byte {
|
|
|
|
return c.object.Address()
|
|
|
|
}
|
|
|
|
|
2014-12-03 16:06:54 +00:00
|
|
|
/*
|
2014-10-14 09:48:52 +00:00
|
|
|
func (c *Closure) Call(vm VirtualMachine, args []byte) ([]byte, *big.Int, error) {
|
2014-07-22 09:54:48 +00:00
|
|
|
c.Args = args
|
|
|
|
|
|
|
|
ret, err := vm.RunClosure(c)
|
|
|
|
|
|
|
|
return ret, c.UsedGas, err
|
|
|
|
}
|
2014-12-03 16:06:54 +00:00
|
|
|
*/
|
2014-07-22 09:54:48 +00:00
|
|
|
|
|
|
|
func (c *Closure) Return(ret []byte) []byte {
|
|
|
|
// Return the remaining gas to the caller
|
|
|
|
c.caller.ReturnGas(c.Gas, c.Price)
|
|
|
|
|
|
|
|
return ret
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Closure) UseGas(gas *big.Int) bool {
|
|
|
|
if c.Gas.Cmp(gas) < 0 {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sub the amount of gas from the remaining
|
|
|
|
c.Gas.Sub(c.Gas, gas)
|
|
|
|
c.UsedGas.Add(c.UsedGas, gas)
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Implement the caller interface
|
|
|
|
func (c *Closure) ReturnGas(gas, price *big.Int) {
|
|
|
|
// Return the gas to the closure
|
|
|
|
c.Gas.Add(c.Gas, gas)
|
|
|
|
c.UsedGas.Sub(c.UsedGas, gas)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Closure) Caller() ClosureRef {
|
|
|
|
return c.caller
|
|
|
|
}
|