2019-07-26 04:54:22 +00:00
|
|
|
package vm
|
2019-07-11 15:38:37 +00:00
|
|
|
|
|
|
|
import (
|
2019-09-10 19:58:45 +00:00
|
|
|
"bytes"
|
2019-07-11 15:38:37 +00:00
|
|
|
"fmt"
|
|
|
|
"reflect"
|
|
|
|
|
2019-08-16 12:11:57 +00:00
|
|
|
"github.com/ipfs/go-cid"
|
2019-09-10 19:58:45 +00:00
|
|
|
cbg "github.com/whyrusleeping/cbor-gen"
|
2019-08-16 12:11:57 +00:00
|
|
|
"golang.org/x/xerrors"
|
|
|
|
|
2019-09-13 18:16:39 +00:00
|
|
|
"github.com/filecoin-project/go-lotus/chain/actors"
|
2019-07-22 18:17:42 +00:00
|
|
|
"github.com/filecoin-project/go-lotus/chain/actors/aerrors"
|
2019-07-12 10:23:05 +00:00
|
|
|
"github.com/filecoin-project/go-lotus/chain/types"
|
2019-07-11 15:38:37 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type invoker struct {
|
2019-08-16 02:34:23 +00:00
|
|
|
builtInCode map[cid.Cid]nativeCode
|
2019-08-16 02:33:59 +00:00
|
|
|
builtInState map[cid.Cid]reflect.Type
|
2019-07-11 15:38:37 +00:00
|
|
|
}
|
|
|
|
|
2019-07-26 04:54:22 +00:00
|
|
|
type invokeFunc func(act *types.Actor, vmctx types.VMContext, params []byte) ([]byte, aerrors.ActorError)
|
2019-07-11 15:38:37 +00:00
|
|
|
type nativeCode []invokeFunc
|
|
|
|
|
|
|
|
func newInvoker() *invoker {
|
|
|
|
inv := &invoker{
|
2019-08-16 02:34:23 +00:00
|
|
|
builtInCode: make(map[cid.Cid]nativeCode),
|
2019-08-16 02:33:59 +00:00
|
|
|
builtInState: make(map[cid.Cid]reflect.Type),
|
2019-07-11 15:38:37 +00:00
|
|
|
}
|
2019-07-12 03:59:55 +00:00
|
|
|
|
2019-07-11 15:38:37 +00:00
|
|
|
// add builtInCode using: register(cid, singleton)
|
2019-08-16 02:33:59 +00:00
|
|
|
inv.register(actors.InitActorCodeCid, actors.InitActor{}, actors.InitActorState{})
|
2019-10-11 22:59:36 +00:00
|
|
|
inv.register(actors.StorageMarketActorCodeCid, actors.StoragePowerActor{}, actors.StoragePowerState{})
|
2019-08-16 02:33:59 +00:00
|
|
|
inv.register(actors.StorageMinerCodeCid, actors.StorageMinerActor{}, actors.StorageMinerActorState{})
|
|
|
|
inv.register(actors.MultisigActorCodeCid, actors.MultiSigActor{}, actors.MultiSigActorState{})
|
|
|
|
inv.register(actors.PaymentChannelActorCodeCid, actors.PaymentChannelActor{}, actors.PaymentChannelActorState{})
|
2019-07-12 03:59:55 +00:00
|
|
|
|
2019-07-11 15:38:37 +00:00
|
|
|
return inv
|
|
|
|
}
|
|
|
|
|
2019-07-26 04:54:22 +00:00
|
|
|
func (inv *invoker) Invoke(act *types.Actor, vmctx types.VMContext, method uint64, params []byte) ([]byte, aerrors.ActorError) {
|
2019-07-11 15:38:37 +00:00
|
|
|
|
|
|
|
code, ok := inv.builtInCode[act.Code]
|
|
|
|
if !ok {
|
2019-07-23 18:15:16 +00:00
|
|
|
return nil, aerrors.Newf(255, "no code for actor %s", act.Code)
|
2019-07-11 15:38:37 +00:00
|
|
|
}
|
|
|
|
if method >= uint64(len(code)) || code[method] == nil {
|
2019-07-23 18:15:16 +00:00
|
|
|
return nil, aerrors.Newf(255, "no method %d on actor", method)
|
2019-07-11 15:38:37 +00:00
|
|
|
}
|
|
|
|
return code[method](act, vmctx, params)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-08-16 02:33:59 +00:00
|
|
|
func (inv *invoker) register(c cid.Cid, instance Invokee, state interface{}) {
|
2019-07-11 15:38:37 +00:00
|
|
|
code, err := inv.transform(instance)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
inv.builtInCode[c] = code
|
2019-08-16 02:33:59 +00:00
|
|
|
inv.builtInState[c] = reflect.TypeOf(state)
|
2019-07-11 15:38:37 +00:00
|
|
|
}
|
|
|
|
|
2019-07-11 16:15:44 +00:00
|
|
|
type Invokee interface {
|
|
|
|
Exports() []interface{}
|
|
|
|
}
|
|
|
|
|
2019-07-12 10:43:15 +00:00
|
|
|
var tVMContext = reflect.TypeOf((*types.VMContext)(nil)).Elem()
|
2019-07-22 18:17:42 +00:00
|
|
|
var tAError = reflect.TypeOf((*aerrors.ActorError)(nil)).Elem()
|
2019-07-11 15:38:37 +00:00
|
|
|
|
2019-07-11 16:15:44 +00:00
|
|
|
func (*invoker) transform(instance Invokee) (nativeCode, error) {
|
2019-07-11 15:38:37 +00:00
|
|
|
itype := reflect.TypeOf(instance)
|
2019-07-11 16:15:44 +00:00
|
|
|
exports := instance.Exports()
|
|
|
|
for i, m := range exports {
|
|
|
|
i := i
|
2019-07-17 13:48:20 +00:00
|
|
|
newErr := func(format string, args ...interface{}) error {
|
2019-07-22 18:17:42 +00:00
|
|
|
str := fmt.Sprintf(format, args...)
|
2019-07-11 16:15:44 +00:00
|
|
|
return fmt.Errorf("transform(%s) export(%d): %s", itype.Name(), i, str)
|
|
|
|
}
|
|
|
|
if m == nil {
|
2019-07-11 15:38:37 +00:00
|
|
|
continue
|
|
|
|
}
|
2019-07-11 16:15:44 +00:00
|
|
|
meth := reflect.ValueOf(m)
|
|
|
|
t := meth.Type()
|
|
|
|
if t.Kind() != reflect.Func {
|
|
|
|
return nil, newErr("is not a function")
|
2019-07-11 15:38:37 +00:00
|
|
|
}
|
2019-07-11 16:15:44 +00:00
|
|
|
if t.NumIn() != 3 {
|
2019-07-11 15:38:37 +00:00
|
|
|
return nil, newErr("wrong number of inputs should be: " +
|
2019-07-12 10:23:05 +00:00
|
|
|
"*types.Actor, *VMContext, <type of parameter>")
|
2019-07-11 15:38:37 +00:00
|
|
|
}
|
2019-07-12 10:23:05 +00:00
|
|
|
if t.In(0) != reflect.TypeOf(&types.Actor{}) {
|
|
|
|
return nil, newErr("first arguemnt should be *types.Actor")
|
2019-07-11 15:38:37 +00:00
|
|
|
}
|
2019-07-12 10:43:15 +00:00
|
|
|
if t.In(1) != tVMContext {
|
|
|
|
return nil, newErr("second argument should be types.VMContext")
|
2019-07-11 15:38:37 +00:00
|
|
|
}
|
|
|
|
|
2019-07-11 16:15:44 +00:00
|
|
|
if t.In(2).Kind() != reflect.Ptr {
|
2019-07-17 13:48:20 +00:00
|
|
|
return nil, newErr("parameter has to be a pointer to parameter, is: %s",
|
|
|
|
t.In(2).Kind())
|
2019-07-11 15:38:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if t.NumOut() != 2 {
|
|
|
|
return nil, newErr("wrong number of outputs should be: " +
|
|
|
|
"(InvokeRet, error)")
|
|
|
|
}
|
2019-07-22 18:17:42 +00:00
|
|
|
if t.Out(0) != reflect.TypeOf([]byte{}) {
|
|
|
|
return nil, newErr("first output should be slice of bytes")
|
2019-07-11 15:38:37 +00:00
|
|
|
}
|
2019-07-22 18:17:42 +00:00
|
|
|
if !t.Out(1).Implements(tAError) {
|
|
|
|
return nil, newErr("second output should be ActorError type")
|
2019-07-11 15:38:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2019-07-11 16:15:44 +00:00
|
|
|
code := make(nativeCode, len(exports))
|
|
|
|
for id, m := range exports {
|
|
|
|
meth := reflect.ValueOf(m)
|
2019-07-11 15:38:37 +00:00
|
|
|
code[id] = reflect.MakeFunc(reflect.TypeOf((invokeFunc)(nil)),
|
|
|
|
func(in []reflect.Value) []reflect.Value {
|
2019-07-11 16:15:44 +00:00
|
|
|
paramT := meth.Type().In(2).Elem()
|
2019-07-11 15:38:37 +00:00
|
|
|
param := reflect.New(paramT)
|
|
|
|
|
2019-07-11 15:47:05 +00:00
|
|
|
inBytes := in[2].Interface().([]byte)
|
2019-08-07 06:35:57 +00:00
|
|
|
if len(inBytes) > 0 {
|
2019-09-10 19:58:45 +00:00
|
|
|
if err := DecodeParams(inBytes, param.Interface()); err != nil {
|
2019-08-07 06:35:57 +00:00
|
|
|
aerr := aerrors.Absorb(err, 1, "failed to decode parameters")
|
|
|
|
return []reflect.Value{
|
|
|
|
reflect.ValueOf([]byte{}),
|
|
|
|
// Below is a hack, fixed in Go 1.13
|
|
|
|
// https://git.io/fjXU6
|
|
|
|
reflect.ValueOf(&aerr).Elem(),
|
|
|
|
}
|
2019-07-11 15:47:05 +00:00
|
|
|
}
|
|
|
|
}
|
2019-07-15 14:44:30 +00:00
|
|
|
|
2019-07-11 16:15:44 +00:00
|
|
|
return meth.Call([]reflect.Value{
|
|
|
|
in[0], in[1], param,
|
2019-07-11 15:38:37 +00:00
|
|
|
})
|
|
|
|
}).Interface().(invokeFunc)
|
|
|
|
|
|
|
|
}
|
|
|
|
return code, nil
|
|
|
|
}
|
2019-08-16 02:33:59 +00:00
|
|
|
|
2019-09-10 19:58:45 +00:00
|
|
|
func DecodeParams(b []byte, out interface{}) error {
|
|
|
|
um, ok := out.(cbg.CBORUnmarshaler)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("type %T does not implement UnmarshalCBOR", out)
|
|
|
|
}
|
|
|
|
|
|
|
|
return um.UnmarshalCBOR(bytes.NewReader(b))
|
|
|
|
}
|
|
|
|
|
2019-08-16 02:33:59 +00:00
|
|
|
func DumpActorState(code cid.Cid, b []byte) (interface{}, error) {
|
|
|
|
i := newInvoker() // TODO: register builtins in init block
|
|
|
|
|
|
|
|
typ, ok := i.builtInState[code]
|
|
|
|
if !ok {
|
|
|
|
return nil, xerrors.New("state type for actor not found")
|
|
|
|
}
|
|
|
|
|
|
|
|
rv := reflect.New(typ)
|
2019-09-13 18:16:39 +00:00
|
|
|
um, ok := rv.Interface().(cbg.CBORUnmarshaler)
|
|
|
|
if !ok {
|
|
|
|
return nil, xerrors.New("state type does not implement CBORUnmarshaler")
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := um.UnmarshalCBOR(bytes.NewReader(b)); err != nil {
|
2019-08-16 02:33:59 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv.Elem().Interface(), nil
|
|
|
|
}
|