2019-10-17 04:53:25 +00:00
|
|
|
package validation
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-02-10 19:16:36 +00:00
|
|
|
|
|
|
|
"github.com/filecoin-project/specs-actors/actors/abi"
|
2020-02-27 00:42:39 +00:00
|
|
|
"github.com/filecoin-project/specs-actors/actors/crypto"
|
2020-02-27 22:17:08 +00:00
|
|
|
"github.com/filecoin-project/specs-actors/actors/runtime/exitcode"
|
2020-02-10 19:16:36 +00:00
|
|
|
|
2020-01-13 20:47:27 +00:00
|
|
|
"github.com/filecoin-project/go-sectorbuilder"
|
2019-10-17 04:53:25 +00:00
|
|
|
|
2020-02-27 22:17:08 +00:00
|
|
|
vtypes "github.com/filecoin-project/chain-validation/chain/types"
|
|
|
|
vstate "github.com/filecoin-project/chain-validation/state"
|
2019-10-17 04:53:25 +00:00
|
|
|
|
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
|
|
|
"github.com/filecoin-project/lotus/chain/vm"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Applier applies messages to state trees and storage.
|
|
|
|
type Applier struct {
|
|
|
|
}
|
|
|
|
|
2020-02-27 22:17:08 +00:00
|
|
|
var _ vstate.Applier = &Applier{}
|
2019-10-17 04:53:25 +00:00
|
|
|
|
|
|
|
func NewApplier() *Applier {
|
|
|
|
return &Applier{}
|
|
|
|
}
|
|
|
|
|
2020-02-27 22:17:08 +00:00
|
|
|
func (a *Applier) ApplyMessage(eCtx *vtypes.ExecutionContext, state vstate.VMWrapper, message *vtypes.Message) (vtypes.MessageReceipt, error) {
|
2019-10-17 04:53:25 +00:00
|
|
|
ctx := context.TODO()
|
|
|
|
st := state.(*StateWrapper)
|
|
|
|
|
2020-02-27 22:17:08 +00:00
|
|
|
base := st.Root()
|
2019-10-17 04:53:25 +00:00
|
|
|
randSrc := &vmRand{eCtx}
|
2020-02-27 22:17:08 +00:00
|
|
|
lotusVM, err := vm.NewVM(base, abi.ChainEpoch(eCtx.Epoch), randSrc, eCtx.Miner, st.bs, vm.Syscalls(sectorbuilder.ProofVerifier))
|
2019-10-17 04:53:25 +00:00
|
|
|
if err != nil {
|
2020-02-27 22:17:08 +00:00
|
|
|
return vtypes.MessageReceipt{}, err
|
2019-10-17 04:53:25 +00:00
|
|
|
}
|
|
|
|
|
2020-02-27 22:17:08 +00:00
|
|
|
ret, err := lotusVM.ApplyMessage(ctx, toLotusMsg(message))
|
2019-10-17 04:53:25 +00:00
|
|
|
if err != nil {
|
2020-02-27 22:17:08 +00:00
|
|
|
return vtypes.MessageReceipt{}, err
|
2019-10-17 04:53:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
st.stateRoot, err = lotusVM.Flush(ctx)
|
|
|
|
if err != nil {
|
2020-02-27 22:17:08 +00:00
|
|
|
return vtypes.MessageReceipt{}, err
|
2019-10-17 04:53:25 +00:00
|
|
|
}
|
|
|
|
|
2020-02-27 22:17:08 +00:00
|
|
|
mr := vtypes.MessageReceipt{
|
|
|
|
ExitCode: exitcode.ExitCode(ret.ExitCode),
|
2019-10-17 04:53:25 +00:00
|
|
|
ReturnValue: ret.Return,
|
2020-02-27 22:17:08 +00:00
|
|
|
GasUsed: ret.GasUsed,
|
2019-10-17 04:53:25 +00:00
|
|
|
}
|
|
|
|
|
2019-11-26 21:58:43 +00:00
|
|
|
return mr, ret.ActorErr
|
2019-10-17 04:53:25 +00:00
|
|
|
}
|
|
|
|
|
2020-02-27 22:17:08 +00:00
|
|
|
func (a *Applier) ApplyTipSetMessages(state vstate.VMWrapper, blocks []vtypes.BlockMessagesInfo, epoch abi.ChainEpoch, rnd vstate.RandomnessSource) ([]vtypes.MessageReceipt, error) {
|
|
|
|
panic("implement me")
|
|
|
|
}
|
|
|
|
|
2019-10-17 04:53:25 +00:00
|
|
|
type vmRand struct {
|
2020-02-27 22:17:08 +00:00
|
|
|
eCtx *vtypes.ExecutionContext
|
2019-10-17 04:53:25 +00:00
|
|
|
}
|
|
|
|
|
2020-02-27 00:42:39 +00:00
|
|
|
func (*vmRand) GetRandomness(ctx context.Context, dst crypto.DomainSeparationTag, h int64, input []byte) ([]byte, error) {
|
2019-10-17 04:53:25 +00:00
|
|
|
panic("implement me")
|
|
|
|
}
|
2020-02-27 22:17:08 +00:00
|
|
|
|
|
|
|
func toLotusMsg(msg *vtypes.Message) *types.Message {
|
|
|
|
return &types.Message{
|
|
|
|
To: msg.To,
|
|
|
|
From: msg.From,
|
|
|
|
|
|
|
|
Nonce: uint64(msg.CallSeqNum),
|
|
|
|
Method: msg.Method,
|
|
|
|
|
|
|
|
Value: types.BigInt{msg.Value.Int},
|
|
|
|
GasPrice: types.BigInt{msg.GasPrice.Int},
|
|
|
|
GasLimit: types.NewInt(uint64(msg.GasLimit)),
|
|
|
|
|
|
|
|
Params: msg.Params,
|
|
|
|
}
|
|
|
|
}
|