quorum/core/dual_state_test.go

103 lines
3.3 KiB
Go
Raw Normal View History

core, core/vm: dual state & read only EVM This commit implements a dual state approach. The dual state approach separates public and private state by making the core vm environment context aware. Although not currently implemented it will need to prohibit value transfers and it must initialise all transactions from accounts on the public state. This means that sending transactions increments the account nonce on the public state and contract addresses are derived from the public state when initialised by a transaction. For obvious reasons, contract created by private contracts are still derived from public state. This is required in order to have consensus over the public state at all times as non-private participants would still process the transaction on the public state even though private payload can not be decrypted. This means that participants of a private group must do the same in order to have public consensus. However the creation of the contract and interaction still occurs on the private state. It implements support for the following calling model: S: sender, (X): private, X: public, ->: direction, [ ]: read only mode 1. S -> A -> B 2. S -> (A) -> (B) 3. S -> (A) -> [ B -> C ] It does not support 1. (S) -> A 2. (S) -> (A) 3. S -> (A) -> B Implemented "read only" mode for the EVM. Read only mode is checked during any opcode that could potentially modify the state. If such an opcode is encountered during "read only", it throws an exception. The EVM is flagged "read only" when a private contract calls in to public state.
2016-10-31 04:46:40 -07:00
package core
import (
"math/big"
"testing"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/state"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/core/vm"
"github.com/ethereum/go-ethereum/ethdb"
)
func TestDualStatePrivateToPublicCall(t *testing.T) {
callAddr := common.Address{1}
db, _ := ethdb.NewMemDatabase()
publicState, _ := state.New(common.Hash{}, db)
publicState.SetCode(common.Address{2}, common.Hex2Bytes("600a6000526001601ff300"))
privateState, _ := state.New(common.Hash{}, db)
privateState.SetCode(callAddr, common.Hex2Bytes("60016000600060006000730200000000000000000000000000000000000000620186a0f160005160005500"))
msg := callmsg{
from: publicState.GetOrNewStateObject(common.Address{}),
to: &callAddr,
value: big.NewInt(1),
gas: big.NewInt(1000000),
gasPrice: new(big.Int),
data: nil,
}
header := types.Header{
Number: new(big.Int),
}
env := NewEnv(publicState, privateState, &ChainConfig{}, nil, &msg, &header, vm.Config{})
env.Call(publicState.GetAccount(common.Address{}), callAddr, msg.data, msg.gas, msg.gasPrice, new(big.Int))
if value := privateState.GetState(callAddr, common.Hash{}); value != (common.Hash{10}) {
t.Errorf("expected 10 got %x", value)
}
}
func TestDualStatePublicToPrivateCall(t *testing.T) {
callAddr := common.Address{1}
db, _ := ethdb.NewMemDatabase()
privateState, _ := state.New(common.Hash{}, db)
privateState.SetCode(common.Address{2}, common.Hex2Bytes("600a6000526001601ff300"))
publicState, _ := state.New(common.Hash{}, db)
publicState.SetCode(callAddr, common.Hex2Bytes("60016000600060006000730200000000000000000000000000000000000000620186a0f160005160005500"))
msg := callmsg{
from: publicState.GetOrNewStateObject(common.Address{}),
to: &callAddr,
value: big.NewInt(1),
gas: big.NewInt(1000000),
gasPrice: new(big.Int),
data: nil,
}
header := types.Header{
Number: new(big.Int),
}
env := NewEnv(publicState, publicState, &ChainConfig{}, nil, &msg, &header, vm.Config{})
env.Call(publicState.GetAccount(common.Address{}), callAddr, msg.data, msg.gas, msg.gasPrice, new(big.Int))
if value := publicState.GetState(callAddr, common.Hash{}); value != (common.Hash{}) {
t.Errorf("expected 0 got %x", value)
}
}
func TestDualStateReadOnly(t *testing.T) {
callAddr := common.Address{1}
db, _ := ethdb.NewMemDatabase()
publicState, _ := state.New(common.Hash{}, db)
publicState.SetCode(common.Address{2}, common.Hex2Bytes("600a60005500"))
privateState, _ := state.New(common.Hash{}, db)
privateState.SetCode(callAddr, common.Hex2Bytes("60016000600060006000730200000000000000000000000000000000000000620186a0f160005160005500"))
msg := callmsg{
from: publicState.GetOrNewStateObject(common.Address{}),
to: &callAddr,
value: big.NewInt(1),
gas: big.NewInt(1000000),
gasPrice: new(big.Int),
data: nil,
}
header := types.Header{
Number: new(big.Int),
}
env := NewEnv(publicState, privateState, &ChainConfig{}, nil, &msg, &header, vm.Config{})
env.Call(publicState.GetAccount(common.Address{}), callAddr, msg.data, msg.gas, msg.gasPrice, new(big.Int))
if value := publicState.GetState(common.Address{2}, common.Hash{}); value != (common.Hash{0}) {
t.Errorf("expected 0 got %x", value)
}
}