184 lines
5.1 KiB
Go
184 lines
5.1 KiB
Go
package storage
|
|
|
|
import (
|
|
"context"
|
|
"github.com/filecoin-project/lotus/build"
|
|
"github.com/filecoin-project/lotus/chain/actors"
|
|
"github.com/filecoin-project/lotus/chain/types"
|
|
"github.com/pkg/errors"
|
|
"golang.org/x/xerrors"
|
|
|
|
"github.com/filecoin-project/lotus/api"
|
|
)
|
|
|
|
type providerHandlerFunc func(ctx context.Context, deal SectorInfo) (func(*SectorInfo), error)
|
|
|
|
func (m *Miner) handle(ctx context.Context, sector SectorInfo, cb providerHandlerFunc, next api.SectorState) {
|
|
go func() {
|
|
mut, err := cb(ctx, sector)
|
|
|
|
if err == nil && next == api.SectorNoUpdate {
|
|
return
|
|
}
|
|
|
|
select {
|
|
case m.sectorUpdated <- sectorUpdate{
|
|
newState: next,
|
|
id: sector.SectorID,
|
|
err: err,
|
|
mut: mut,
|
|
}:
|
|
case <-m.stop:
|
|
}
|
|
}()
|
|
}
|
|
|
|
func (m *Miner) sealPreCommit(ctx context.Context, sector SectorInfo) (func(*SectorInfo), error) {
|
|
log.Infow("performing sector replication...", "sector", sector.SectorID)
|
|
sinfo, err := m.secst.SealPreCommit(ctx, sector.SectorID)
|
|
if err != nil {
|
|
return nil, xerrors.Errorf("seal pre commit failed: %w", err)
|
|
}
|
|
|
|
return func(info *SectorInfo) {
|
|
info.CommD = sinfo.CommD[:]
|
|
info.CommR = sinfo.CommR[:]
|
|
info.Ticket = SealTicket{
|
|
BlockHeight: sinfo.Ticket.BlockHeight,
|
|
TicketBytes: sinfo.Ticket.TicketBytes[:],
|
|
}
|
|
}, nil
|
|
}
|
|
|
|
func (m *Miner) preCommit(ctx context.Context, sector SectorInfo) (func(*SectorInfo), error) {
|
|
params := &actors.SectorPreCommitInfo{
|
|
CommD: sector.CommD,
|
|
CommR: sector.CommR,
|
|
Epoch: sector.Ticket.BlockHeight,
|
|
|
|
SectorNumber: sector.SectorID,
|
|
}
|
|
enc, aerr := actors.SerializeParams(params)
|
|
if aerr != nil {
|
|
return nil, xerrors.Errorf("could not serialize commit sector parameters: %w", aerr)
|
|
}
|
|
|
|
msg := &types.Message{
|
|
To: m.maddr,
|
|
From: m.worker,
|
|
Method: actors.MAMethods.PreCommitSector,
|
|
Params: enc,
|
|
Value: types.NewInt(0), // TODO: need to ensure sufficient collateral
|
|
GasLimit: types.NewInt(1000000 /* i dont know help */),
|
|
GasPrice: types.NewInt(1),
|
|
}
|
|
|
|
log.Info("submitting precommit for sector: ", sector.SectorID)
|
|
smsg, err := m.api.MpoolPushMessage(ctx, msg)
|
|
if err != nil {
|
|
return nil, xerrors.Errorf("pushing message to mpool: %w", err)
|
|
}
|
|
|
|
return func(info *SectorInfo) {
|
|
mcid := smsg.Cid()
|
|
info.PreCommitMessage = &mcid
|
|
}, nil
|
|
}
|
|
|
|
func (m *Miner) preCommitted(ctx context.Context, sector SectorInfo) (func(*SectorInfo), error) {
|
|
// would be ideal to just use the events.Called handler, but it wouldnt be able to handle individual message timeouts
|
|
mw, err := m.api.StateWaitMsg(ctx, *sector.PreCommitMessage)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if mw.Receipt.ExitCode != 0 {
|
|
log.Error("sector precommit failed: ", mw.Receipt.ExitCode)
|
|
return nil, err
|
|
}
|
|
|
|
randHeight := mw.TipSet.Height() + build.InteractivePoRepDelay
|
|
log.Infof("precommit for sector %d made it on chain, will start post computation at height %d", sector.SectorID, randHeight)
|
|
|
|
err = m.events.ChainAt(func(ts *types.TipSet, curH uint64) error {
|
|
m.sectorUpdated <- sectorUpdate{
|
|
newState: api.Committing,
|
|
id: sector.SectorID,
|
|
mut: func(info *SectorInfo) {
|
|
info.RandHeight = randHeight
|
|
info.RandTs = ts
|
|
},
|
|
}
|
|
|
|
return nil
|
|
}, func(ts *types.TipSet) error {
|
|
log.Warn("revert in interactive commit sector step")
|
|
return nil
|
|
}, 3, mw.TipSet.Height()+build.InteractivePoRepDelay)
|
|
if err != nil {
|
|
log.Warn("waitForPreCommitMessage ChainAt errored: ", err)
|
|
}
|
|
|
|
return nil, nil
|
|
}
|
|
|
|
func (m *Miner) committing(ctx context.Context, sector SectorInfo) (func(*SectorInfo), error) {
|
|
log.Info("scheduling seal proof computation...")
|
|
|
|
rand, err := m.api.ChainGetRandomness(ctx, sector.RandTs, nil, int(sector.RandTs.Height()-sector.RandHeight))
|
|
if err != nil {
|
|
return nil, xerrors.Errorf("failed to get randomness for computing seal proof: %w", err)
|
|
}
|
|
|
|
proof, err := m.secst.SealComputeProof(ctx, sector.SectorID, sector.RandHeight, rand)
|
|
if err != nil {
|
|
return nil, xerrors.Errorf("computing seal proof failed: %w", err)
|
|
}
|
|
|
|
params := &actors.SectorProveCommitInfo{
|
|
Proof: proof,
|
|
SectorID: sector.SectorID,
|
|
//DealIDs: deals,
|
|
}
|
|
|
|
_ = params
|
|
enc, aerr := actors.SerializeParams(nil)
|
|
if aerr != nil {
|
|
return nil, xerrors.Errorf("could not serialize commit sector parameters: %w", aerr)
|
|
}
|
|
|
|
msg := &types.Message{
|
|
To: m.maddr,
|
|
From: m.worker,
|
|
Method: actors.MAMethods.ProveCommitSector,
|
|
Params: enc,
|
|
Value: types.NewInt(0), // TODO: need to ensure sufficient collateral
|
|
GasLimit: types.NewInt(1000000 /* i dont know help */),
|
|
GasPrice: types.NewInt(1),
|
|
}
|
|
|
|
smsg, err := m.api.MpoolPushMessage(ctx, msg)
|
|
if err != nil {
|
|
log.Error(errors.Wrap(err, "pushing message to mpool"))
|
|
}
|
|
|
|
// TODO: Separate state before this wait, so we persist message cid?
|
|
|
|
mw, err := m.api.StateWaitMsg(ctx, smsg.Cid())
|
|
if err != nil {
|
|
return nil, xerrors.Errorf("failed to wait for porep inclusion: %w", err)
|
|
}
|
|
|
|
if mw.Receipt.ExitCode != 0 {
|
|
log.Error("UNHANDLED: submitting sector proof failed")
|
|
return nil, xerrors.New("UNHANDLED: submitting sector proof failed")
|
|
}
|
|
|
|
m.beginPosting(ctx)
|
|
|
|
return func(info *SectorInfo) {
|
|
mcid := smsg.Cid()
|
|
info.CommitMessage = &mcid
|
|
}, nil
|
|
}
|