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-11-02 14:13:21 +00:00
"encoding/hex"
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"
2020-09-18 21:21:05 +00:00
"github.com/filecoin-project/go-state-types/abi"
2022-09-06 15:49:29 +00:00
actorstypes "github.com/filecoin-project/go-state-types/actors"
2022-10-19 17:11:44 +00:00
builtinst "github.com/filecoin-project/go-state-types/builtin"
2020-09-18 21:21:05 +00:00
"github.com/filecoin-project/go-state-types/exitcode"
2022-06-14 15:00:51 +00:00
"github.com/filecoin-project/go-state-types/network"
vmr "github.com/filecoin-project/specs-actors/v7/actors/runtime"
2020-09-18 21:21:05 +00:00
2020-09-25 00:51:34 +00:00
"github.com/filecoin-project/lotus/chain/actors"
2020-09-18 21:21:05 +00:00
"github.com/filecoin-project/lotus/chain/actors/aerrors"
2022-06-14 15:00:51 +00:00
"github.com/filecoin-project/lotus/chain/actors/builtin"
2020-09-25 00:51:34 +00:00
"github.com/filecoin-project/lotus/chain/types"
2019-07-11 15:38:37 +00:00
)
2021-09-02 16:07:23 +00:00
type MethodMeta struct {
2022-10-19 17:11:44 +00:00
Name string
2021-09-02 16:07:23 +00:00
Params reflect . Type
Ret reflect . Type
}
2020-09-25 00:51:34 +00:00
type ActorRegistry struct {
actors map [ cid . Cid ] * actorInfo
2021-09-02 16:07:23 +00:00
Methods map [ cid . Cid ] map [ abi . MethodNum ] MethodMeta
2019-07-11 15:38:37 +00:00
}
2020-09-28 19:48:08 +00:00
// An ActorPredicate returns an error if the given actor is not valid for the given runtime environment (e.g., chain height, version, etc.).
2022-09-21 14:56:58 +00:00
type ActorPredicate func ( vmr . Runtime , cid . Cid ) error
2020-09-28 19:48:08 +00:00
2022-09-06 15:49:29 +00:00
func ActorsVersionPredicate ( ver actorstypes . Version ) ActorPredicate {
2022-09-21 14:56:58 +00:00
return func ( rt vmr . Runtime , codeCid cid . Cid ) error {
2022-09-06 15:49:29 +00:00
aver , err := actorstypes . VersionForNetwork ( rt . NetworkVersion ( ) )
2021-08-10 17:07:30 +00:00
if err != nil {
return xerrors . Errorf ( "unsupported network version: %w" , err )
}
2020-11-18 09:22:58 +00:00
if aver != ver {
2022-09-21 14:56:58 +00:00
return xerrors . Errorf ( "actor %s is a version %d actor; chain only supports actor version %d at height %d and nver %d" , codeCid , ver , aver , rt . CurrEpoch ( ) , rt . NetworkVersion ( ) )
2020-09-28 19:48:08 +00:00
}
return nil
}
}
2020-09-18 21:21:05 +00:00
type invokeFunc func ( rt vmr . Runtime , params [ ] byte ) ( [ ] byte , aerrors . ActorError )
2022-09-21 14:56:58 +00:00
type nativeCode map [ uint64 ] invokeFunc
2019-07-11 15:38:37 +00:00
2020-09-25 00:51:34 +00:00
type actorInfo struct {
2020-09-28 19:48:08 +00:00
methods nativeCode
2022-09-21 14:56:58 +00:00
vmActor builtin . RegistryEntry
2020-09-25 00:51:34 +00:00
// TODO: consider making this a network version range?
2020-09-28 19:48:08 +00:00
predicate ActorPredicate
2020-09-25 00:51:34 +00:00
}
func NewActorRegistry ( ) * ActorRegistry {
2021-09-02 16:07:23 +00:00
return & ActorRegistry {
actors : make ( map [ cid . Cid ] * actorInfo ) ,
Methods : map [ cid . Cid ] map [ abi . MethodNum ] MethodMeta { } ,
}
2019-07-11 15:38:37 +00:00
}
2020-09-25 00:51:34 +00:00
func ( ar * ActorRegistry ) Invoke ( codeCid cid . Cid , rt vmr . Runtime , method abi . MethodNum , params [ ] byte ) ( [ ] byte , aerrors . ActorError ) {
act , ok := ar . actors [ codeCid ]
2019-07-11 15:38:37 +00:00
if ! ok {
2020-09-14 11:45:20 +00:00
log . Errorf ( "no code for actor %s (Addr: %s)" , codeCid , rt . Receiver ( ) )
2020-04-03 00:09:41 +00:00
return nil , aerrors . Newf ( exitcode . SysErrorIllegalActor , "no code for actor %s(%d)(%s)" , codeCid , method , hex . EncodeToString ( params ) )
2019-07-11 15:38:37 +00:00
}
2022-09-21 14:56:58 +00:00
if err := act . predicate ( rt , codeCid ) ; err != nil {
2020-10-07 22:46:56 +00:00
return nil , aerrors . Newf ( exitcode . SysErrorIllegalActor , "unsupported actor: %s" , err )
}
2022-09-21 14:56:58 +00:00
if act . methods [ uint64 ( method ) ] == nil {
2020-04-02 18:24:38 +00:00
return nil , aerrors . Newf ( exitcode . SysErrInvalidMethod , "no method %d on actor" , method )
2019-07-11 15:38:37 +00:00
}
2022-09-21 14:56:58 +00:00
return act . methods [ uint64 ( method ) ] ( rt , params )
2019-07-11 15:38:37 +00:00
}
2022-09-21 14:56:58 +00:00
func ( ar * ActorRegistry ) Register ( av actorstypes . Version , pred ActorPredicate , vmactors [ ] builtin . RegistryEntry ) {
2020-09-28 19:48:08 +00:00
if pred == nil {
2022-09-21 14:56:58 +00:00
pred = func ( vmr . Runtime , cid . Cid ) error { return nil }
2019-07-11 15:38:37 +00:00
}
2022-04-08 00:03:07 +00:00
for _ , a := range vmactors {
2022-10-19 17:11:44 +00:00
var code nativeCode
var err error
if av <= actorstypes . Version7 {
// register in the `actors` map (for the invoker)
code , err = ar . transform ( a )
if err != nil {
panic ( xerrors . Errorf ( "%s: %w" , string ( a . Code ( ) . Hash ( ) ) , err ) )
}
2020-09-28 19:48:08 +00:00
}
2022-04-08 00:03:07 +00:00
ai := & actorInfo {
2020-09-28 19:48:08 +00:00
methods : code ,
vmActor : a ,
predicate : pred ,
}
2021-09-02 16:07:23 +00:00
2022-04-08 00:03:07 +00:00
ac := a . Code ( )
ar . actors [ ac ] = ai
2022-04-08 10:48:17 +00:00
// necessary to make stuff work
var realCode cid . Cid
2022-09-06 15:49:29 +00:00
if av >= actorstypes . Version8 {
2022-04-08 00:03:07 +00:00
name := actors . CanonicalName ( builtin . ActorNameByCode ( ac ) )
2022-04-08 10:48:17 +00:00
var ok bool
realCode , ok = actors . GetActorCodeID ( av , name )
2022-04-08 00:03:07 +00:00
if ok {
2022-04-08 10:48:17 +00:00
ar . actors [ realCode ] = ai
2022-04-08 00:03:07 +00:00
}
}
2021-09-02 16:07:23 +00:00
// register in the `Methods` map (used by statemanager utils)
exports := a . Exports ( )
methods := make ( map [ abi . MethodNum ] MethodMeta , len ( exports ) )
// Explicitly add send, it's special.
methods [ builtin . MethodSend ] = MethodMeta {
2022-10-19 17:11:44 +00:00
Name : "Send" ,
2021-09-02 16:07:23 +00:00
Params : reflect . TypeOf ( new ( abi . EmptyValue ) ) ,
Ret : reflect . TypeOf ( new ( abi . EmptyValue ) ) ,
}
// Iterate over exported methods. Some of these _may_ be nil and
// must be skipped.
for number , export := range exports {
2022-10-19 17:11:44 +00:00
if export . Method == nil {
2021-09-02 16:07:23 +00:00
continue
}
2022-10-19 17:11:44 +00:00
ev := reflect . ValueOf ( export . Method )
2021-09-02 16:07:23 +00:00
et := ev . Type ( )
2022-10-19 17:11:44 +00:00
mm := MethodMeta {
Name : export . Name ,
Ret : et . Out ( 0 ) ,
2021-09-02 16:07:23 +00:00
}
2022-10-19 17:11:44 +00:00
if av <= actorstypes . Version7 {
// methods exported from specs-actors have the runtime as the first param, so we want et.In(1)
mm . Params = et . In ( 1 )
} else {
// methods exported from go-state-types do not, so we want et.In(0)
mm . Params = et . In ( 0 )
}
methods [ abi . MethodNum ( number ) ] = mm
2021-09-02 16:07:23 +00:00
}
2022-04-08 10:48:17 +00:00
if realCode . Defined ( ) {
ar . Methods [ realCode ] = methods
feat: refactor: actor bundling system (#8838)
1. Include the builtin-actors in the lotus source tree.
2. Embed the bundle on build instead of downloading at runtime.
3. Avoid reading the bundle whenever possible by including bundle
metadata (the bundle CID, the actor CIDs, etc.).
4. Remove everything related to dependency injection.
1. We're no longer downloading the bundle, so doing anything ahead
of time doesn't really help.
2. We register the manifests on init because, unfortunately, they're
global.
3. We explicitly load the current actors bundle in the genesis
state-tree method.
4. For testing, we just change the in-use bundle with a bit of a
hack. It's not great, but using dependency injection doesn't make
any sense either because, again, the manifest information is
global.
5. Remove the bundle.toml file. Bundles may be overridden by
specifying an override path in the parameters file, or an
environment variable.
fixes #8701
2022-06-13 17:15:00 +00:00
} else {
ar . Methods [ a . Code ( ) ] = methods
2022-04-08 10:48:17 +00:00
}
2020-09-25 00:51:34 +00:00
}
}
func ( ar * ActorRegistry ) Create ( codeCid cid . Cid , rt vmr . Runtime ) ( * types . Actor , aerrors . ActorError ) {
act , ok := ar . actors [ codeCid ]
if ! ok {
return nil , aerrors . Newf ( exitcode . SysErrorIllegalArgument , "Can only create built-in actors." )
}
2020-09-28 19:48:08 +00:00
2022-09-21 14:56:58 +00:00
if err := act . predicate ( rt , codeCid ) ; err != nil {
2020-09-28 19:48:08 +00:00
return nil , aerrors . Newf ( exitcode . SysErrorIllegalArgument , "Cannot create actor: %w" , err )
2020-09-25 00:51:34 +00:00
}
return & types . Actor {
Code : codeCid ,
Head : EmptyObjectCid ,
Nonce : 0 ,
Balance : abi . NewTokenAmount ( 0 ) ,
} , nil
2019-07-11 15:38:37 +00:00
}
2020-09-28 19:48:08 +00:00
type invokee interface {
2022-10-19 17:11:44 +00:00
Exports ( ) map [ uint64 ] builtinst . MethodMeta
2019-07-11 16:15:44 +00:00
}
2020-09-28 19:48:08 +00:00
func ( * ActorRegistry ) transform ( instance invokee ) ( nativeCode , error ) {
2020-01-28 23:17:25 +00:00
itype := reflect . TypeOf ( instance )
exports := instance . Exports ( )
2020-09-23 23:15:37 +00:00
runtimeType := reflect . TypeOf ( ( * vmr . Runtime ) ( nil ) ) . Elem ( )
2022-10-19 17:11:44 +00:00
for i , e := range exports {
2020-01-28 23:17:25 +00:00
i := i
2022-10-19 17:11:44 +00:00
m := e . Method
2020-01-28 23:17:25 +00:00
newErr := func ( format string , args ... interface { } ) error {
str := fmt . Sprintf ( format , args ... )
return fmt . Errorf ( "transform(%s) export(%d): %s" , itype . Name ( ) , i , str )
}
if m == nil {
continue
}
meth := reflect . ValueOf ( m )
t := meth . Type ( )
if t . Kind ( ) != reflect . Func {
return nil , newErr ( "is not a function" )
}
if t . NumIn ( ) != 2 {
return nil , newErr ( "wrong number of inputs should be: " +
"vmr.Runtime, <parameter>" )
}
2020-09-23 23:15:37 +00:00
if ! runtimeType . Implements ( t . In ( 0 ) ) {
2021-05-18 14:51:06 +00:00
return nil , newErr ( "first argument should be vmr.Runtime" )
2020-01-28 23:17:25 +00:00
}
if t . In ( 1 ) . Kind ( ) != reflect . Ptr {
2020-09-07 11:29:40 +00:00
return nil , newErr ( "second argument should be of kind reflect.Ptr" )
2020-01-28 23:17:25 +00:00
}
if t . NumOut ( ) != 1 {
return nil , newErr ( "wrong number of outputs should be: " +
"cbg.CBORMarshaler" )
}
o0 := t . Out ( 0 )
if ! o0 . Implements ( reflect . TypeOf ( ( * cbg . CBORMarshaler ) ( nil ) ) . Elem ( ) ) {
return nil , newErr ( "output needs to implement cgb.CBORMarshaler" )
}
}
code := make ( nativeCode , len ( exports ) )
2022-10-19 17:11:44 +00:00
for id , e := range exports {
m := e . Method
2020-09-04 03:27:59 +00:00
if m == nil {
continue
}
2020-01-28 23:17:25 +00:00
meth := reflect . ValueOf ( m )
code [ id ] = reflect . MakeFunc ( reflect . TypeOf ( ( invokeFunc ) ( nil ) ) ,
func ( in [ ] reflect . Value ) [ ] reflect . Value {
paramT := meth . Type ( ) . In ( 1 ) . Elem ( )
param := reflect . New ( paramT )
2020-11-09 01:48:05 +00:00
rt := in [ 0 ] . Interface ( ) . ( * Runtime )
2020-04-03 00:09:41 +00:00
inBytes := in [ 1 ] . Interface ( ) . ( [ ] byte )
2020-04-03 21:38:11 +00:00
if err := DecodeParams ( inBytes , param . Interface ( ) ) ; err != nil {
2020-11-09 01:48:05 +00:00
ec := exitcode . ErrSerialization
if rt . NetworkVersion ( ) < network . Version7 {
ec = 1
}
aerr := aerrors . Absorb ( err , ec , "failed to decode parameters" )
2020-04-03 21:38:11 +00:00
return [ ] reflect . Value {
reflect . ValueOf ( [ ] byte { } ) ,
// Below is a hack, fixed in Go 1.13
// https://git.io/fjXU6
reflect . ValueOf ( & aerr ) . Elem ( ) ,
2020-01-28 23:17:25 +00:00
}
}
2020-03-10 02:24:02 +00:00
rval , aerror := rt . shimCall ( func ( ) interface { } {
2020-01-28 23:17:25 +00:00
ret := meth . Call ( [ ] reflect . Value {
2020-03-10 02:24:02 +00:00
reflect . ValueOf ( rt ) ,
2020-01-28 23:17:25 +00:00
param ,
} )
return ret [ 0 ] . Interface ( )
} )
return [ ] reflect . Value {
reflect . ValueOf ( & rval ) . Elem ( ) ,
reflect . ValueOf ( & aerror ) . Elem ( ) ,
}
} ) . Interface ( ) . ( invokeFunc )
}
return code , nil
}
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 ) )
}
2021-09-02 16:07:23 +00:00
func DumpActorState ( i * ActorRegistry , act * types . Actor , b [ ] byte ) ( interface { } , error ) {
2022-10-26 15:46:59 +00:00
// Account & Embryo code special case
if builtin . IsAccountActor ( act . Code ) || builtin . IsEmbryo ( act . Code ) {
2020-01-19 16:18:47 +00:00
return nil , nil
}
2020-09-25 00:51:34 +00:00
actInfo , ok := i . actors [ act . Code ]
2019-08-16 02:33:59 +00:00
if ! ok {
2020-09-25 00:51:34 +00:00
return nil , xerrors . Errorf ( "state type for actor %s not found" , act . Code )
2019-08-16 02:33:59 +00:00
}
2020-09-28 19:48:08 +00:00
um := actInfo . vmActor . State ( )
2019-09-13 18:16:39 +00:00
if err := um . UnmarshalCBOR ( bytes . NewReader ( b ) ) ; err != nil {
2020-08-07 14:07:34 +00:00
return nil , xerrors . Errorf ( "unmarshaling actor state: %w" , err )
2019-08-16 02:33:59 +00:00
}
2020-09-28 19:48:08 +00:00
return um , nil
2019-08-16 02:33:59 +00:00
}