2019-09-06 06:26:02 +00:00
|
|
|
package stmgr
|
2019-08-12 18:30:20 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2019-09-19 20:25:18 +00:00
|
|
|
"fmt"
|
2020-03-03 00:36:01 +00:00
|
|
|
|
2020-02-08 02:18:32 +00:00
|
|
|
"github.com/filecoin-project/specs-actors/actors/abi"
|
2019-10-15 04:33:29 +00:00
|
|
|
"github.com/ipfs/go-cid"
|
2019-10-28 09:29:16 +00:00
|
|
|
"go.opencensus.io/trace"
|
2019-10-15 04:33:29 +00:00
|
|
|
"golang.org/x/xerrors"
|
|
|
|
|
2020-01-15 21:24:01 +00:00
|
|
|
"github.com/filecoin-project/lotus/api"
|
2019-10-18 04:47:41 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/store"
|
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
|
|
|
"github.com/filecoin-project/lotus/chain/vm"
|
2019-08-12 18:30:20 +00:00
|
|
|
)
|
|
|
|
|
2020-03-08 00:46:12 +00:00
|
|
|
func (sm *StateManager) CallRaw(ctx context.Context, msg *types.Message, bstate cid.Cid, r vm.Rand, bheight abi.ChainEpoch) (*api.InvocResult, error) {
|
2019-10-28 09:29:16 +00:00
|
|
|
ctx, span := trace.StartSpan(ctx, "statemanager.CallRaw")
|
|
|
|
defer span.End()
|
|
|
|
|
2020-04-07 18:26:43 +00:00
|
|
|
vmi, err := vm.NewVM(bstate, bheight, r, sm.cs.Blockstore(), sm.cs.VMSys())
|
2019-08-12 18:30:20 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, xerrors.Errorf("failed to set up vm: %w", err)
|
|
|
|
}
|
|
|
|
|
2020-03-18 20:45:37 +00:00
|
|
|
if msg.GasLimit == 0 {
|
|
|
|
msg.GasLimit = 10000000000
|
2019-08-12 18:30:20 +00:00
|
|
|
}
|
|
|
|
if msg.GasPrice == types.EmptyInt {
|
|
|
|
msg.GasPrice = types.NewInt(0)
|
|
|
|
}
|
|
|
|
if msg.Value == types.EmptyInt {
|
|
|
|
msg.Value = types.NewInt(0)
|
|
|
|
}
|
|
|
|
|
2019-10-28 09:29:16 +00:00
|
|
|
if span.IsRecordingEvents() {
|
|
|
|
span.AddAttributes(
|
2020-03-18 20:45:37 +00:00
|
|
|
trace.Int64Attribute("gas_limit", msg.GasLimit),
|
2019-10-28 09:29:16 +00:00
|
|
|
trace.Int64Attribute("gas_price", int64(msg.GasPrice.Uint64())),
|
|
|
|
trace.StringAttribute("value", msg.Value.String()),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2019-09-06 06:26:02 +00:00
|
|
|
fromActor, err := vmi.StateTree().GetActor(msg.From)
|
2019-08-13 04:27:54 +00:00
|
|
|
if err != nil {
|
2019-09-30 23:55:35 +00:00
|
|
|
return nil, xerrors.Errorf("call raw get actor: %s", err)
|
2019-08-13 04:27:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
msg.Nonce = fromActor.Nonce
|
|
|
|
|
2019-08-12 18:30:20 +00:00
|
|
|
// TODO: maybe just use the invoker directly?
|
2020-03-25 08:46:42 +00:00
|
|
|
ret, err := vmi.ApplyImplicitMessage(ctx, msg)
|
2019-08-13 04:27:54 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, xerrors.Errorf("apply message failed: %w", err)
|
|
|
|
}
|
|
|
|
|
2020-01-15 21:24:01 +00:00
|
|
|
var errs string
|
2019-08-12 18:30:20 +00:00
|
|
|
if ret.ActorErr != nil {
|
2020-01-15 21:24:01 +00:00
|
|
|
errs = ret.ActorErr.Error()
|
2019-08-12 18:30:20 +00:00
|
|
|
log.Warnf("chain call failed: %s", ret.ActorErr)
|
|
|
|
}
|
2020-03-04 01:33:55 +00:00
|
|
|
|
2020-03-03 23:32:17 +00:00
|
|
|
return &api.InvocResult{
|
2020-06-11 00:47:28 +00:00
|
|
|
Msg: msg,
|
|
|
|
MsgRct: &ret.MessageReceipt,
|
|
|
|
ExecutionTrace: ret.ExecutionTrace,
|
|
|
|
Error: errs,
|
|
|
|
Duration: ret.Duration,
|
2020-01-15 21:24:01 +00:00
|
|
|
}, nil
|
2019-08-16 00:17:09 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-03-03 23:32:17 +00:00
|
|
|
func (sm *StateManager) Call(ctx context.Context, msg *types.Message, ts *types.TipSet) (*api.InvocResult, error) {
|
2019-08-16 00:17:09 +00:00
|
|
|
if ts == nil {
|
2019-09-06 06:26:02 +00:00
|
|
|
ts = sm.cs.GetHeaviestTipSet()
|
2019-08-16 00:17:09 +00:00
|
|
|
}
|
2019-08-16 19:39:09 +00:00
|
|
|
|
2019-10-02 20:03:27 +00:00
|
|
|
state := ts.ParentState()
|
2019-08-16 00:17:09 +00:00
|
|
|
|
2019-11-19 15:53:00 +00:00
|
|
|
r := store.NewChainRand(sm.cs, ts.Cids(), ts.Height())
|
2019-09-20 02:54:52 +00:00
|
|
|
|
|
|
|
return sm.CallRaw(ctx, msg, state, r, ts.Height())
|
2019-08-12 18:30:20 +00:00
|
|
|
}
|
2019-09-19 20:25:18 +00:00
|
|
|
|
|
|
|
var errHaltExecution = fmt.Errorf("halt")
|
|
|
|
|
|
|
|
func (sm *StateManager) Replay(ctx context.Context, ts *types.TipSet, mcid cid.Cid) (*types.Message, *vm.ApplyRet, error) {
|
|
|
|
var outm *types.Message
|
|
|
|
var outr *vm.ApplyRet
|
|
|
|
|
2019-09-27 23:55:15 +00:00
|
|
|
_, _, err := sm.computeTipSetState(ctx, ts.Blocks(), func(c cid.Cid, m *types.Message, ret *vm.ApplyRet) error {
|
2019-09-19 20:25:18 +00:00
|
|
|
if c == mcid {
|
|
|
|
outm = m
|
|
|
|
outr = ret
|
|
|
|
return errHaltExecution
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err != nil && err != errHaltExecution {
|
|
|
|
return nil, nil, xerrors.Errorf("unexpected error during execution: %w", err)
|
|
|
|
}
|
|
|
|
|
2020-03-10 19:44:50 +00:00
|
|
|
if outr == nil {
|
|
|
|
return nil, nil, xerrors.Errorf("given message not found in tipset")
|
|
|
|
}
|
|
|
|
|
2019-09-19 20:25:18 +00:00
|
|
|
return outm, outr, nil
|
|
|
|
}
|