2020-01-10 18:21:46 +00:00
|
|
|
package storageadapter
|
2019-11-04 19:57:54 +00:00
|
|
|
|
|
|
|
// this file implements storagemarket.StorageProviderNode
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2020-09-11 11:28:09 +00:00
|
|
|
"time"
|
2019-11-04 19:57:54 +00:00
|
|
|
|
2020-03-18 19:43:06 +00:00
|
|
|
"github.com/ipfs/go-cid"
|
|
|
|
logging "github.com/ipfs/go-log/v2"
|
2021-02-02 17:43:49 +00:00
|
|
|
"go.uber.org/fx"
|
2020-03-18 19:43:06 +00:00
|
|
|
"golang.org/x/xerrors"
|
|
|
|
|
2020-03-18 18:37:32 +00:00
|
|
|
"github.com/filecoin-project/go-address"
|
|
|
|
"github.com/filecoin-project/go-fil-markets/shared"
|
|
|
|
"github.com/filecoin-project/go-fil-markets/storagemarket"
|
2020-09-07 03:49:10 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
2022-06-14 15:00:51 +00:00
|
|
|
market8 "github.com/filecoin-project/go-state-types/builtin/v8/market"
|
2020-09-07 03:49:10 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/crypto"
|
|
|
|
"github.com/filecoin-project/go-state-types/exitcode"
|
2019-11-04 19:57:54 +00:00
|
|
|
|
|
|
|
"github.com/filecoin-project/lotus/api"
|
2021-04-05 17:56:53 +00:00
|
|
|
"github.com/filecoin-project/lotus/api/v1api"
|
2020-01-24 20:19:52 +00:00
|
|
|
"github.com/filecoin-project/lotus/build"
|
2020-09-21 23:01:29 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/actors/builtin/market"
|
2021-01-20 02:06:00 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/actors/builtin/miner"
|
2020-10-02 16:34:50 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/events"
|
2021-08-30 08:42:41 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/events/state"
|
2019-11-04 19:57:54 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
2020-03-03 21:23:06 +00:00
|
|
|
"github.com/filecoin-project/lotus/lib/sigs"
|
2020-01-10 18:21:46 +00:00
|
|
|
"github.com/filecoin-project/lotus/markets/utils"
|
2020-10-02 16:34:50 +00:00
|
|
|
"github.com/filecoin-project/lotus/node/config"
|
2021-02-02 17:43:49 +00:00
|
|
|
"github.com/filecoin-project/lotus/node/modules/helpers"
|
2022-06-14 19:23:17 +00:00
|
|
|
pipeline "github.com/filecoin-project/lotus/storage/pipeline"
|
2019-11-04 19:57:54 +00:00
|
|
|
"github.com/filecoin-project/lotus/storage/sectorblocks"
|
|
|
|
)
|
|
|
|
|
2020-09-11 11:28:09 +00:00
|
|
|
var addPieceRetryWait = 5 * time.Minute
|
2020-09-11 17:45:57 +00:00
|
|
|
var addPieceRetryTimeout = 6 * time.Hour
|
2021-03-02 09:24:57 +00:00
|
|
|
var defaultMaxProviderCollateralMultiplier = uint64(2)
|
2020-07-08 10:52:37 +00:00
|
|
|
var log = logging.Logger("storageadapter")
|
2019-11-04 19:57:54 +00:00
|
|
|
|
|
|
|
type ProviderNodeAdapter struct {
|
2021-04-05 17:56:53 +00:00
|
|
|
v1api.FullNode
|
2019-11-04 19:57:54 +00:00
|
|
|
|
|
|
|
secb *sectorblocks.SectorBlocks
|
2020-01-24 20:19:52 +00:00
|
|
|
ev *events.Events
|
2020-10-02 16:34:50 +00:00
|
|
|
|
2021-01-08 15:28:38 +00:00
|
|
|
dealPublisher *DealPublisher
|
|
|
|
|
2021-03-02 09:24:57 +00:00
|
|
|
addBalanceSpec *api.MessageSendSpec
|
|
|
|
maxDealCollateralMultiplier uint64
|
2021-08-30 08:42:41 +00:00
|
|
|
dsMatcher *dealStateMatcher
|
2021-03-02 09:24:57 +00:00
|
|
|
scMgr *SectorCommittedManager
|
2019-11-04 19:57:54 +00:00
|
|
|
}
|
|
|
|
|
2021-08-04 00:10:30 +00:00
|
|
|
func NewProviderNodeAdapter(fc *config.MinerFeeConfig, dc *config.DealmakingConfig) func(mctx helpers.MetricsCtx, lc fx.Lifecycle, secb *sectorblocks.SectorBlocks, full v1api.FullNode, dealPublisher *DealPublisher) (storagemarket.StorageProviderNode, error) {
|
|
|
|
return func(mctx helpers.MetricsCtx, lc fx.Lifecycle, secb *sectorblocks.SectorBlocks, full v1api.FullNode, dealPublisher *DealPublisher) (storagemarket.StorageProviderNode, error) {
|
2021-02-02 17:43:49 +00:00
|
|
|
ctx := helpers.LifecycleCtx(mctx, lc)
|
|
|
|
|
2021-08-04 00:10:30 +00:00
|
|
|
ev, err := events.NewEvents(ctx, full)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-10-02 16:34:50 +00:00
|
|
|
na := &ProviderNodeAdapter{
|
2021-01-08 15:28:38 +00:00
|
|
|
FullNode: full,
|
2020-10-02 16:34:50 +00:00
|
|
|
|
2021-01-08 15:28:38 +00:00
|
|
|
secb: secb,
|
|
|
|
ev: ev,
|
|
|
|
dealPublisher: dealPublisher,
|
2021-08-30 08:42:41 +00:00
|
|
|
dsMatcher: newDealStateMatcher(state.NewStatePredicates(state.WrapFastAPI(full))),
|
2020-10-02 16:34:50 +00:00
|
|
|
}
|
|
|
|
if fc != nil {
|
|
|
|
na.addBalanceSpec = &api.MessageSendSpec{MaxFee: abi.TokenAmount(fc.MaxMarketBalanceAddFee)}
|
|
|
|
}
|
2021-03-02 09:24:57 +00:00
|
|
|
na.maxDealCollateralMultiplier = defaultMaxProviderCollateralMultiplier
|
|
|
|
if dc != nil {
|
|
|
|
na.maxDealCollateralMultiplier = dc.MaxProviderCollateralMultiplier
|
|
|
|
}
|
2021-01-08 15:28:38 +00:00
|
|
|
na.scMgr = NewSectorCommittedManager(ev, na, &apiWrapper{api: full})
|
|
|
|
|
2021-08-04 00:10:30 +00:00
|
|
|
return na, nil
|
2019-11-04 19:57:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-05 01:31:56 +00:00
|
|
|
func (n *ProviderNodeAdapter) PublishDeals(ctx context.Context, deal storagemarket.MinerDeal) (cid.Cid, error) {
|
2021-01-08 15:28:38 +00:00
|
|
|
return n.dealPublisher.Publish(ctx, deal.ClientDealProposal)
|
2019-11-04 19:57:54 +00:00
|
|
|
}
|
|
|
|
|
2021-12-17 13:44:51 +00:00
|
|
|
func (n *ProviderNodeAdapter) OnDealComplete(ctx context.Context, deal storagemarket.MinerDeal, pieceSize abi.UnpaddedPieceSize, pieceData shared.ReadSeekStarter) (*storagemarket.PackingResult, error) {
|
2020-08-27 15:50:37 +00:00
|
|
|
if deal.PublishCid == nil {
|
|
|
|
return nil, xerrors.Errorf("deal.PublishCid can't be nil")
|
|
|
|
}
|
|
|
|
|
2021-05-19 11:05:07 +00:00
|
|
|
sdInfo := api.PieceDealInfo{
|
2021-01-25 10:28:39 +00:00
|
|
|
DealID: deal.DealID,
|
|
|
|
DealProposal: &deal.Proposal,
|
|
|
|
PublishCid: deal.PublishCid,
|
2021-05-19 11:05:07 +00:00
|
|
|
DealSchedule: api.DealSchedule{
|
2020-04-07 22:34:30 +00:00
|
|
|
StartEpoch: deal.ClientDealProposal.Proposal.StartEpoch,
|
|
|
|
EndEpoch: deal.ClientDealProposal.Proposal.EndEpoch,
|
|
|
|
},
|
2020-07-08 18:35:55 +00:00
|
|
|
KeepUnsealed: deal.FastRetrieval,
|
2020-09-11 11:28:09 +00:00
|
|
|
}
|
|
|
|
|
2021-12-17 13:44:51 +00:00
|
|
|
// Attempt to add the piece to the sector
|
2020-09-11 11:28:09 +00:00
|
|
|
p, offset, err := n.secb.AddPiece(ctx, pieceSize, pieceData, sdInfo)
|
2021-08-06 02:23:29 +00:00
|
|
|
curTime := build.Clock.Now()
|
|
|
|
for build.Clock.Since(curTime) < addPieceRetryTimeout {
|
2021-12-17 13:44:51 +00:00
|
|
|
// Check if there was an error because of too many sectors being sealed
|
2022-06-14 19:23:17 +00:00
|
|
|
if !xerrors.Is(err, pipeline.ErrTooManySectorsSealing) {
|
2020-09-17 15:30:15 +00:00
|
|
|
if err != nil {
|
2021-02-11 11:00:26 +00:00
|
|
|
log.Errorf("failed to addPiece for deal %d, err: %v", deal.DealID, err)
|
2020-09-17 15:30:15 +00:00
|
|
|
}
|
2021-12-17 13:44:51 +00:00
|
|
|
|
|
|
|
// There was either a fatal error or no error. In either case
|
|
|
|
// don't retry AddPiece
|
2020-09-11 17:45:57 +00:00
|
|
|
break
|
|
|
|
}
|
2021-12-17 13:44:51 +00:00
|
|
|
|
|
|
|
// The piece could not be added to the sector because there are too
|
|
|
|
// many sectors being sealed, back-off for a while before trying again
|
2020-09-11 11:28:09 +00:00
|
|
|
select {
|
2021-08-06 02:23:29 +00:00
|
|
|
case <-build.Clock.After(addPieceRetryWait):
|
2021-12-17 13:44:51 +00:00
|
|
|
// Reset the reader to the start
|
|
|
|
err = pieceData.SeekStart()
|
|
|
|
if err != nil {
|
|
|
|
return nil, xerrors.Errorf("failed to reset piece reader to start before retrying AddPiece for deal %d: %w", deal.DealID, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Attempt to add the piece again
|
2020-09-11 11:28:09 +00:00
|
|
|
p, offset, err = n.secb.AddPiece(ctx, pieceSize, pieceData, sdInfo)
|
|
|
|
case <-ctx.Done():
|
|
|
|
return nil, xerrors.New("context expired while waiting to retry AddPiece")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-11-04 19:57:54 +00:00
|
|
|
if err != nil {
|
2020-07-30 12:31:31 +00:00
|
|
|
return nil, 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-07-30 12:31:31 +00:00
|
|
|
return &storagemarket.PackingResult{
|
|
|
|
SectorNumber: p,
|
|
|
|
Offset: offset,
|
|
|
|
Size: pieceSize.Padded(),
|
|
|
|
}, nil
|
2019-11-04 19:57:54 +00:00
|
|
|
}
|
|
|
|
|
2020-04-07 02:17:02 +00:00
|
|
|
func (n *ProviderNodeAdapter) VerifySignature(ctx context.Context, sig crypto.Signature, addr address.Address, input []byte, encodedTs shared.TipSetToken) (bool, error) {
|
2020-04-16 21:06:31 +00:00
|
|
|
addr, err := n.StateAccountKey(ctx, addr, types.EmptyTSK)
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = sigs.Verify(&sig, addr, input)
|
2020-04-07 02:17:02 +00:00
|
|
|
return err == nil, err
|
2020-02-20 08:37:10 +00:00
|
|
|
}
|
|
|
|
|
2021-01-20 02:06:00 +00:00
|
|
|
func (n *ProviderNodeAdapter) GetMinerWorkerAddress(ctx context.Context, maddr address.Address, tok shared.TipSetToken) (address.Address, error) {
|
2020-03-18 18:37:32 +00:00
|
|
|
tsk, err := types.TipSetKeyFromBytes(tok)
|
|
|
|
if err != nil {
|
|
|
|
return address.Undef, err
|
|
|
|
}
|
|
|
|
|
2021-01-20 02:06:00 +00:00
|
|
|
mi, err := n.StateMinerInfo(ctx, maddr, tsk)
|
2020-04-16 17:36:36 +00:00
|
|
|
if err != nil {
|
|
|
|
return address.Address{}, err
|
|
|
|
}
|
|
|
|
return mi.Worker, nil
|
2019-11-04 19:57:54 +00:00
|
|
|
}
|
|
|
|
|
2021-01-20 02:06:00 +00:00
|
|
|
func (n *ProviderNodeAdapter) GetProofType(ctx context.Context, maddr address.Address, tok shared.TipSetToken) (abi.RegisteredSealProof, error) {
|
2020-11-13 17:15:23 +00:00
|
|
|
tsk, err := types.TipSetKeyFromBytes(tok)
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
2021-01-20 02:06:00 +00:00
|
|
|
mi, err := n.StateMinerInfo(ctx, maddr, tsk)
|
2020-11-13 17:15:23 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
2021-01-20 02:06:00 +00:00
|
|
|
|
|
|
|
nver, err := n.StateNetworkVersion(ctx, tsk)
|
2020-11-13 17:15:23 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
2021-01-20 02:06:00 +00:00
|
|
|
|
|
|
|
return miner.PreferredSealProofTypeFromWindowPoStType(nver, mi.WindowPoStProofType)
|
2020-11-13 17:15:23 +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-04-16 20:38:42 +00:00
|
|
|
signer, err := n.StateAccountKey(ctx, signer, types.EmptyTSK)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
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-11-10 15:45:48 +00:00
|
|
|
func (n *ProviderNodeAdapter) ReserveFunds(ctx context.Context, wallet, addr address.Address, amt abi.TokenAmount) (cid.Cid, error) {
|
|
|
|
return n.MarketReserveFunds(ctx, wallet, addr, amt)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (n *ProviderNodeAdapter) ReleaseFunds(ctx context.Context, addr address.Address, amt abi.TokenAmount) error {
|
|
|
|
return n.MarketReleaseFunds(ctx, addr, amt)
|
2019-11-04 19:57:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Adds funds with the StorageMinerActor for a storage participant. Used by both providers and clients.
|
2020-05-05 01:31:56 +00:00
|
|
|
func (n *ProviderNodeAdapter) AddFunds(ctx context.Context, addr address.Address, amount abi.TokenAmount) (cid.Cid, error) {
|
2019-11-04 19:57:54 +00:00
|
|
|
// (Provider Node API)
|
|
|
|
smsg, err := n.MpoolPushMessage(ctx, &types.Message{
|
2020-09-21 23:01:29 +00:00
|
|
|
To: market.Address,
|
2020-08-06 21:08:42 +00:00
|
|
|
From: addr,
|
|
|
|
Value: amount,
|
2020-10-08 20:32:54 +00:00
|
|
|
Method: market.Methods.AddBalance,
|
2020-10-02 16:34:50 +00:00
|
|
|
}, n.addBalanceSpec)
|
2019-11-04 19:57:54 +00:00
|
|
|
if err != nil {
|
2020-05-05 01:31:56 +00:00
|
|
|
return cid.Undef, err
|
2019-11-04 19:57:54 +00:00
|
|
|
}
|
|
|
|
|
2020-05-05 01:31:56 +00:00
|
|
|
return smsg.Cid(), nil
|
2019-11-04 19:57:54 +00:00
|
|
|
}
|
|
|
|
|
2020-04-07 02:17:02 +00:00
|
|
|
func (n *ProviderNodeAdapter) GetBalance(ctx context.Context, addr address.Address, encodedTs shared.TipSetToken) (storagemarket.Balance, error) {
|
|
|
|
tsk, err := types.TipSetKeyFromBytes(encodedTs)
|
|
|
|
if err != nil {
|
|
|
|
return storagemarket.Balance{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
bal, err := n.StateMarketBalance(ctx, addr, tsk)
|
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-07-27 17:59:30 +00:00
|
|
|
// TODO: why doesnt this method take in a sector ID?
|
2020-07-30 12:31:31 +00:00
|
|
|
func (n *ProviderNodeAdapter) LocatePieceForDealWithinSector(ctx context.Context, dealID abi.DealID, encodedTs shared.TipSetToken) (sectorID abi.SectorNumber, offset abi.PaddedPieceSize, length abi.PaddedPieceSize, err error) {
|
2021-12-11 21:03:00 +00:00
|
|
|
refs, err := n.secb.GetRefs(ctx, 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
|
2021-05-19 11:05:07 +00:00
|
|
|
var bestSi api.SectorInfo
|
2020-01-24 20:19:52 +00:00
|
|
|
for _, r := range refs {
|
2021-05-19 11:05:07 +00:00
|
|
|
si, err := n.secb.SectorBuilder.SectorsStatus(ctx, r.SectorID, false)
|
2020-01-24 20:19:52 +00:00
|
|
|
if err != nil {
|
|
|
|
return 0, 0, 0, xerrors.Errorf("getting sector info: %w", err)
|
|
|
|
}
|
2022-06-14 19:23:17 +00:00
|
|
|
if si.State == api.SectorState(pipeline.Proving) {
|
2020-01-24 20:19:52 +00:00
|
|
|
best = r
|
|
|
|
bestSi = si
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
2022-06-14 19:23:17 +00:00
|
|
|
if bestSi.State == api.SectorState(pipeline.UndefinedSectorState) {
|
2020-01-24 20:19:52 +00:00
|
|
|
return 0, 0, 0, xerrors.New("no sealed sector found")
|
|
|
|
}
|
2020-07-30 12:31:31 +00:00
|
|
|
return best.SectorID, best.Offset, best.Size.Padded(), nil
|
2020-01-24 20:19:52 +00:00
|
|
|
}
|
|
|
|
|
2020-07-30 04:55:37 +00:00
|
|
|
func (n *ProviderNodeAdapter) DealProviderCollateralBounds(ctx context.Context, size abi.PaddedPieceSize, isVerified bool) (abi.TokenAmount, abi.TokenAmount, error) {
|
2020-07-30 12:31:31 +00:00
|
|
|
bounds, err := n.StateDealProviderCollateralBounds(ctx, size, isVerified, types.EmptyTSK)
|
|
|
|
if err != nil {
|
|
|
|
return abi.TokenAmount{}, abi.TokenAmount{}, err
|
|
|
|
}
|
|
|
|
|
2021-03-02 09:24:57 +00:00
|
|
|
// The maximum amount of collateral that the provider will put into escrow
|
|
|
|
// for a deal is calculated as a multiple of the minimum bounded amount
|
|
|
|
max := types.BigMul(bounds.Min, types.NewInt(n.maxDealCollateralMultiplier))
|
|
|
|
|
|
|
|
return bounds.Min, max, nil
|
2020-07-30 04:55:37 +00:00
|
|
|
}
|
|
|
|
|
2021-01-08 15:28:38 +00:00
|
|
|
// TODO: Remove dealID parameter, change publishCid to be cid.Cid (instead of pointer)
|
2022-03-12 18:07:35 +00:00
|
|
|
func (n *ProviderNodeAdapter) OnDealSectorPreCommitted(ctx context.Context, provider address.Address, dealID abi.DealID, proposal market8.DealProposal, publishCid *cid.Cid, cb storagemarket.DealSectorPreCommittedCallback) error {
|
2022-04-20 21:34:28 +00:00
|
|
|
return n.scMgr.OnDealSectorPreCommitted(ctx, provider, proposal, *publishCid, cb)
|
2020-11-20 16:30:17 +00:00
|
|
|
}
|
|
|
|
|
2021-01-08 15:28:38 +00:00
|
|
|
// TODO: Remove dealID parameter, change publishCid to be cid.Cid (instead of pointer)
|
2022-03-12 18:07:35 +00:00
|
|
|
func (n *ProviderNodeAdapter) OnDealSectorCommitted(ctx context.Context, provider address.Address, dealID abi.DealID, sectorNumber abi.SectorNumber, proposal market8.DealProposal, publishCid *cid.Cid, cb storagemarket.DealSectorCommittedCallback) error {
|
2022-04-20 21:34:28 +00:00
|
|
|
return n.scMgr.OnDealSectorCommitted(ctx, provider, sectorNumber, proposal, *publishCid, cb)
|
2020-01-24 20:19:52 +00:00
|
|
|
}
|
|
|
|
|
2020-03-18 18:37:32 +00:00
|
|
|
func (n *ProviderNodeAdapter) GetChainHead(ctx context.Context) (shared.TipSetToken, abi.ChainEpoch, error) {
|
|
|
|
head, err := n.ChainHead(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return head.Key().Bytes(), head.Height(), nil
|
|
|
|
}
|
|
|
|
|
2020-09-11 18:00:42 +00:00
|
|
|
func (n *ProviderNodeAdapter) WaitForMessage(ctx context.Context, mcid cid.Cid, cb func(code exitcode.ExitCode, bytes []byte, finalCid cid.Cid, err error) error) error {
|
2021-04-05 17:56:53 +00:00
|
|
|
receipt, err := n.StateWaitMsg(ctx, mcid, 2*build.MessageConfidence, api.LookbackNoLimit, true)
|
2020-05-05 01:31:56 +00:00
|
|
|
if err != nil {
|
2020-09-11 18:00:42 +00:00
|
|
|
return cb(0, nil, cid.Undef, err)
|
2020-05-05 01:31:56 +00:00
|
|
|
}
|
2020-09-11 18:00:42 +00:00
|
|
|
return cb(receipt.Receipt.ExitCode, receipt.Receipt.Return, receipt.Message, nil)
|
2020-05-05 01:31:56 +00:00
|
|
|
}
|
|
|
|
|
2022-03-12 18:07:35 +00:00
|
|
|
func (n *ProviderNodeAdapter) WaitForPublishDeals(ctx context.Context, publishCid cid.Cid, proposal market8.DealProposal) (*storagemarket.PublishDealsWaitResult, error) {
|
2021-01-26 13:20:36 +00:00
|
|
|
// Wait for deal to be published (plus additional time for confidence)
|
2021-04-05 17:56:53 +00:00
|
|
|
receipt, err := n.StateWaitMsg(ctx, publishCid, 2*build.MessageConfidence, api.LookbackNoLimit, true)
|
2021-01-26 13:20:36 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, xerrors.Errorf("WaitForPublishDeals errored: %w", err)
|
|
|
|
}
|
|
|
|
if receipt.Receipt.ExitCode != exitcode.Ok {
|
|
|
|
return nil, xerrors.Errorf("WaitForPublishDeals exit code: %s", receipt.Receipt.ExitCode)
|
|
|
|
}
|
|
|
|
|
|
|
|
// The deal ID may have changed since publish if there was a reorg, so
|
|
|
|
// get the current deal ID
|
|
|
|
head, err := n.ChainHead(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, xerrors.Errorf("WaitForPublishDeals failed to get chain head: %w", err)
|
|
|
|
}
|
|
|
|
|
2022-04-20 21:34:28 +00:00
|
|
|
res, err := n.scMgr.dealInfo.GetCurrentDealInfo(ctx, head.Key().Bytes(), &proposal, publishCid)
|
2021-01-26 13:20:36 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, xerrors.Errorf("WaitForPublishDeals getting deal info errored: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &storagemarket.PublishDealsWaitResult{DealID: res.DealID, FinalCid: receipt.Message}, nil
|
|
|
|
}
|
|
|
|
|
2020-09-17 08:17:14 +00:00
|
|
|
func (n *ProviderNodeAdapter) GetDataCap(ctx context.Context, addr address.Address, encodedTs shared.TipSetToken) (*abi.StoragePower, error) {
|
2020-07-08 08:35:50 +00:00
|
|
|
tsk, err := types.TipSetKeyFromBytes(encodedTs)
|
|
|
|
if err != nil {
|
2020-09-17 08:17:14 +00:00
|
|
|
return nil, err
|
2020-07-08 08:35:50 +00:00
|
|
|
}
|
2020-09-17 08:17:14 +00:00
|
|
|
|
|
|
|
sp, err := n.StateVerifiedClientStatus(ctx, addr, tsk)
|
2020-09-17 15:30:15 +00:00
|
|
|
return sp, err
|
2020-07-08 08:35:50 +00:00
|
|
|
}
|
|
|
|
|
2021-08-30 08:42:41 +00:00
|
|
|
func (n *ProviderNodeAdapter) OnDealExpiredOrSlashed(ctx context.Context, dealID abi.DealID, onDealExpired storagemarket.DealExpiredCallback, onDealSlashed storagemarket.DealSlashedCallback) error {
|
|
|
|
head, err := n.ChainHead(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return xerrors.Errorf("client: failed to get chain head: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
sd, err := n.StateMarketStorageDeal(ctx, dealID, head.Key())
|
|
|
|
if err != nil {
|
|
|
|
return xerrors.Errorf("client: failed to look up deal %d on chain: %w", dealID, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Called immediately to check if the deal has already expired or been slashed
|
2021-08-04 00:10:30 +00:00
|
|
|
checkFunc := func(ctx context.Context, ts *types.TipSet) (done bool, more bool, err error) {
|
2021-08-30 08:42:41 +00:00
|
|
|
if ts == nil {
|
|
|
|
// keep listening for events
|
|
|
|
return false, true, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the deal has already expired
|
|
|
|
if sd.Proposal.EndEpoch <= ts.Height() {
|
|
|
|
onDealExpired(nil)
|
|
|
|
return true, false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// If there is no deal assume it's already been slashed
|
|
|
|
if sd.State.SectorStartEpoch < 0 {
|
|
|
|
onDealSlashed(ts.Height(), nil)
|
|
|
|
return true, false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// No events have occurred yet, so return
|
|
|
|
// done: false, more: true (keep listening for events)
|
|
|
|
return false, true, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Called when there was a match against the state change we're looking for
|
|
|
|
// and the chain has advanced to the confidence height
|
|
|
|
stateChanged := func(ts *types.TipSet, ts2 *types.TipSet, states events.StateChange, h abi.ChainEpoch) (more bool, err error) {
|
|
|
|
// Check if the deal has already expired
|
|
|
|
if ts2 == nil || sd.Proposal.EndEpoch <= ts2.Height() {
|
|
|
|
onDealExpired(nil)
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Timeout waiting for state change
|
|
|
|
if states == nil {
|
|
|
|
log.Error("timed out waiting for deal expiry")
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
changedDeals, ok := states.(state.ChangedDeals)
|
|
|
|
if !ok {
|
|
|
|
panic("Expected state.ChangedDeals")
|
|
|
|
}
|
|
|
|
|
|
|
|
deal, ok := changedDeals[dealID]
|
|
|
|
if !ok {
|
|
|
|
// No change to deal
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Deal was slashed
|
|
|
|
if deal.To == nil {
|
|
|
|
onDealSlashed(ts2.Height(), nil)
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Called when there was a chain reorg and the state change was reverted
|
|
|
|
revert := func(ctx context.Context, ts *types.TipSet) error {
|
|
|
|
// TODO: Is it ok to just ignore this?
|
|
|
|
log.Warn("deal state reverted; TODO: actually handle this!")
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Watch for state changes to the deal
|
|
|
|
match := n.dsMatcher.matcher(ctx, dealID)
|
|
|
|
|
|
|
|
// Wait until after the end epoch for the deal and then timeout
|
|
|
|
timeout := (sd.Proposal.EndEpoch - head.Height()) + 1
|
|
|
|
if err := n.ev.StateChanged(checkFunc, stateChanged, revert, int(build.MessageConfidence)+1, timeout, match); err != nil {
|
|
|
|
return xerrors.Errorf("failed to set up state changed handler: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2020-07-08 08:35:50 +00:00
|
|
|
}
|
|
|
|
|
2019-11-04 19:57:54 +00:00
|
|
|
var _ storagemarket.StorageProviderNode = &ProviderNodeAdapter{}
|