2020-01-10 18:21:46 +00:00
|
|
|
package storageadapter
|
2019-11-04 19:57:54 +00:00
|
|
|
|
|
|
|
// this file implements storagemarket.StorageProviderNode
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"context"
|
2020-01-24 20:19:52 +00:00
|
|
|
"io"
|
2019-11-04 19:57:54 +00:00
|
|
|
|
2020-02-09 06:06:32 +00:00
|
|
|
"github.com/filecoin-project/specs-actors/actors/abi"
|
2020-02-20 08:37:10 +00:00
|
|
|
"github.com/filecoin-project/specs-actors/actors/builtin"
|
2020-02-09 06:06:32 +00:00
|
|
|
"github.com/filecoin-project/specs-actors/actors/builtin/market"
|
|
|
|
"github.com/filecoin-project/specs-actors/actors/builtin/miner"
|
2020-02-12 22:32:26 +00:00
|
|
|
"github.com/filecoin-project/specs-actors/actors/crypto"
|
2019-11-04 19:57:54 +00:00
|
|
|
"github.com/ipfs/go-cid"
|
|
|
|
logging "github.com/ipfs/go-log"
|
|
|
|
"golang.org/x/xerrors"
|
|
|
|
|
|
|
|
"github.com/filecoin-project/go-address"
|
2019-12-17 10:46:39 +00:00
|
|
|
"github.com/filecoin-project/go-fil-markets/storagemarket"
|
2019-11-04 19:57:54 +00:00
|
|
|
"github.com/filecoin-project/lotus/api"
|
2020-01-24 20:19:52 +00:00
|
|
|
"github.com/filecoin-project/lotus/build"
|
2019-11-04 19:57:54 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/actors"
|
2020-01-24 20:19:52 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/events"
|
2019-11-04 19:57:54 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
2020-01-10 18:21:46 +00:00
|
|
|
"github.com/filecoin-project/lotus/markets/utils"
|
2019-11-04 19:57:54 +00:00
|
|
|
"github.com/filecoin-project/lotus/node/modules/dtypes"
|
2020-01-24 20:19:52 +00:00
|
|
|
"github.com/filecoin-project/lotus/storage/sealing"
|
2019-11-04 19:57:54 +00:00
|
|
|
"github.com/filecoin-project/lotus/storage/sectorblocks"
|
|
|
|
)
|
|
|
|
|
|
|
|
var log = logging.Logger("provideradapter")
|
|
|
|
|
|
|
|
type ProviderNodeAdapter struct {
|
|
|
|
api.FullNode
|
|
|
|
|
|
|
|
// this goes away with the data transfer module
|
|
|
|
dag dtypes.StagingDAG
|
|
|
|
|
|
|
|
secb *sectorblocks.SectorBlocks
|
2020-01-24 20:19:52 +00:00
|
|
|
ev *events.Events
|
2019-11-04 19:57:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewProviderNodeAdapter(dag dtypes.StagingDAG, secb *sectorblocks.SectorBlocks, full api.FullNode) storagemarket.StorageProviderNode {
|
|
|
|
return &ProviderNodeAdapter{
|
|
|
|
FullNode: full,
|
|
|
|
dag: dag,
|
|
|
|
secb: secb,
|
2020-01-24 20:19:52 +00:00
|
|
|
ev: events.NewEvents(context.TODO(), full),
|
2019-11-04 19:57:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *ProviderNodeAdapter) PublishDeals(ctx context.Context, deal storagemarket.MinerDeal) (storagemarket.DealID, cid.Cid, error) {
|
|
|
|
log.Info("publishing deal")
|
|
|
|
|
2020-01-10 18:01:48 +00:00
|
|
|
worker, err := n.StateMinerWorker(ctx, deal.Proposal.Provider, nil)
|
2019-11-04 19:57:54 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, cid.Undef, err
|
|
|
|
}
|
|
|
|
|
|
|
|
params, err := actors.SerializeParams(&actors.PublishStorageDealsParams{
|
2020-02-12 22:32:26 +00:00
|
|
|
Deals: []market.ClientDealProposal{deal.ClientDealProposal},
|
2019-11-04 19:57:54 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return 0, cid.Undef, xerrors.Errorf("serializing PublishStorageDeals params failed: ", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: We may want this to happen after fetching data
|
|
|
|
smsg, err := n.MpoolPushMessage(ctx, &types.Message{
|
|
|
|
To: actors.StorageMarketAddress,
|
|
|
|
From: worker,
|
|
|
|
Value: types.NewInt(0),
|
|
|
|
GasPrice: types.NewInt(0),
|
|
|
|
GasLimit: types.NewInt(1000000),
|
2020-02-20 08:37:10 +00:00
|
|
|
Method: builtin.MethodsMarket.PublishStorageDeals,
|
2019-11-04 19:57:54 +00:00
|
|
|
Params: params,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return 0, cid.Undef, err
|
|
|
|
}
|
|
|
|
r, err := n.StateWaitMsg(ctx, smsg.Cid())
|
|
|
|
if err != nil {
|
|
|
|
return 0, cid.Undef, err
|
|
|
|
}
|
|
|
|
if r.Receipt.ExitCode != 0 {
|
|
|
|
return 0, cid.Undef, xerrors.Errorf("publishing deal failed: exit %d", r.Receipt.ExitCode)
|
|
|
|
}
|
|
|
|
var resp actors.PublishStorageDealResponse
|
|
|
|
if err := resp.UnmarshalCBOR(bytes.NewReader(r.Receipt.Return)); err != nil {
|
|
|
|
return 0, cid.Undef, err
|
|
|
|
}
|
2020-02-09 06:06:32 +00:00
|
|
|
if len(resp.IDs) != 1 {
|
2019-11-04 19:57:54 +00:00
|
|
|
return 0, cid.Undef, xerrors.Errorf("got unexpected number of DealIDs from")
|
|
|
|
}
|
|
|
|
|
2020-02-20 08:37:10 +00:00
|
|
|
// TODO: bad types here
|
|
|
|
return storagemarket.DealID(resp.IDs[0]), smsg.Cid(), nil
|
2019-11-04 19:57:54 +00:00
|
|
|
}
|
|
|
|
|
2020-02-20 08:37:10 +00:00
|
|
|
func (n *ProviderNodeAdapter) OnDealComplete(ctx context.Context, deal storagemarket.MinerDeal, pieceSize abi.UnpaddedPieceSize, pieceData io.Reader) error {
|
|
|
|
_, err := n.secb.AddPiece(ctx, abi.UnpaddedPieceSize(pieceSize), pieceData, abi.DealID(deal.DealID))
|
2019-11-04 19:57:54 +00:00
|
|
|
if err != nil {
|
2020-02-05 04:08:08 +00:00
|
|
|
return xerrors.Errorf("AddPiece failed: %s", err)
|
2019-11-04 19:57:54 +00:00
|
|
|
}
|
2020-02-05 04:08:08 +00:00
|
|
|
log.Warnf("New Deal: deal %d", deal.DealID)
|
2019-11-04 19:57:54 +00:00
|
|
|
|
2020-02-05 04:08:08 +00:00
|
|
|
return nil
|
2019-11-04 19:57:54 +00:00
|
|
|
}
|
|
|
|
|
2020-02-20 08:37:10 +00:00
|
|
|
func (n *ProviderNodeAdapter) VerifySignature(sig crypto.Signature, addr address.Address, input []byte) bool {
|
|
|
|
panic("nyi")
|
|
|
|
}
|
|
|
|
|
2019-12-17 10:46:39 +00:00
|
|
|
func (n *ProviderNodeAdapter) ListProviderDeals(ctx context.Context, addr address.Address) ([]storagemarket.StorageDeal, error) {
|
2019-11-04 19:57:54 +00:00
|
|
|
allDeals, err := n.StateMarketDeals(ctx, nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2019-12-17 10:46:39 +00:00
|
|
|
var out []storagemarket.StorageDeal
|
2019-11-04 19:57:54 +00:00
|
|
|
|
|
|
|
for _, deal := range allDeals {
|
2020-02-09 06:06:32 +00:00
|
|
|
sharedDeal := utils.FromOnChainDeal(deal.Proposal, deal.State)
|
2019-12-17 10:46:39 +00:00
|
|
|
if sharedDeal.Provider == addr {
|
|
|
|
out = append(out, sharedDeal)
|
2019-11-04 19:57:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return out, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *ProviderNodeAdapter) GetMinerWorker(ctx context.Context, miner address.Address) (address.Address, error) {
|
2020-01-10 18:01:48 +00:00
|
|
|
addr, err := n.StateMinerWorker(ctx, miner, nil)
|
|
|
|
return addr, err
|
2019-11-04 19:57:54 +00:00
|
|
|
}
|
|
|
|
|
2020-02-12 22:32:26 +00:00
|
|
|
func (n *ProviderNodeAdapter) SignBytes(ctx context.Context, signer address.Address, b []byte) (*crypto.Signature, error) {
|
2020-01-10 18:01:48 +00:00
|
|
|
localSignature, err := n.WalletSign(ctx, signer, b)
|
2019-12-17 10:46:39 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-02-20 08:37:10 +00:00
|
|
|
return localSignature, nil
|
2019-11-04 19:57:54 +00:00
|
|
|
}
|
|
|
|
|
2020-02-12 22:32:26 +00:00
|
|
|
func (n *ProviderNodeAdapter) EnsureFunds(ctx context.Context, addr address.Address, amt abi.TokenAmount) error {
|
|
|
|
return n.MarketEnsureAvailable(ctx, addr, amt)
|
2019-11-04 19:57:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (n *ProviderNodeAdapter) MostRecentStateId(ctx context.Context) (storagemarket.StateKey, error) {
|
|
|
|
return n.ChainHead(ctx)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Adds funds with the StorageMinerActor for a storage participant. Used by both providers and clients.
|
2020-02-12 22:32:26 +00:00
|
|
|
func (n *ProviderNodeAdapter) AddFunds(ctx context.Context, addr address.Address, amount abi.TokenAmount) error {
|
2019-11-04 19:57:54 +00:00
|
|
|
// (Provider Node API)
|
|
|
|
smsg, err := n.MpoolPushMessage(ctx, &types.Message{
|
|
|
|
To: actors.StorageMarketAddress,
|
2020-01-10 18:01:48 +00:00
|
|
|
From: addr,
|
2020-02-12 22:32:26 +00:00
|
|
|
Value: amount,
|
2019-11-04 19:57:54 +00:00
|
|
|
GasPrice: types.NewInt(0),
|
|
|
|
GasLimit: types.NewInt(1000000),
|
2020-02-20 08:37:10 +00:00
|
|
|
Method: builtin.MethodsMarket.AddBalance,
|
2019-11-04 19:57:54 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
r, err := n.StateWaitMsg(ctx, smsg.Cid())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if r.Receipt.ExitCode != 0 {
|
|
|
|
return xerrors.Errorf("adding funds to storage miner market actor failed: exit %d", r.Receipt.ExitCode)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *ProviderNodeAdapter) GetBalance(ctx context.Context, addr address.Address) (storagemarket.Balance, error) {
|
2020-01-10 18:01:48 +00:00
|
|
|
bal, err := n.StateMarketBalance(ctx, addr, nil)
|
2019-11-04 19:57:54 +00:00
|
|
|
if err != nil {
|
|
|
|
return storagemarket.Balance{}, err
|
|
|
|
}
|
|
|
|
|
2020-02-20 08:37:10 +00:00
|
|
|
return utils.ToSharedBalance(bal), nil
|
2019-11-04 19:57:54 +00:00
|
|
|
}
|
|
|
|
|
2020-01-24 20:19:52 +00:00
|
|
|
func (n *ProviderNodeAdapter) LocatePieceForDealWithinSector(ctx context.Context, dealID uint64) (sectorID uint64, offset uint64, length uint64, err error) {
|
|
|
|
|
2020-02-09 06:06:32 +00:00
|
|
|
refs, err := n.secb.GetRefs(abi.DealID(dealID))
|
2020-01-24 20:19:52 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, 0, 0, err
|
|
|
|
}
|
|
|
|
if len(refs) == 0 {
|
|
|
|
return 0, 0, 0, xerrors.New("no sector information for deal ID")
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: better strategy (e.g. look for already unsealed)
|
|
|
|
var best api.SealedRef
|
|
|
|
var bestSi sealing.SectorInfo
|
|
|
|
for _, r := range refs {
|
|
|
|
si, err := n.secb.Miner.GetSectorInfo(r.SectorID)
|
|
|
|
if err != nil {
|
|
|
|
return 0, 0, 0, xerrors.Errorf("getting sector info: %w", err)
|
|
|
|
}
|
|
|
|
if si.State == api.Proving {
|
|
|
|
best = r
|
|
|
|
bestSi = si
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if bestSi.State == api.UndefinedSectorState {
|
|
|
|
return 0, 0, 0, xerrors.New("no sealed sector found")
|
|
|
|
}
|
2020-02-09 06:06:32 +00:00
|
|
|
return uint64(best.SectorID), best.Offset, uint64(best.Size), nil
|
2020-01-24 20:19:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (n *ProviderNodeAdapter) OnDealSectorCommitted(ctx context.Context, provider address.Address, dealID uint64, cb storagemarket.DealSectorCommittedCallback) error {
|
|
|
|
checkFunc := func(ts *types.TipSet) (done bool, more bool, err error) {
|
2020-02-09 06:06:32 +00:00
|
|
|
sd, err := n.StateMarketStorageDeal(ctx, abi.DealID(dealID), ts)
|
2020-01-24 20:19:52 +00:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
// TODO: This may be fine for some errors
|
|
|
|
return false, false, xerrors.Errorf("failed to look up deal on chain: %w", err)
|
|
|
|
}
|
|
|
|
|
2020-02-09 06:06:32 +00:00
|
|
|
if sd.State.SectorStartEpoch > 0 {
|
2020-01-24 20:19:52 +00:00
|
|
|
cb(nil)
|
|
|
|
return true, false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return false, true, nil
|
|
|
|
}
|
|
|
|
|
2020-02-09 06:06:32 +00:00
|
|
|
called := func(msg *types.Message, rec *types.MessageReceipt, ts *types.TipSet, curH abi.ChainEpoch) (more bool, err error) {
|
2020-01-24 20:19:52 +00:00
|
|
|
defer func() {
|
|
|
|
if err != nil {
|
|
|
|
cb(xerrors.Errorf("handling applied event: %w", err))
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
if msg == nil {
|
|
|
|
log.Error("timed out waiting for deal activation... what now?")
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
2020-02-09 06:06:32 +00:00
|
|
|
sd, err := n.StateMarketStorageDeal(ctx, abi.DealID(dealID), ts)
|
2020-01-24 20:19:52 +00:00
|
|
|
if err != nil {
|
|
|
|
return false, xerrors.Errorf("failed to look up deal on chain: %w", err)
|
|
|
|
}
|
|
|
|
|
2020-02-09 06:06:32 +00:00
|
|
|
if sd.State.SectorStartEpoch < 1 {
|
2020-01-24 20:19:52 +00:00
|
|
|
return false, xerrors.Errorf("deal wasn't active: deal=%d, parentState=%s, h=%d", dealID, ts.ParentState(), ts.Height())
|
|
|
|
}
|
|
|
|
|
2020-02-09 06:06:32 +00:00
|
|
|
log.Infof("Storage deal %d activated at epoch %d", dealID, sd.State.SectorStartEpoch)
|
2020-01-24 20:19:52 +00:00
|
|
|
|
|
|
|
cb(nil)
|
|
|
|
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
revert := func(ctx context.Context, ts *types.TipSet) error {
|
|
|
|
log.Warn("deal activation reverted; TODO: actually handle this!")
|
|
|
|
// TODO: Just go back to DealSealing?
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
matchEvent := func(msg *types.Message) (bool, error) {
|
|
|
|
if msg.To != provider {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
2020-02-20 08:37:10 +00:00
|
|
|
if msg.Method != builtin.MethodsMiner.ProveCommitSector {
|
2020-01-24 20:19:52 +00:00
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
2020-02-09 06:06:32 +00:00
|
|
|
var params miner.SectorPreCommitInfo
|
2020-01-24 20:19:52 +00:00
|
|
|
if err := params.UnmarshalCBOR(bytes.NewReader(msg.Params)); err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var found bool
|
|
|
|
for _, did := range params.DealIDs {
|
2020-02-09 06:06:32 +00:00
|
|
|
if did == abi.DealID(dealID) {
|
2020-01-24 20:19:52 +00:00
|
|
|
found = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return found, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := n.ev.Called(checkFunc, called, revert, 3, build.SealRandomnessLookbackLimit, matchEvent); err != nil {
|
|
|
|
return xerrors.Errorf("failed to set up called handler")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-11-04 19:57:54 +00:00
|
|
|
var _ storagemarket.StorageProviderNode = &ProviderNodeAdapter{}
|