lotus/cmd/lotus-shed/gas-estimation.go

273 lines
7.3 KiB
Go
Raw Normal View History

2022-11-16 02:39:56 +00:00
package main
import (
"context"
"fmt"
"io"
"os"
"strconv"
"text/tabwriter"
"github.com/ipfs/go-cid"
"github.com/urfave/cli/v2"
"golang.org/x/xerrors"
2022-11-14 21:46:45 +00:00
"github.com/filecoin-project/go-state-types/abi"
"github.com/filecoin-project/go-state-types/network"
2022-11-16 02:39:56 +00:00
"github.com/filecoin-project/lotus/build"
"github.com/filecoin-project/lotus/chain/beacon/drand"
2022-12-05 17:22:10 +00:00
"github.com/filecoin-project/lotus/chain/consensus"
2022-11-16 02:39:56 +00:00
"github.com/filecoin-project/lotus/chain/consensus/filcns"
2023-03-12 13:33:36 +00:00
"github.com/filecoin-project/lotus/chain/index"
2022-11-16 02:39:56 +00:00
"github.com/filecoin-project/lotus/chain/stmgr"
"github.com/filecoin-project/lotus/chain/store"
"github.com/filecoin-project/lotus/chain/types"
"github.com/filecoin-project/lotus/chain/vm"
lcli "github.com/filecoin-project/lotus/cli"
"github.com/filecoin-project/lotus/node/repo"
"github.com/filecoin-project/lotus/storage/sealer/ffiwrapper"
)
2022-11-16 23:19:59 +00:00
const MAINNET_GENESIS_TIME = 1598306400
2022-11-14 21:46:45 +00:00
// USAGE: Sync a node, then call migrate-nv17 on some old state. Pass in the cid of the migrated state root,
2022-11-16 20:07:23 +00:00
// the epoch you migrated at, the network version you migrated to, and a message CID. You will be able to replay any
2022-11-14 21:46:45 +00:00
// message from between the migration epoch, and where your node originally synced to. Note: You may run into issues
2022-11-16 20:07:23 +00:00
// with state that changed between the epoch you migrated at, and when the message was originally processed.
2022-11-14 21:46:45 +00:00
// This can be avoided by replaying messages from close to the migration epoch, or circumvented by using a custom
// FVM bundle.
var gasTraceCmd = &cli.Command{
Name: "trace-gas",
Description: "replay a message on the specified stateRoot and network version to get an execution trace",
2022-11-16 23:19:59 +00:00
ArgsUsage: "[migratedStateRootCid networkVersion messageCid]",
2022-11-16 02:39:56 +00:00
Flags: []cli.Flag{
&cli.StringFlag{
Name: "repo",
Value: "~/.lotus",
2022-11-16 02:39:56 +00:00
},
},
Action: func(cctx *cli.Context) error {
ctx := context.TODO()
2022-11-16 23:19:59 +00:00
if cctx.NArg() != 3 {
2022-11-16 02:39:56 +00:00
return lcli.IncorrectNumArgs(cctx)
}
stateRootCid, err := cid.Decode(cctx.Args().Get(0))
if err != nil {
return fmt.Errorf("failed to parse input: %w", err)
}
2022-11-16 23:19:59 +00:00
nv, err := strconv.ParseInt(cctx.Args().Get(1), 10, 32)
2022-11-16 02:39:56 +00:00
if err != nil {
return fmt.Errorf("failed to parse input: %w", err)
}
2022-11-16 23:19:59 +00:00
messageCid, err := cid.Decode(cctx.Args().Get(2))
2022-11-16 02:39:56 +00:00
if err != nil {
return fmt.Errorf("failed to parse input: %w", err)
}
fsrepo, err := repo.NewFS(cctx.String("repo"))
if err != nil {
return err
}
lkrepo, err := fsrepo.Lock(repo.FullNode)
if err != nil {
return err
}
defer lkrepo.Close() //nolint:errcheck
bs, err := lkrepo.Blockstore(ctx, repo.UniversalBlockstore)
if err != nil {
return fmt.Errorf("failed to open blockstore: %w", err)
}
defer func() {
if c, ok := bs.(io.Closer); ok {
if err := c.Close(); err != nil {
log.Warnf("failed to close blockstore: %s", err)
}
}
}()
mds, err := lkrepo.Datastore(context.Background(), "/metadata")
if err != nil {
return err
}
shd, err := drand.BeaconScheduleFromDrandSchedule(build.DrandConfigSchedule(), MAINNET_GENESIS_TIME, nil)
if err != nil {
return err
2022-11-16 02:39:56 +00:00
}
2022-11-16 02:39:56 +00:00
cs := store.NewChainStore(bs, bs, mds, filcns.Weight, nil)
defer cs.Close() //nolint:errcheck
2023-03-12 13:33:36 +00:00
sm, err := stmgr.NewStateManager(cs, consensus.NewTipSetExecutor(filcns.RewardFunc), vm.Syscalls(ffiwrapper.ProofVerifier), filcns.DefaultUpgradeSchedule(), shd, mds, index.DummyMsgIndex)
2022-11-16 02:39:56 +00:00
if err != nil {
return err
}
msg, err := cs.GetMessage(ctx, messageCid)
if err != nil {
return err
}
// Set to block limit so message will not run out of gas
2022-11-16 20:07:23 +00:00
msg.GasLimit = build.BlockGasLimit
2022-11-16 02:39:56 +00:00
err = cs.Load(ctx)
if err != nil {
return err
}
2022-11-14 21:46:45 +00:00
tw := tabwriter.NewWriter(os.Stdout, 8, 2, 2, ' ', tabwriter.AlignRight)
2022-11-16 23:19:59 +00:00
res, err := sm.CallAtStateAndVersion(ctx, msg, stateRootCid, network.Version(nv))
2022-11-16 02:39:56 +00:00
if err != nil {
return err
}
2022-11-16 23:19:59 +00:00
fmt.Println("Total gas used: ", res.MsgRct.GasUsed)
2022-11-16 02:39:56 +00:00
printInternalExecutions(0, []types.ExecutionTrace{res.ExecutionTrace}, tw)
return tw.Flush()
},
}
2022-11-16 20:07:23 +00:00
var replayOfflineCmd = &cli.Command{
Name: "replay-offline",
2022-11-16 23:19:59 +00:00
Description: "replay a message to get a gas trace",
2022-11-16 20:07:23 +00:00
ArgsUsage: "[messageCid]",
Flags: []cli.Flag{
&cli.StringFlag{
Name: "repo",
Value: "~/.lotus",
2022-11-16 20:07:23 +00:00
},
&cli.Int64Flag{
Name: "lookback-limit",
2022-11-16 23:19:59 +00:00
Value: 10000,
2022-11-16 20:07:23 +00:00
},
},
Action: func(cctx *cli.Context) error {
ctx := context.TODO()
if cctx.NArg() != 1 {
return lcli.IncorrectNumArgs(cctx)
}
messageCid, err := cid.Decode(cctx.Args().Get(0))
if err != nil {
return fmt.Errorf("failed to parse input: %w", err)
}
lookbackLimit := cctx.Int("lookback-limit")
fsrepo, err := repo.NewFS(cctx.String("repo"))
if err != nil {
return err
}
lkrepo, err := fsrepo.Lock(repo.FullNode)
if err != nil {
return err
}
defer lkrepo.Close() //nolint:errcheck
bs, err := lkrepo.Blockstore(ctx, repo.UniversalBlockstore)
if err != nil {
return fmt.Errorf("failed to open blockstore: %w", err)
}
defer func() {
if c, ok := bs.(io.Closer); ok {
if err := c.Close(); err != nil {
log.Warnf("failed to close blockstore: %s", err)
}
}
}()
mds, err := lkrepo.Datastore(context.Background(), "/metadata")
if err != nil {
return err
}
shd, err := drand.BeaconScheduleFromDrandSchedule(build.DrandConfigSchedule(), MAINNET_GENESIS_TIME, nil)
if err != nil {
return err
2022-11-16 20:07:23 +00:00
}
2022-11-16 23:19:59 +00:00
2022-11-16 20:07:23 +00:00
cs := store.NewChainStore(bs, bs, mds, filcns.Weight, nil)
defer cs.Close() //nolint:errcheck
2023-03-12 13:33:36 +00:00
sm, err := stmgr.NewStateManager(cs, consensus.NewTipSetExecutor(filcns.RewardFunc), vm.Syscalls(ffiwrapper.ProofVerifier), filcns.DefaultUpgradeSchedule(), shd, mds, index.DummyMsgIndex)
2022-11-16 20:07:23 +00:00
if err != nil {
return err
}
msg, err := cs.GetMessage(ctx, messageCid)
if err != nil {
return err
}
err = cs.Load(ctx)
if err != nil {
return err
}
ts, _, _, err := sm.SearchForMessage(ctx, cs.GetHeaviestTipSet(), messageCid, abi.ChainEpoch(lookbackLimit), true)
if err != nil {
return err
}
2022-11-16 23:19:59 +00:00
if ts == nil {
return xerrors.Errorf("could not find message within the last %d epochs", lookbackLimit)
}
executionTs, err := cs.GetTipsetByHeight(ctx, ts.Height()-2, ts, true)
2022-11-25 21:19:20 +00:00
if err != nil {
return err
}
2022-11-16 20:07:23 +00:00
tw := tabwriter.NewWriter(os.Stdout, 8, 2, 2, ' ', tabwriter.AlignRight)
res, err := sm.CallWithGas(ctx, msg, []types.ChainMsg{}, executionTs, true)
2022-11-16 20:07:23 +00:00
if err != nil {
return err
}
fmt.Println("Total gas used: ", res.MsgRct.GasUsed)
printInternalExecutions(0, []types.ExecutionTrace{res.ExecutionTrace}, tw)
return tw.Flush()
},
}
2022-11-16 02:39:56 +00:00
func printInternalExecutions(depth int, trace []types.ExecutionTrace, tw *tabwriter.Writer) {
if depth == 0 {
2022-11-14 21:46:45 +00:00
_, _ = fmt.Fprintf(tw, "Depth\tFrom\tTo\tMethod\tTotalGas\tComputeGas\tStorageGas\t\tExitCode\n")
2022-11-16 02:39:56 +00:00
}
for _, im := range trace {
2022-11-16 20:07:23 +00:00
sumGas := im.SumGas()
2022-11-14 21:46:45 +00:00
_, _ = fmt.Fprintf(tw, "%d\t%s\t%s\t%d\t%d\t%d\t%d\t\t%d\n", depth, truncateString(im.Msg.From.String(), 10), truncateString(im.Msg.To.String(), 10), im.Msg.Method, sumGas.TotalGas, sumGas.ComputeGas, sumGas.StorageGas, im.MsgRct.ExitCode)
2022-11-16 02:39:56 +00:00
printInternalExecutions(depth+1, im.Subcalls, tw)
}
}
2022-11-14 21:46:45 +00:00
func truncateString(str string, length int) string {
if len(str) <= length {
return str
}
truncated := ""
count := 0
for _, char := range str {
truncated += string(char)
count++
if count >= length {
break
}
}
truncated += "..."
return truncated
}