2019-09-10 12:35:43 +00:00
|
|
|
package deals
|
|
|
|
|
|
|
|
import (
|
2019-11-07 13:29:43 +00:00
|
|
|
"bytes"
|
2019-09-10 12:35:43 +00:00
|
|
|
"context"
|
2019-11-07 09:06:06 +00:00
|
|
|
"github.com/filecoin-project/lotus/build"
|
2019-11-07 13:29:43 +00:00
|
|
|
"github.com/filecoin-project/lotus/lib/cborrpc"
|
2019-10-16 07:07:16 +00:00
|
|
|
|
|
|
|
"golang.org/x/xerrors"
|
|
|
|
|
2019-10-18 04:47:41 +00:00
|
|
|
"github.com/filecoin-project/lotus/api"
|
2019-10-21 18:12:11 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/actors"
|
2019-10-23 17:39:14 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/stmgr"
|
2019-11-07 07:57:10 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
2019-09-10 12:35:43 +00:00
|
|
|
)
|
|
|
|
|
2019-11-07 13:29:43 +00:00
|
|
|
type clientHandlerFunc func(ctx context.Context, deal ClientDeal) (func(*ClientDeal), error)
|
2019-09-10 12:35:43 +00:00
|
|
|
|
2019-09-10 14:13:24 +00:00
|
|
|
func (c *Client) handle(ctx context.Context, deal ClientDeal, cb clientHandlerFunc, next api.DealState) {
|
2019-09-10 12:35:43 +00:00
|
|
|
go func() {
|
2019-11-07 13:29:43 +00:00
|
|
|
mut, err := cb(ctx, deal)
|
2019-09-13 19:43:33 +00:00
|
|
|
if err != nil {
|
|
|
|
next = api.DealError
|
|
|
|
}
|
2019-11-07 09:06:06 +00:00
|
|
|
|
|
|
|
if err == nil && next == api.DealNoUpdate {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-09-10 12:35:43 +00:00
|
|
|
select {
|
|
|
|
case c.updated <- clientDealUpdate{
|
|
|
|
newState: next,
|
|
|
|
id: deal.ProposalCid,
|
|
|
|
err: err,
|
2019-11-07 13:29:43 +00:00
|
|
|
mut: mut,
|
2019-09-10 12:35:43 +00:00
|
|
|
}:
|
|
|
|
case <-c.stop:
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
2019-11-07 13:29:43 +00:00
|
|
|
func (c *Client) new(ctx context.Context, deal ClientDeal) (func(*ClientDeal), error) {
|
2019-09-10 12:35:43 +00:00
|
|
|
resp, err := c.readStorageDealResp(deal)
|
|
|
|
if err != nil {
|
2019-11-07 13:29:43 +00:00
|
|
|
return nil, err
|
2019-09-10 12:35:43 +00:00
|
|
|
}
|
2019-11-07 12:57:00 +00:00
|
|
|
if err := c.disconnect(deal); err != nil {
|
2019-11-07 13:29:43 +00:00
|
|
|
return nil, err
|
2019-11-07 12:57:00 +00:00
|
|
|
}
|
2019-09-10 12:35:43 +00:00
|
|
|
|
2019-11-07 13:29:43 +00:00
|
|
|
/* data transfer happens */
|
2019-09-10 14:13:24 +00:00
|
|
|
if resp.State != api.DealAccepted {
|
2019-11-07 13:29:43 +00:00
|
|
|
return nil, xerrors.Errorf("deal wasn't accepted (State=%d)", resp.State)
|
2019-09-10 12:35:43 +00:00
|
|
|
}
|
|
|
|
|
2019-11-07 13:29:43 +00:00
|
|
|
return func(info *ClientDeal) {
|
|
|
|
info.PublishMessage = resp.PublishMessage
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) accepted(ctx context.Context, deal ClientDeal) (func(*ClientDeal), error) {
|
|
|
|
log.Infow("DEAL ACCEPTED!")
|
|
|
|
|
|
|
|
pubmsg, err := c.chain.GetMessage(*deal.PublishMessage)
|
2019-10-21 18:12:11 +00:00
|
|
|
if err != nil {
|
2019-11-07 13:29:43 +00:00
|
|
|
return nil, xerrors.Errorf("getting deal pubsish message: %w", err)
|
2019-10-21 18:12:11 +00:00
|
|
|
}
|
|
|
|
|
2019-10-23 17:39:14 +00:00
|
|
|
pw, err := stmgr.GetMinerWorker(ctx, c.sm, nil, deal.Proposal.Provider)
|
|
|
|
if err != nil {
|
2019-11-07 13:29:43 +00:00
|
|
|
return nil, xerrors.Errorf("getting miner worker failed: %w", err)
|
2019-10-23 17:39:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if pubmsg.From != pw {
|
2019-11-07 13:29:43 +00:00
|
|
|
return nil, xerrors.Errorf("deal wasn't published by storage provider: from=%s, provider=%s", pubmsg.From, deal.Proposal.Provider)
|
2019-10-21 18:12:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if pubmsg.To != actors.StorageMarketAddress {
|
2019-11-07 13:29:43 +00:00
|
|
|
return nil, xerrors.Errorf("deal publish message wasn't set to StorageMarket actor (to=%s)", pubmsg.To)
|
2019-10-21 18:12:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if pubmsg.Method != actors.SMAMethods.PublishStorageDeals {
|
2019-11-07 13:29:43 +00:00
|
|
|
return nil, xerrors.Errorf("deal publish message called incorrect method (method=%s)", pubmsg.Method)
|
2019-10-21 18:12:11 +00:00
|
|
|
}
|
|
|
|
|
2019-11-07 13:29:43 +00:00
|
|
|
var params actors.PublishStorageDealsParams
|
|
|
|
if err := params.UnmarshalCBOR(bytes.NewReader(pubmsg.Params)); err != nil {
|
|
|
|
return nil, err
|
2019-10-21 18:12:11 +00:00
|
|
|
}
|
2019-09-10 12:35:43 +00:00
|
|
|
|
2019-11-07 13:29:43 +00:00
|
|
|
dealIdx := -1
|
|
|
|
for i, storageDeal := range params.Deals {
|
|
|
|
// TODO: make it less hacky
|
|
|
|
eq, err := cborrpc.Equals(&deal.Proposal, &storageDeal.Proposal)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if eq {
|
|
|
|
dealIdx = i
|
|
|
|
}
|
|
|
|
}
|
2019-09-10 12:35:43 +00:00
|
|
|
|
2019-11-07 13:29:43 +00:00
|
|
|
if dealIdx == -1 {
|
|
|
|
return nil, xerrors.Errorf("deal publish didn't contain our deal (message cid: %s)", deal.PublishMessage)
|
|
|
|
}
|
2019-09-10 12:35:43 +00:00
|
|
|
|
2019-11-07 13:29:43 +00:00
|
|
|
// TODO: timeout
|
|
|
|
_, ret, err := c.sm.WaitForMessage(ctx, *deal.PublishMessage)
|
2019-09-10 12:35:43 +00:00
|
|
|
if err != nil {
|
2019-11-07 13:29:43 +00:00
|
|
|
return nil, xerrors.Errorf("waiting for deal publish message: %w", err)
|
2019-09-10 12:35:43 +00:00
|
|
|
}
|
2019-11-07 13:29:43 +00:00
|
|
|
if ret.ExitCode != 0 {
|
|
|
|
return nil, xerrors.Errorf("deal publish failed: exit=%d", ret.ExitCode)
|
2019-09-10 12:35:43 +00:00
|
|
|
}
|
|
|
|
|
2019-11-07 13:29:43 +00:00
|
|
|
var res actors.PublishStorageDealResponse
|
|
|
|
if err := res.UnmarshalCBOR(bytes.NewReader(ret.Return)); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2019-09-10 12:35:43 +00:00
|
|
|
|
2019-11-07 13:29:43 +00:00
|
|
|
return func(info *ClientDeal) {
|
|
|
|
info.DealID = res.DealIDs[dealIdx]
|
|
|
|
}, nil
|
2019-09-10 12:35:43 +00:00
|
|
|
}
|
|
|
|
|
2019-11-07 13:29:43 +00:00
|
|
|
func (c *Client) staged(ctx context.Context, deal ClientDeal) (func(*ClientDeal), error) {
|
|
|
|
// TODO: Maybe wait for pre-commit
|
2019-09-10 12:35:43 +00:00
|
|
|
|
2019-11-07 13:29:43 +00:00
|
|
|
return nil, nil
|
2019-09-10 12:35:43 +00:00
|
|
|
}
|
|
|
|
|
2019-11-07 13:29:43 +00:00
|
|
|
func (c *Client) sealing(ctx context.Context, deal ClientDeal) (func(*ClientDeal), error) {
|
2019-11-07 07:57:10 +00:00
|
|
|
checkFunc := func(ts *types.TipSet) (done bool, more bool, err error) {
|
2019-11-07 09:06:06 +00:00
|
|
|
sd, err := stmgr.GetStorageDeal(ctx, c.sm, deal.DealID, ts)
|
2019-11-07 07:57:10 +00:00
|
|
|
if err != nil {
|
2019-11-07 09:06:06 +00:00
|
|
|
// TODO: This may be fine for some errors
|
2019-11-07 07:57:10 +00:00
|
|
|
return false, false, xerrors.Errorf("failed to look up deal on chain: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if sd.ActivationEpoch > 0 {
|
2019-11-07 09:06:06 +00:00
|
|
|
select {
|
|
|
|
case c.updated <- clientDealUpdate{
|
|
|
|
newState: api.DealComplete,
|
|
|
|
id: deal.ProposalCid,
|
|
|
|
}:
|
|
|
|
case <-c.stop:
|
|
|
|
}
|
|
|
|
|
2019-11-07 07:57:10 +00:00
|
|
|
return true, false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return false, true, nil
|
|
|
|
}
|
|
|
|
|
2019-11-07 13:41:41 +00:00
|
|
|
called := func(msg *types.Message, ts *types.TipSet, curH uint64) (more bool, err error) {
|
|
|
|
defer func() {
|
|
|
|
if err != nil {
|
|
|
|
select {
|
|
|
|
case c.updated <- clientDealUpdate{
|
|
|
|
newState: api.DealComplete,
|
|
|
|
id: deal.ProposalCid,
|
|
|
|
err: xerrors.Errorf("handling applied event: %w", err),
|
|
|
|
}:
|
|
|
|
case <-c.stop:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
2019-11-07 07:57:10 +00:00
|
|
|
|
|
|
|
if msg == nil {
|
|
|
|
log.Error("timed out waiting for deal activation... what now?")
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
2019-11-07 13:41:41 +00:00
|
|
|
var params actors.SectorProveCommitInfo
|
|
|
|
if err := params.UnmarshalCBOR(bytes.NewReader(msg.Params)); err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var found bool
|
|
|
|
for _, dealID := range params.DealIDs {
|
|
|
|
if dealID == deal.DealID {
|
|
|
|
found = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !found {
|
|
|
|
return true, nil
|
|
|
|
}
|
2019-11-07 07:57:10 +00:00
|
|
|
|
2019-11-07 09:06:06 +00:00
|
|
|
sd, err := stmgr.GetStorageDeal(ctx, c.sm, deal.DealID, ts)
|
2019-11-07 07:57:10 +00:00
|
|
|
if err != nil {
|
2019-11-07 09:06:06 +00:00
|
|
|
return false, xerrors.Errorf("failed to look up deal on chain: %w", err)
|
2019-11-07 07:57:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if sd.ActivationEpoch == 0 {
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
2019-11-07 13:41:41 +00:00
|
|
|
log.Infof("Storage deal %d activated at epoch %d", deal.DealID, sd.ActivationEpoch)
|
2019-11-07 09:06:06 +00:00
|
|
|
|
|
|
|
select {
|
|
|
|
case c.updated <- clientDealUpdate{
|
|
|
|
newState: api.DealComplete,
|
|
|
|
id: deal.ProposalCid,
|
|
|
|
}:
|
|
|
|
case <-c.stop:
|
|
|
|
}
|
2019-11-07 07:57:10 +00:00
|
|
|
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
2019-11-07 09:06:06 +00:00
|
|
|
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
|
2019-09-10 12:35:43 +00:00
|
|
|
}
|
|
|
|
|
2019-11-07 09:06:06 +00:00
|
|
|
if err := c.events.Called(checkFunc, called, revert, 3, build.SealRandomnessLookbackLimit, deal.Proposal.Provider, actors.MAMethods.ProveCommitSector); err != nil {
|
2019-11-07 13:29:43 +00:00
|
|
|
return nil, xerrors.Errorf("failed to set up called handler")
|
2019-09-10 12:35:43 +00:00
|
|
|
}
|
|
|
|
|
2019-11-07 13:29:43 +00:00
|
|
|
return nil, nil
|
2019-09-10 12:35:43 +00:00
|
|
|
}
|