lotus/storage/pipeline/upgrade_queue.go

61 lines
1.7 KiB
Go
Raw Normal View History

2020-07-01 13:30:25 +00:00
package sealing
import (
2020-07-15 14:51:02 +00:00
"context"
2020-09-17 02:34:13 +00:00
2020-07-01 13:30:25 +00:00
"golang.org/x/xerrors"
2020-09-07 03:49:10 +00:00
"github.com/filecoin-project/go-state-types/abi"
2022-03-16 19:28:15 +00:00
market7 "github.com/filecoin-project/specs-actors/v7/actors/builtin/market"
"github.com/filecoin-project/lotus/chain/types"
2020-07-01 13:30:25 +00:00
)
func (m *Sealing) MarkForSnapUpgrade(ctx context.Context, id abi.SectorNumber) error {
2020-07-01 13:30:25 +00:00
si, err := m.GetSectorInfo(id)
if err != nil {
return xerrors.Errorf("getting sector info: %w", err)
}
if si.State != Proving {
return xerrors.Errorf("unable to snap-up sectors not in the 'Proving' state")
2020-07-01 13:30:25 +00:00
}
2022-03-16 18:53:00 +00:00
if si.hasDeals() {
2020-07-01 13:30:25 +00:00
return xerrors.Errorf("not a committed-capacity sector, has deals")
}
tok, head, err := m.Api.ChainHead(ctx)
if err != nil {
return xerrors.Errorf("couldnt get chain head: %w", err)
}
onChainInfo, err := m.Api.StateSectorGetInfo(ctx, m.maddr, id, tok)
if err != nil {
return xerrors.Errorf("failed to read sector on chain info: %w", err)
}
2020-07-01 13:30:25 +00:00
active, err := m.sectorActive(ctx, tok, id)
if err != nil {
return xerrors.Errorf("failed to check if sector is active")
}
if !active {
return xerrors.Errorf("cannot mark inactive sector for upgrade")
}
2020-07-01 13:30:25 +00:00
if onChainInfo.Expiration-head < market7.DealMinDuration {
return xerrors.Errorf("pointless to upgrade sector %d, expiration %d is less than a min deal duration away from current epoch."+
"Upgrade expiration before marking for upgrade", id, onChainInfo.Expiration)
}
2022-03-16 16:33:05 +00:00
return m.sectors.Send(uint64(id), SectorMarkForUpdate{})
2020-07-01 13:30:25 +00:00
}
func (m *Sealing) sectorActive(ctx context.Context, tok types.TipSetKey, sector abi.SectorNumber) (bool, error) {
active, err := m.Api.StateMinerActiveSectors(ctx, m.maddr, tok)
if err != nil {
return false, xerrors.Errorf("failed to check active sectors: %w", err)
}
2022-02-01 06:09:42 +00:00
2022-03-16 18:53:00 +00:00
return active.IsSet(uint64(sector))
}