2014-06-13 10:58:01 +00:00
|
|
|
package ethchain
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2014-07-29 22:31:15 +00:00
|
|
|
"math/big"
|
|
|
|
|
2014-10-23 13:01:27 +00:00
|
|
|
"github.com/ethereum/go-ethereum/ethstate"
|
|
|
|
"github.com/ethereum/go-ethereum/ethtrie"
|
|
|
|
"github.com/ethereum/go-ethereum/ethutil"
|
|
|
|
"github.com/ethereum/go-ethereum/vm"
|
2014-06-13 10:58:01 +00:00
|
|
|
)
|
|
|
|
|
2014-06-13 11:06:27 +00:00
|
|
|
/*
|
|
|
|
* The State transitioning model
|
|
|
|
*
|
|
|
|
* A state transition is a change made when a transaction is applied to the current world state
|
|
|
|
* The state transitioning model does all all the necessary work to work out a valid new state root.
|
|
|
|
* 1) Nonce handling
|
|
|
|
* 2) Pre pay / buy gas of the coinbase (miner)
|
|
|
|
* 3) Create a new state object if the recipient is \0*32
|
|
|
|
* 4) Value transfer
|
|
|
|
* == If contract creation ==
|
|
|
|
* 4a) Attempt to run transaction data
|
|
|
|
* 4b) If valid, use result as code for the new state object
|
|
|
|
* == end ==
|
|
|
|
* 5) Run Script section
|
|
|
|
* 6) Derive new state root
|
|
|
|
*/
|
2014-06-13 10:58:01 +00:00
|
|
|
type StateTransition struct {
|
2014-06-19 11:41:17 +00:00
|
|
|
coinbase, receiver []byte
|
|
|
|
tx *Transaction
|
|
|
|
gas, gasPrice *big.Int
|
|
|
|
value *big.Int
|
|
|
|
data []byte
|
2014-07-24 10:04:15 +00:00
|
|
|
state *ethstate.State
|
2014-06-19 11:41:17 +00:00
|
|
|
block *Block
|
2014-06-13 10:58:01 +00:00
|
|
|
|
2014-07-24 10:04:15 +00:00
|
|
|
cb, rec, sen *ethstate.StateObject
|
2014-06-13 10:58:01 +00:00
|
|
|
}
|
|
|
|
|
2014-07-24 10:04:15 +00:00
|
|
|
func NewStateTransition(coinbase *ethstate.StateObject, tx *Transaction, state *ethstate.State, block *Block) *StateTransition {
|
2014-06-19 11:41:17 +00:00
|
|
|
return &StateTransition{coinbase.Address(), tx.Recipient, tx, new(big.Int), new(big.Int).Set(tx.GasPrice), tx.Value, tx.Data, state, block, coinbase, nil, nil}
|
2014-06-13 10:58:01 +00:00
|
|
|
}
|
|
|
|
|
2014-07-24 10:04:15 +00:00
|
|
|
func (self *StateTransition) Coinbase() *ethstate.StateObject {
|
2014-06-13 10:58:01 +00:00
|
|
|
if self.cb != nil {
|
|
|
|
return self.cb
|
|
|
|
}
|
|
|
|
|
2014-07-17 12:53:27 +00:00
|
|
|
self.cb = self.state.GetOrNewStateObject(self.coinbase)
|
2014-06-13 10:58:01 +00:00
|
|
|
return self.cb
|
|
|
|
}
|
2014-07-24 10:04:15 +00:00
|
|
|
func (self *StateTransition) Sender() *ethstate.StateObject {
|
2014-06-13 10:58:01 +00:00
|
|
|
if self.sen != nil {
|
|
|
|
return self.sen
|
|
|
|
}
|
|
|
|
|
2014-07-17 12:53:27 +00:00
|
|
|
self.sen = self.state.GetOrNewStateObject(self.tx.Sender())
|
2014-07-03 08:05:02 +00:00
|
|
|
|
2014-06-13 10:58:01 +00:00
|
|
|
return self.sen
|
|
|
|
}
|
2014-07-24 10:04:15 +00:00
|
|
|
func (self *StateTransition) Receiver() *ethstate.StateObject {
|
2014-06-19 11:41:17 +00:00
|
|
|
if self.tx != nil && self.tx.CreatesContract() {
|
2014-06-13 10:58:01 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if self.rec != nil {
|
|
|
|
return self.rec
|
|
|
|
}
|
|
|
|
|
2014-07-17 12:53:27 +00:00
|
|
|
self.rec = self.state.GetOrNewStateObject(self.tx.Recipient)
|
2014-06-13 10:58:01 +00:00
|
|
|
return self.rec
|
|
|
|
}
|
|
|
|
|
|
|
|
func (self *StateTransition) UseGas(amount *big.Int) error {
|
|
|
|
if self.gas.Cmp(amount) < 0 {
|
|
|
|
return OutOfGasError()
|
|
|
|
}
|
|
|
|
self.gas.Sub(self.gas, amount)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (self *StateTransition) AddGas(amount *big.Int) {
|
|
|
|
self.gas.Add(self.gas, amount)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (self *StateTransition) BuyGas() error {
|
|
|
|
var err error
|
|
|
|
|
|
|
|
sender := self.Sender()
|
2014-10-22 23:01:26 +00:00
|
|
|
if sender.Balance().Cmp(self.tx.GasValue()) < 0 {
|
|
|
|
return fmt.Errorf("Insufficient funds to pre-pay gas. Req %v, has %v", self.tx.GasValue(), sender.Balance())
|
2014-06-13 10:58:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
coinbase := self.Coinbase()
|
|
|
|
err = coinbase.BuyGas(self.tx.Gas, self.tx.GasPrice)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
self.AddGas(self.tx.Gas)
|
|
|
|
sender.SubAmount(self.tx.GasValue())
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-06-16 10:25:18 +00:00
|
|
|
func (self *StateTransition) RefundGas() {
|
|
|
|
coinbase, sender := self.Coinbase(), self.Sender()
|
|
|
|
coinbase.RefundGas(self.gas, self.tx.GasPrice)
|
|
|
|
|
|
|
|
// Return remaining gas
|
|
|
|
remaining := new(big.Int).Mul(self.gas, self.tx.GasPrice)
|
|
|
|
sender.AddAmount(remaining)
|
|
|
|
}
|
|
|
|
|
2014-06-19 11:41:17 +00:00
|
|
|
func (self *StateTransition) preCheck() (err error) {
|
|
|
|
var (
|
|
|
|
tx = self.tx
|
|
|
|
sender = self.Sender()
|
|
|
|
)
|
|
|
|
|
|
|
|
// Make sure this transaction's nonce is correct
|
|
|
|
if sender.Nonce != tx.Nonce {
|
|
|
|
return NonceError(tx.Nonce, sender.Nonce)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pre-pay gas / Buy gas of the coinbase account
|
|
|
|
if err = self.BuyGas(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2014-06-13 10:58:01 +00:00
|
|
|
func (self *StateTransition) TransitionState() (err error) {
|
2014-08-22 08:58:14 +00:00
|
|
|
statelogger.Debugf("(~) %x\n", self.tx.Hash())
|
2014-06-13 10:58:01 +00:00
|
|
|
|
2014-09-30 21:26:52 +00:00
|
|
|
defer func() {
|
|
|
|
if r := recover(); r != nil {
|
|
|
|
statelogger.Infoln(r)
|
|
|
|
err = fmt.Errorf("state transition err %v", r)
|
|
|
|
}
|
|
|
|
}()
|
2014-06-13 10:58:01 +00:00
|
|
|
|
2014-06-19 11:41:17 +00:00
|
|
|
// XXX Transactions after this point are considered valid.
|
|
|
|
if err = self.preCheck(); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-06-13 10:58:01 +00:00
|
|
|
var (
|
|
|
|
tx = self.tx
|
|
|
|
sender = self.Sender()
|
2014-07-24 10:04:15 +00:00
|
|
|
receiver *ethstate.StateObject
|
2014-06-13 10:58:01 +00:00
|
|
|
)
|
|
|
|
|
2014-06-19 22:45:44 +00:00
|
|
|
defer self.RefundGas()
|
|
|
|
|
2014-06-14 09:46:09 +00:00
|
|
|
// Increment the nonce for the next transaction
|
|
|
|
sender.Nonce += 1
|
|
|
|
|
2014-06-13 14:06:27 +00:00
|
|
|
// Transaction gas
|
2014-10-18 11:31:20 +00:00
|
|
|
if err = self.UseGas(vm.GasTx); err != nil {
|
2014-06-19 11:41:17 +00:00
|
|
|
return
|
2014-06-13 10:58:01 +00:00
|
|
|
}
|
|
|
|
|
2014-06-13 14:06:27 +00:00
|
|
|
// Pay data gas
|
2014-06-19 11:41:17 +00:00
|
|
|
dataPrice := big.NewInt(int64(len(self.data)))
|
2014-10-18 11:31:20 +00:00
|
|
|
dataPrice.Mul(dataPrice, vm.GasData)
|
2014-06-13 10:58:01 +00:00
|
|
|
if err = self.UseGas(dataPrice); err != nil {
|
2014-06-19 11:41:17 +00:00
|
|
|
return
|
2014-06-13 10:58:01 +00:00
|
|
|
}
|
|
|
|
|
2014-10-22 23:01:26 +00:00
|
|
|
if sender.Balance().Cmp(self.value) < 0 {
|
2014-07-29 22:31:15 +00:00
|
|
|
return fmt.Errorf("Insufficient funds to transfer value. Req %v, has %v", self.value, sender.Balance)
|
2014-07-17 12:53:27 +00:00
|
|
|
}
|
2014-07-07 08:53:20 +00:00
|
|
|
|
2014-07-24 10:04:15 +00:00
|
|
|
var snapshot *ethstate.State
|
2014-06-13 14:06:27 +00:00
|
|
|
// If the receiver is nil it's a contract (\0*32).
|
2014-07-07 11:59:09 +00:00
|
|
|
if tx.CreatesContract() {
|
2014-07-17 12:53:27 +00:00
|
|
|
// Subtract the (irreversible) amount from the senders account
|
|
|
|
sender.SubAmount(self.value)
|
|
|
|
|
2014-07-07 11:59:09 +00:00
|
|
|
snapshot = self.state.Copy()
|
|
|
|
|
2014-06-13 14:06:27 +00:00
|
|
|
// Create a new state object for the contract
|
2014-10-16 16:27:05 +00:00
|
|
|
receiver := MakeContract(tx, self.state)
|
2014-07-07 11:59:09 +00:00
|
|
|
self.rec = receiver
|
2014-06-13 10:58:01 +00:00
|
|
|
if receiver == nil {
|
2014-06-19 22:45:44 +00:00
|
|
|
return fmt.Errorf("Unable to create contract")
|
2014-06-13 10:58:01 +00:00
|
|
|
}
|
2014-07-17 12:53:27 +00:00
|
|
|
|
|
|
|
// Add the amount to receivers account which should conclude this transaction
|
|
|
|
receiver.AddAmount(self.value)
|
2014-07-07 11:59:09 +00:00
|
|
|
} else {
|
|
|
|
receiver = self.Receiver()
|
2014-06-13 10:58:01 +00:00
|
|
|
|
2014-07-17 12:53:27 +00:00
|
|
|
// Subtract the amount from the senders account
|
|
|
|
sender.SubAmount(self.value)
|
|
|
|
// Add the amount to receivers account which should conclude this transaction
|
|
|
|
receiver.AddAmount(self.value)
|
2014-06-13 10:58:01 +00:00
|
|
|
|
2014-07-07 11:59:09 +00:00
|
|
|
snapshot = self.state.Copy()
|
|
|
|
}
|
2014-07-07 09:17:48 +00:00
|
|
|
|
2014-08-11 14:23:38 +00:00
|
|
|
msg := self.state.Manifest().AddMessage(ðstate.Message{
|
|
|
|
To: receiver.Address(), From: sender.Address(),
|
|
|
|
Input: self.tx.Data,
|
|
|
|
Origin: sender.Address(),
|
|
|
|
Block: self.block.Hash(), Timestamp: self.block.Time, Coinbase: self.block.Coinbase, Number: self.block.Number,
|
2014-08-18 08:17:45 +00:00
|
|
|
Value: self.value,
|
2014-08-11 14:23:38 +00:00
|
|
|
})
|
|
|
|
|
2014-06-13 14:06:27 +00:00
|
|
|
// Process the init code and create 'valid' contract
|
2014-06-19 11:41:17 +00:00
|
|
|
if IsContractAddr(self.receiver) {
|
2014-06-13 10:58:01 +00:00
|
|
|
// Evaluate the initialization script
|
|
|
|
// and use the return value as the
|
|
|
|
// script section for the state object.
|
2014-06-19 11:41:17 +00:00
|
|
|
self.data = nil
|
2014-06-18 11:48:42 +00:00
|
|
|
|
2014-10-14 09:48:52 +00:00
|
|
|
code, err := self.Eval(msg, receiver.Init(), receiver)
|
2014-07-03 14:07:21 +00:00
|
|
|
if err != nil {
|
2014-07-07 08:53:20 +00:00
|
|
|
self.state.Set(snapshot)
|
2014-06-19 11:41:17 +00:00
|
|
|
|
2014-07-03 14:07:21 +00:00
|
|
|
return fmt.Errorf("Error during init execution %v", err)
|
2014-06-13 10:58:01 +00:00
|
|
|
}
|
|
|
|
|
2014-07-24 10:04:15 +00:00
|
|
|
receiver.Code = code
|
2014-08-11 14:23:38 +00:00
|
|
|
msg.Output = code
|
2014-06-14 22:11:06 +00:00
|
|
|
} else {
|
2014-07-24 10:04:15 +00:00
|
|
|
if len(receiver.Code) > 0 {
|
2014-10-14 09:48:52 +00:00
|
|
|
ret, err := self.Eval(msg, receiver.Code, receiver)
|
2014-06-14 22:11:06 +00:00
|
|
|
if err != nil {
|
2014-07-07 08:53:20 +00:00
|
|
|
self.state.Set(snapshot)
|
2014-06-19 11:41:17 +00:00
|
|
|
|
2014-07-03 14:07:21 +00:00
|
|
|
return fmt.Errorf("Error during code execution %v", err)
|
2014-06-14 22:11:06 +00:00
|
|
|
}
|
2014-08-11 14:23:38 +00:00
|
|
|
|
|
|
|
msg.Output = ret
|
2014-10-27 10:44:16 +00:00
|
|
|
} else {
|
|
|
|
// Add default LOG
|
|
|
|
// PUSH1 1 CALLER ADD LOG1
|
|
|
|
addr := ethutil.BigD(sender.Address())
|
|
|
|
addr.Add(addr, ethutil.Big1)
|
|
|
|
tx.addLog(vm.Log{sender.Address(), []*big.Int{addr}, nil})
|
2014-06-14 22:11:06 +00:00
|
|
|
}
|
2014-06-13 10:58:01 +00:00
|
|
|
}
|
|
|
|
|
2014-06-19 11:41:17 +00:00
|
|
|
return
|
2014-06-13 10:58:01 +00:00
|
|
|
}
|
|
|
|
|
2014-10-14 09:48:52 +00:00
|
|
|
func (self *StateTransition) Eval(msg *ethstate.Message, script []byte, context *ethstate.StateObject) (ret []byte, err error) {
|
2014-06-13 10:58:01 +00:00
|
|
|
var (
|
2014-07-24 10:04:15 +00:00
|
|
|
transactor = self.Sender()
|
|
|
|
state = self.state
|
|
|
|
env = NewEnv(state, self.tx, self.block)
|
2014-10-18 11:31:20 +00:00
|
|
|
callerClosure = vm.NewClosure(msg, transactor, context, script, self.gas, self.gasPrice)
|
2014-06-13 10:58:01 +00:00
|
|
|
)
|
|
|
|
|
2014-10-18 11:31:20 +00:00
|
|
|
//vm := vm.New(env, vm.Type(ethutil.Config.VmType))
|
2014-10-22 23:01:26 +00:00
|
|
|
evm := vm.New(env, vm.DebugVmTy)
|
2014-06-13 10:58:01 +00:00
|
|
|
|
2014-10-22 23:01:26 +00:00
|
|
|
ret, _, err = callerClosure.Call(evm, self.tx.Data)
|
2014-07-24 10:04:15 +00:00
|
|
|
|
2014-06-13 10:58:01 +00:00
|
|
|
return
|
|
|
|
}
|
2014-07-24 10:04:15 +00:00
|
|
|
|
|
|
|
// Converts an transaction in to a state object
|
|
|
|
func MakeContract(tx *Transaction, state *ethstate.State) *ethstate.StateObject {
|
|
|
|
// Create contract if there's no recipient
|
|
|
|
if tx.IsContract() {
|
2014-10-02 15:03:15 +00:00
|
|
|
addr := tx.CreationAddress(state)
|
2014-07-24 10:04:15 +00:00
|
|
|
|
2014-10-02 15:03:15 +00:00
|
|
|
contract := state.GetOrNewStateObject(addr)
|
2014-07-24 10:04:15 +00:00
|
|
|
contract.InitCode = tx.Data
|
2014-08-04 08:42:40 +00:00
|
|
|
contract.State = ethstate.New(ethtrie.New(ethutil.Config.Db, ""))
|
2014-07-24 10:04:15 +00:00
|
|
|
|
|
|
|
return contract
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|