2020-09-27 19:10:05 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"compress/gzip"
|
|
|
|
"context"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"log"
|
|
|
|
"os"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/lotus/api"
|
|
|
|
init_ "github.com/filecoin-project/lotus/chain/actors/builtin/init"
|
|
|
|
"github.com/filecoin-project/lotus/chain/actors/builtin/reward"
|
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
|
|
|
"github.com/filecoin-project/lotus/chain/vm"
|
2020-09-28 11:27:42 +00:00
|
|
|
lcli "github.com/filecoin-project/lotus/cli"
|
2020-09-27 19:10:05 +00:00
|
|
|
"github.com/filecoin-project/lotus/conformance"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/go-address"
|
|
|
|
"github.com/filecoin-project/specs-actors/actors/builtin"
|
|
|
|
"github.com/filecoin-project/test-vectors/schema"
|
|
|
|
|
|
|
|
"github.com/ipfs/go-cid"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
var extractFlags struct {
|
|
|
|
id string
|
2020-09-28 12:00:07 +00:00
|
|
|
block string
|
2020-09-27 19:10:05 +00:00
|
|
|
class string
|
|
|
|
cid string
|
|
|
|
file string
|
|
|
|
retain string
|
|
|
|
}
|
|
|
|
|
|
|
|
var extractCmd = &cli.Command{
|
|
|
|
Name: "extract",
|
2020-09-28 11:35:01 +00:00
|
|
|
Description: "generate a test vector by extracting it from a live chain",
|
2020-09-27 19:10:05 +00:00
|
|
|
Action: runExtract,
|
|
|
|
Flags: []cli.Flag{
|
2020-09-28 11:35:01 +00:00
|
|
|
&repoFlag,
|
2020-09-27 19:10:05 +00:00
|
|
|
&cli.StringFlag{
|
|
|
|
Name: "class",
|
|
|
|
Usage: "class of vector to extract; other required flags depend on the; values: 'message'",
|
|
|
|
Value: "message",
|
|
|
|
Destination: &extractFlags.class,
|
|
|
|
},
|
|
|
|
&cli.StringFlag{
|
|
|
|
Name: "id",
|
|
|
|
Usage: "identifier to name this test vector with",
|
2020-09-27 19:30:32 +00:00
|
|
|
Value: "(undefined)",
|
2020-09-27 19:10:05 +00:00
|
|
|
Destination: &extractFlags.id,
|
|
|
|
},
|
2020-09-28 12:00:07 +00:00
|
|
|
&cli.StringFlag{
|
|
|
|
Name: "block",
|
|
|
|
Usage: "optionally, the block CID the message was included in, to avoid expensive chain scanning",
|
|
|
|
Destination: &extractFlags.block,
|
|
|
|
},
|
2020-09-27 19:10:05 +00:00
|
|
|
&cli.StringFlag{
|
|
|
|
Name: "cid",
|
|
|
|
Usage: "message CID to generate test vector from",
|
|
|
|
Required: true,
|
|
|
|
Destination: &extractFlags.cid,
|
|
|
|
},
|
|
|
|
&cli.StringFlag{
|
|
|
|
Name: "out",
|
|
|
|
Aliases: []string{"o"},
|
|
|
|
Usage: "file to write test vector to",
|
|
|
|
Destination: &extractFlags.file,
|
|
|
|
},
|
|
|
|
&cli.StringFlag{
|
|
|
|
Name: "state-retain",
|
|
|
|
Usage: "state retention policy; values: 'accessed-cids', 'accessed-actors'",
|
|
|
|
Value: "accessed-cids",
|
|
|
|
Destination: &extractFlags.retain,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2020-09-28 11:27:42 +00:00
|
|
|
func runExtract(c *cli.Context) error {
|
2020-09-27 19:10:05 +00:00
|
|
|
// LOTUS_DISABLE_VM_BUF disables what's called "VM state tree buffering",
|
|
|
|
// which stashes write operations in a BufferedBlockstore
|
|
|
|
// (https://github.com/filecoin-project/lotus/blob/b7a4dbb07fd8332b4492313a617e3458f8003b2a/lib/bufbstore/buf_bstore.go#L21)
|
|
|
|
// such that they're not written until the VM is actually flushed.
|
|
|
|
//
|
|
|
|
// For some reason, the standard behaviour was not working for me (raulk),
|
|
|
|
// and disabling it (such that the state transformations are written immediately
|
|
|
|
// to the blockstore) worked.
|
|
|
|
_ = os.Setenv("LOTUS_DISABLE_VM_BUF", "iknowitsabadidea")
|
|
|
|
|
|
|
|
ctx := context.Background()
|
|
|
|
|
|
|
|
mcid, err := cid.Decode(extractFlags.cid)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make the API client.
|
2020-09-28 11:27:42 +00:00
|
|
|
api, closer, err := lcli.GetFullNodeAPI(c)
|
2020-09-27 19:10:05 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer closer()
|
|
|
|
|
2020-09-28 12:00:07 +00:00
|
|
|
var (
|
|
|
|
msg *types.Message
|
|
|
|
incTs *types.TipSet
|
|
|
|
execTs *types.TipSet
|
|
|
|
)
|
2020-09-27 19:10:05 +00:00
|
|
|
|
|
|
|
// Extract the full message.
|
2020-09-28 12:00:07 +00:00
|
|
|
msg, err = api.ChainGetMessage(ctx, mcid)
|
2020-09-27 19:10:05 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-09-28 12:00:07 +00:00
|
|
|
log.Printf("found message with CID %s: %+v", mcid, msg)
|
2020-09-27 19:10:05 +00:00
|
|
|
|
2020-09-28 12:00:07 +00:00
|
|
|
if block := extractFlags.block; block == "" {
|
|
|
|
log.Printf("locating message in blockchain")
|
|
|
|
|
|
|
|
// Locate the message.
|
|
|
|
msgInfo, err := api.StateSearchMsg(ctx, mcid)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to locate message: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("located message at tipset %s (height: %d) with exit code: %s", msgInfo.TipSet, msgInfo.Height, msgInfo.Receipt.ExitCode)
|
|
|
|
|
|
|
|
execTs, incTs, err = fetchThisAndPrevTipset(ctx, api, msgInfo.TipSet)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
bcid, err := cid.Decode(block)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("message inclusion block CID was provided; scanning around it: %s", bcid)
|
|
|
|
|
|
|
|
blk, err := api.ChainGetBlock(ctx, bcid)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to get block: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// types.EmptyTSK hints to use the HEAD.
|
|
|
|
execTs, err = api.ChainGetTipSetByHeight(ctx, blk.Height+1, types.EmptyTSK)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to get message execution tipset: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// walk back from the execTs instead of HEAD, to save time.
|
|
|
|
incTs, err = api.ChainGetTipSetByHeight(ctx, blk.Height, execTs.Key())
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to get message inclusion tipset: %w", err)
|
|
|
|
}
|
2020-09-27 19:10:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("message was executed in tipset: %s", execTs.Key())
|
|
|
|
log.Printf("message was included in tipset: %s", incTs.Key())
|
|
|
|
log.Printf("finding precursor messages")
|
|
|
|
|
|
|
|
// Iterate through blocks, finding the one that contains the message and its
|
|
|
|
// precursors, if any.
|
|
|
|
var allmsgs []*types.Message
|
|
|
|
for _, b := range incTs.Blocks() {
|
|
|
|
messages, err := api.ChainGetBlockMessages(ctx, b.Cid())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
related, found, err := findMsgAndPrecursors(messages, msg)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("invariant failed while scanning messages in block %s: %w", b.Cid(), err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if found {
|
|
|
|
var mcids []cid.Cid
|
|
|
|
for _, m := range related {
|
|
|
|
mcids = append(mcids, m.Cid())
|
|
|
|
}
|
|
|
|
log.Printf("found message in block %s; precursors: %v", b.Cid(), mcids[:len(mcids)-1])
|
|
|
|
allmsgs = related
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("message not found in block %s; precursors found: %v; ignoring block", b.Cid(), related)
|
|
|
|
}
|
|
|
|
|
|
|
|
if allmsgs == nil {
|
|
|
|
// Message was not found; abort.
|
|
|
|
return fmt.Errorf("did not find a block containing the message")
|
|
|
|
}
|
|
|
|
|
|
|
|
precursors := allmsgs[:len(allmsgs)-1]
|
|
|
|
|
|
|
|
var (
|
|
|
|
// create a read-through store that uses ChainGetObject to fetch unknown CIDs.
|
|
|
|
pst = NewProxyingStores(ctx, api)
|
|
|
|
g = NewSurgeon(ctx, api, pst)
|
|
|
|
)
|
|
|
|
|
2020-09-27 19:55:09 +00:00
|
|
|
driver := conformance.NewDriver(ctx, schema.Selector{}, conformance.DriverOpts{
|
|
|
|
DisableVMFlush: true,
|
|
|
|
})
|
2020-09-27 19:10:05 +00:00
|
|
|
|
|
|
|
// this is the root of the state tree we start with.
|
|
|
|
root := incTs.ParentState()
|
|
|
|
log.Printf("base state tree root CID: %s", root)
|
|
|
|
|
|
|
|
// on top of that state tree, we apply all precursors.
|
|
|
|
log.Printf("number of precursors to apply: %d", len(precursors))
|
|
|
|
for i, m := range precursors {
|
|
|
|
log.Printf("applying precursor %d, cid: %s", i, m.Cid())
|
|
|
|
_, root, err = driver.ExecuteMessage(pst.Blockstore, root, execTs.Height(), m)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to execute precursor message: %w", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
preroot cid.Cid
|
|
|
|
postroot cid.Cid
|
|
|
|
applyret *vm.ApplyRet
|
|
|
|
carWriter func(w io.Writer) error
|
|
|
|
retention = extractFlags.retain
|
|
|
|
)
|
|
|
|
|
|
|
|
log.Printf("using state retention strategy: %s", retention)
|
|
|
|
switch retention {
|
|
|
|
case "accessed-cids":
|
|
|
|
tbs, ok := pst.Blockstore.(TracingBlockstore)
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("requested 'accessed-cids' state retention, but no tracing blockstore was present")
|
|
|
|
}
|
|
|
|
|
|
|
|
tbs.StartTracing()
|
|
|
|
|
|
|
|
preroot = root
|
|
|
|
applyret, postroot, err = driver.ExecuteMessage(pst.Blockstore, preroot, execTs.Height(), msg)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to execute message: %w", err)
|
|
|
|
}
|
|
|
|
accessed := tbs.FinishTracing()
|
|
|
|
carWriter = func(w io.Writer) error {
|
|
|
|
return g.WriteCARIncluding(w, accessed, preroot, postroot)
|
|
|
|
}
|
|
|
|
|
|
|
|
case "accessed-actors":
|
|
|
|
log.Printf("calculating accessed actors")
|
|
|
|
// get actors accessed by message.
|
|
|
|
retain, err := g.GetAccessedActors(ctx, api, mcid)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to calculate accessed actors: %w", err)
|
|
|
|
}
|
|
|
|
// also append the reward actor and the burnt funds actor.
|
|
|
|
retain = append(retain, reward.Address, builtin.BurntFundsActorAddr, init_.Address)
|
|
|
|
log.Printf("calculated accessed actors: %v", retain)
|
|
|
|
|
|
|
|
// get the masked state tree from the root,
|
|
|
|
preroot, err = g.GetMaskedStateTree(root, retain)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
applyret, postroot, err = driver.ExecuteMessage(pst.Blockstore, preroot, execTs.Height(), msg)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to execute message: %w", err)
|
|
|
|
}
|
|
|
|
carWriter = func(w io.Writer) error {
|
|
|
|
return g.WriteCAR(w, preroot, postroot)
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
return fmt.Errorf("unknown state retention option: %s", retention)
|
|
|
|
}
|
|
|
|
|
|
|
|
msgBytes, err := msg.Serialize()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
out = new(bytes.Buffer)
|
|
|
|
gw = gzip.NewWriter(out)
|
|
|
|
)
|
|
|
|
if err := carWriter(gw); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err = gw.Flush(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err = gw.Close(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
version, err := api.Version(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
ntwkName, err := api.StateNetworkName(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write out the test vector.
|
|
|
|
vector := schema.TestVector{
|
|
|
|
Class: schema.ClassMessage,
|
|
|
|
Meta: &schema.Metadata{
|
|
|
|
ID: extractFlags.id,
|
|
|
|
Gen: []schema.GenerationData{
|
2020-09-28 12:00:07 +00:00
|
|
|
{Source: fmt.Sprintf("network:%s", ntwkName)},
|
|
|
|
{Source: fmt.Sprintf("msg:%s", msg.Cid().String())},
|
|
|
|
{Source: fmt.Sprintf("inc_ts:%s", incTs.Key().String())},
|
|
|
|
{Source: fmt.Sprintf("exec_ts:%s", execTs.Key().String())},
|
2020-09-27 19:10:05 +00:00
|
|
|
{Source: "github.com/filecoin-project/lotus", Version: version.String()}},
|
|
|
|
},
|
|
|
|
CAR: out.Bytes(),
|
|
|
|
Pre: &schema.Preconditions{
|
|
|
|
Epoch: int64(execTs.Height()),
|
|
|
|
StateTree: &schema.StateTree{
|
|
|
|
RootCID: preroot,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
ApplyMessages: []schema.Message{{Bytes: msgBytes}},
|
|
|
|
Post: &schema.Postconditions{
|
|
|
|
StateTree: &schema.StateTree{
|
|
|
|
RootCID: postroot,
|
|
|
|
},
|
|
|
|
Receipts: []*schema.Receipt{
|
|
|
|
{
|
|
|
|
ExitCode: int64(applyret.ExitCode),
|
|
|
|
ReturnValue: applyret.Return,
|
|
|
|
GasUsed: applyret.GasUsed,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
output := io.WriteCloser(os.Stdout)
|
2020-09-27 19:30:32 +00:00
|
|
|
if file := extractFlags.file; file != "" {
|
|
|
|
output, err = os.Create(file)
|
2020-09-27 19:10:05 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-09-27 20:06:07 +00:00
|
|
|
defer output.Close() //nolint:errcheck
|
2020-09-27 19:30:32 +00:00
|
|
|
defer log.Printf("wrote test vector to file: %s", file)
|
2020-09-27 19:10:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
enc := json.NewEncoder(output)
|
|
|
|
enc.SetIndent("", " ")
|
|
|
|
if err := enc.Encode(&vector); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// fetchThisAndPrevTipset returns the full tipset identified by the key, as well
|
|
|
|
// as the previous tipset. In the context of vector generation, the target
|
|
|
|
// tipset is the one where a message was executed, and the previous tipset is
|
|
|
|
// the one where the message was included.
|
|
|
|
func fetchThisAndPrevTipset(ctx context.Context, api api.FullNode, target types.TipSetKey) (targetTs *types.TipSet, prevTs *types.TipSet, err error) {
|
|
|
|
// get the tipset on which this message was "executed" on.
|
|
|
|
// https://github.com/filecoin-project/lotus/issues/2847
|
|
|
|
targetTs, err = api.ChainGetTipSet(ctx, target)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
// get the previous tipset, on which this message was mined,
|
|
|
|
// i.e. included on-chain.
|
|
|
|
prevTs, err = api.ChainGetTipSet(ctx, targetTs.Parents())
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
return targetTs, prevTs, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// findMsgAndPrecursors scans the messages in a block to locate the supplied
|
|
|
|
// message, looking into the BLS or SECP section depending on the sender's
|
|
|
|
// address type.
|
|
|
|
//
|
|
|
|
// It returns any precursors (if they exist), and the found message (if found),
|
|
|
|
// in a slice.
|
|
|
|
//
|
|
|
|
// It also returns a boolean indicating whether the message was actually found.
|
|
|
|
//
|
|
|
|
// This function also asserts invariants, and if those fail, it returns an error.
|
|
|
|
func findMsgAndPrecursors(messages *api.BlockMessages, target *types.Message) (related []*types.Message, found bool, err error) {
|
|
|
|
// Decide which block of messages to process, depending on whether the
|
|
|
|
// sender is a BLS or a SECP account.
|
|
|
|
input := messages.BlsMessages
|
|
|
|
if senderKind := target.From.Protocol(); senderKind == address.SECP256K1 {
|
|
|
|
input = make([]*types.Message, 0, len(messages.SecpkMessages))
|
|
|
|
for _, sm := range messages.SecpkMessages {
|
|
|
|
input = append(input, &sm.Message)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, other := range input {
|
|
|
|
if other.From != target.From {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// this message is from the same sender, so it's related.
|
|
|
|
related = append(related, other)
|
|
|
|
|
|
|
|
if other.Nonce > target.Nonce {
|
|
|
|
return nil, false, fmt.Errorf("a message with nonce higher than the target was found before the target; offending mcid: %s", other.Cid())
|
|
|
|
}
|
|
|
|
|
|
|
|
// this message is the target; we're done.
|
|
|
|
if other.Cid() == target.Cid() {
|
|
|
|
return related, true, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// this could happen because a block contained related messages, but not
|
|
|
|
// the target (that is, messages with a lower nonce, but ultimately not the
|
|
|
|
// target).
|
|
|
|
return related, false, nil
|
|
|
|
}
|