2020-09-12 03:07:52 +00:00
|
|
|
package miner
|
|
|
|
|
|
|
|
import (
|
2020-09-18 04:39:34 +00:00
|
|
|
"bytes"
|
2020-09-15 17:44:44 +00:00
|
|
|
"errors"
|
|
|
|
|
2020-09-14 11:14:06 +00:00
|
|
|
"github.com/filecoin-project/go-address"
|
2020-09-12 03:07:52 +00:00
|
|
|
"github.com/filecoin-project/go-bitfield"
|
2020-09-15 04:55:49 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
2020-09-15 13:29:25 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/dline"
|
2020-09-12 03:07:52 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/actors/adt"
|
2020-09-18 21:59:27 +00:00
|
|
|
adt0 "github.com/filecoin-project/specs-actors/actors/util/adt"
|
2020-09-12 03:07:52 +00:00
|
|
|
"github.com/libp2p/go-libp2p-core/peer"
|
2020-09-15 11:04:45 +00:00
|
|
|
cbg "github.com/whyrusleeping/cbor-gen"
|
|
|
|
"golang.org/x/xerrors"
|
2020-09-12 03:07:52 +00:00
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
miner0 "github.com/filecoin-project/specs-actors/actors/builtin/miner"
|
2020-09-12 03:07:52 +00:00
|
|
|
)
|
|
|
|
|
2020-09-21 06:19:32 +00:00
|
|
|
var _ State = (*state0)(nil)
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
type state0 struct {
|
|
|
|
miner0.State
|
2020-09-12 03:07:52 +00:00
|
|
|
store adt.Store
|
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
type deadline0 struct {
|
|
|
|
miner0.Deadline
|
2020-09-12 03:07:52 +00:00
|
|
|
store adt.Store
|
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
type partition0 struct {
|
|
|
|
miner0.Partition
|
2020-09-12 03:07:52 +00:00
|
|
|
store adt.Store
|
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
func (s *state0) AvailableBalance(bal abi.TokenAmount) (abi.TokenAmount, error) {
|
2020-09-17 08:17:14 +00:00
|
|
|
return s.GetAvailableBalance(bal), nil
|
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
func (s *state0) VestedFunds(epoch abi.ChainEpoch) (abi.TokenAmount, error) {
|
2020-09-17 08:17:14 +00:00
|
|
|
return s.CheckVestedFunds(s.store, epoch)
|
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
func (s *state0) LockedFunds() (LockedFunds, error) {
|
2020-09-18 21:46:42 +00:00
|
|
|
return LockedFunds{
|
|
|
|
VestingFunds: s.State.LockedFunds,
|
|
|
|
InitialPledgeRequirement: s.State.InitialPledgeRequirement,
|
|
|
|
PreCommitDeposits: s.State.PreCommitDeposits,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
func (s *state0) InitialPledge() (abi.TokenAmount, error) {
|
2020-09-18 21:46:42 +00:00
|
|
|
return s.State.InitialPledgeRequirement, nil
|
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
func (s *state0) PreCommitDeposits() (abi.TokenAmount, error) {
|
2020-09-18 21:46:42 +00:00
|
|
|
return s.State.PreCommitDeposits, nil
|
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
func (s *state0) GetSector(num abi.SectorNumber) (*SectorOnChainInfo, error) {
|
2020-09-15 04:55:49 +00:00
|
|
|
info, ok, err := s.State.GetSector(s.store, num)
|
|
|
|
if !ok || err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-09-20 21:53:46 +00:00
|
|
|
ret := fromV0SectorOnChainInfo(*info)
|
|
|
|
return &ret, nil
|
2020-09-15 04:55:49 +00:00
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
func (s *state0) FindSector(num abi.SectorNumber) (*SectorLocation, error) {
|
2020-09-15 17:44:44 +00:00
|
|
|
dlIdx, partIdx, err := s.State.FindSector(s.store, num)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &SectorLocation{
|
|
|
|
Deadline: dlIdx,
|
|
|
|
Partition: partIdx,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetSectorExpiration returns the effective expiration of the given sector.
|
|
|
|
//
|
|
|
|
// If the sector isn't found or has already been terminated, this method returns
|
|
|
|
// nil and no error. If the sector does not expire early, the Early expiration
|
|
|
|
// field is 0.
|
2020-09-18 21:59:27 +00:00
|
|
|
func (s *state0) GetSectorExpiration(num abi.SectorNumber) (*SectorExpiration, error) {
|
2020-09-15 17:44:44 +00:00
|
|
|
dls, err := s.State.LoadDeadlines(s.store)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
// NOTE: this can be optimized significantly.
|
|
|
|
// 1. If the sector is non-faulty, it will either expire on-time (can be
|
|
|
|
// learned from the sector info), or in the next quantized expiration
|
|
|
|
// epoch (i.e., the first element in the partition's expiration queue.
|
|
|
|
// 2. If it's faulty, it will expire early within the first 14 entries
|
|
|
|
// of the expiration queue.
|
|
|
|
stopErr := errors.New("stop")
|
2020-09-18 05:12:45 +00:00
|
|
|
out := SectorExpiration{}
|
2020-09-18 21:59:27 +00:00
|
|
|
err = dls.ForEach(s.store, func(dlIdx uint64, dl *miner0.Deadline) error {
|
2020-09-15 17:44:44 +00:00
|
|
|
partitions, err := dl.PartitionsArray(s.store)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
quant := s.State.QuantSpecForDeadline(dlIdx)
|
2020-09-18 21:59:27 +00:00
|
|
|
var part miner0.Partition
|
2020-09-15 17:44:44 +00:00
|
|
|
return partitions.ForEach(&part, func(partIdx int64) error {
|
|
|
|
if found, err := part.Sectors.IsSet(uint64(num)); err != nil {
|
|
|
|
return err
|
|
|
|
} else if !found {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if found, err := part.Terminated.IsSet(uint64(num)); err != nil {
|
|
|
|
return err
|
|
|
|
} else if found {
|
|
|
|
// already terminated
|
|
|
|
return stopErr
|
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
q, err := miner0.LoadExpirationQueue(s.store, part.ExpirationsEpochs, quant)
|
2020-09-15 17:44:44 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-09-18 21:59:27 +00:00
|
|
|
var exp miner0.ExpirationSet
|
2020-09-15 17:44:44 +00:00
|
|
|
return q.ForEach(&exp, func(epoch int64) error {
|
|
|
|
if early, err := exp.EarlySectors.IsSet(uint64(num)); err != nil {
|
|
|
|
return err
|
|
|
|
} else if early {
|
|
|
|
out.Early = abi.ChainEpoch(epoch)
|
|
|
|
return nil
|
|
|
|
}
|
2020-09-15 19:13:13 +00:00
|
|
|
if onTime, err := exp.OnTimeSectors.IsSet(uint64(num)); err != nil {
|
2020-09-15 17:44:44 +00:00
|
|
|
return err
|
|
|
|
} else if onTime {
|
2020-09-15 19:13:13 +00:00
|
|
|
out.OnTime = abi.ChainEpoch(epoch)
|
2020-09-15 17:44:44 +00:00
|
|
|
return stopErr
|
|
|
|
}
|
2020-09-15 19:13:13 +00:00
|
|
|
return nil
|
2020-09-15 17:44:44 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
if err == stopErr {
|
|
|
|
err = nil
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if out.Early == 0 && out.OnTime == 0 {
|
|
|
|
return nil, nil
|
|
|
|
}
|
2020-09-18 05:12:45 +00:00
|
|
|
return &out, nil
|
2020-09-15 17:44:44 +00:00
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
func (s *state0) GetPrecommittedSector(num abi.SectorNumber) (*SectorPreCommitOnChainInfo, error) {
|
2020-09-15 04:55:49 +00:00
|
|
|
info, ok, err := s.State.GetPrecommittedSector(s.store, num)
|
|
|
|
if !ok || err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-09-20 21:53:46 +00:00
|
|
|
ret := fromV0SectorPreCommitOnChainInfo(*info)
|
|
|
|
return &ret, nil
|
2020-09-15 04:55:49 +00:00
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
func (s *state0) LoadSectorsFromSet(filter *bitfield.BitField, filterOut bool) (adt.Array, error) {
|
|
|
|
a, err := adt0.AsArray(s.store, s.State.Sectors)
|
2020-09-15 11:04:45 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2020-09-21 05:58:20 +00:00
|
|
|
ret := adt0.MakeEmptyArray(s.store)
|
|
|
|
var v cbg.Deferred
|
|
|
|
if err := a.ForEach(&v, func(i int64) error {
|
|
|
|
include := true
|
|
|
|
if filter != nil {
|
2020-09-15 11:04:45 +00:00
|
|
|
set, err := filter.IsSet(uint64(i))
|
|
|
|
if err != nil {
|
|
|
|
return xerrors.Errorf("filter check error: %w", err)
|
|
|
|
}
|
|
|
|
if set == filterOut {
|
2020-09-21 05:58:20 +00:00
|
|
|
include = false
|
2020-09-15 11:04:45 +00:00
|
|
|
}
|
|
|
|
}
|
2020-09-21 05:58:20 +00:00
|
|
|
|
|
|
|
if include {
|
|
|
|
var oci miner0.SectorOnChainInfo
|
|
|
|
if err := oci.UnmarshalCBOR(bytes.NewReader(v.Raw)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
noci := SectorOnChainInfo{
|
|
|
|
SectorNumber: oci.SectorNumber,
|
|
|
|
SealProof: oci.SealProof,
|
|
|
|
SealedCID: oci.SealedCID,
|
|
|
|
DealIDs: oci.DealIDs,
|
|
|
|
Activation: oci.Activation,
|
|
|
|
Expiration: oci.Expiration,
|
|
|
|
DealWeight: oci.DealWeight,
|
|
|
|
VerifiedDealWeight: oci.VerifiedDealWeight,
|
|
|
|
InitialPledge: oci.InitialPledge,
|
|
|
|
ExpectedDayReward: oci.ExpectedDayReward,
|
|
|
|
ExpectedStoragePledge: oci.ExpectedStoragePledge,
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := ret.Set(uint64(i), &noci); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}); err != nil {
|
|
|
|
return nil, err
|
2020-09-15 11:04:45 +00:00
|
|
|
}
|
|
|
|
|
2020-09-21 05:58:20 +00:00
|
|
|
return ret, nil
|
2020-09-17 02:34:13 +00:00
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
func (s *state0) LoadPreCommittedSectors() (adt.Map, error) {
|
|
|
|
return adt0.AsMap(s.store, s.State.PreCommittedSectors)
|
2020-09-17 02:34:13 +00:00
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
func (s *state0) IsAllocated(num abi.SectorNumber) (bool, error) {
|
2020-09-17 02:34:13 +00:00
|
|
|
var allocatedSectors bitfield.BitField
|
|
|
|
if err := s.store.Get(s.store.Context(), s.State.AllocatedSectors, &allocatedSectors); err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return allocatedSectors.IsSet(uint64(num))
|
2020-09-15 11:04:45 +00:00
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
func (s *state0) LoadDeadline(idx uint64) (Deadline, error) {
|
2020-09-12 03:07:52 +00:00
|
|
|
dls, err := s.State.LoadDeadlines(s.store)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
dl, err := dls.LoadDeadline(s.store, idx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-09-18 21:59:27 +00:00
|
|
|
return &deadline0{*dl, s.store}, nil
|
2020-09-12 03:07:52 +00:00
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
func (s *state0) ForEachDeadline(cb func(uint64, Deadline) error) error {
|
2020-09-12 03:07:52 +00:00
|
|
|
dls, err := s.State.LoadDeadlines(s.store)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-09-18 21:59:27 +00:00
|
|
|
return dls.ForEach(s.store, func(i uint64, dl *miner0.Deadline) error {
|
|
|
|
return cb(i, &deadline0{*dl, s.store})
|
2020-09-12 03:07:52 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
func (s *state0) NumDeadlines() (uint64, error) {
|
|
|
|
return miner0.WPoStPeriodDeadlines, nil
|
2020-09-12 03:07:52 +00:00
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
func (s *state0) DeadlinesChanged(other State) bool {
|
|
|
|
other0, ok := other.(*state0)
|
2020-09-18 04:39:34 +00:00
|
|
|
if !ok {
|
|
|
|
// treat an upgrade as a change, always
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
return s.State.Deadlines.Equals(other0.Deadlines)
|
2020-09-18 04:39:34 +00:00
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
func (s *state0) Info() (MinerInfo, error) {
|
2020-09-12 03:07:52 +00:00
|
|
|
info, err := s.State.GetInfo(s.store)
|
2020-09-14 11:14:06 +00:00
|
|
|
if err != nil {
|
|
|
|
return MinerInfo{}, err
|
|
|
|
}
|
2020-09-12 03:07:52 +00:00
|
|
|
|
|
|
|
var pid *peer.ID
|
|
|
|
if peerID, err := peer.IDFromBytes(info.PeerId); err == nil {
|
|
|
|
pid = &peerID
|
|
|
|
}
|
|
|
|
|
|
|
|
mi := MinerInfo{
|
|
|
|
Owner: info.Owner,
|
|
|
|
Worker: info.Worker,
|
|
|
|
ControlAddresses: info.ControlAddresses,
|
|
|
|
|
|
|
|
NewWorker: address.Undef,
|
|
|
|
WorkerChangeEpoch: -1,
|
|
|
|
|
|
|
|
PeerId: pid,
|
|
|
|
Multiaddrs: info.Multiaddrs,
|
|
|
|
SealProofType: info.SealProofType,
|
|
|
|
SectorSize: info.SectorSize,
|
|
|
|
WindowPoStPartitionSectors: info.WindowPoStPartitionSectors,
|
|
|
|
}
|
|
|
|
|
|
|
|
if info.PendingWorkerKey != nil {
|
|
|
|
mi.NewWorker = info.PendingWorkerKey.NewWorker
|
|
|
|
mi.WorkerChangeEpoch = info.PendingWorkerKey.EffectiveAt
|
|
|
|
}
|
|
|
|
|
2020-09-14 11:14:06 +00:00
|
|
|
return mi, nil
|
2020-09-12 03:07:52 +00:00
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
func (s *state0) DeadlineInfo(epoch abi.ChainEpoch) *dline.Info {
|
2020-09-15 13:29:25 +00:00
|
|
|
return s.State.DeadlineInfo(epoch)
|
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
func (s *state0) sectors() (adt.Array, error) {
|
|
|
|
return adt0.AsArray(s.store, s.Sectors)
|
2020-09-18 04:39:34 +00:00
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
func (s *state0) decodeSectorOnChainInfo(val *cbg.Deferred) (SectorOnChainInfo, error) {
|
|
|
|
var si miner0.SectorOnChainInfo
|
2020-09-18 04:39:34 +00:00
|
|
|
err := si.UnmarshalCBOR(bytes.NewReader(val.Raw))
|
2020-09-20 21:53:46 +00:00
|
|
|
if err != nil {
|
|
|
|
return SectorOnChainInfo{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return fromV0SectorOnChainInfo(si), nil
|
2020-09-18 04:39:34 +00:00
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
func (s *state0) precommits() (adt.Map, error) {
|
|
|
|
return adt0.AsMap(s.store, s.PreCommittedSectors)
|
2020-09-18 04:39:34 +00:00
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
func (s *state0) decodeSectorPreCommitOnChainInfo(val *cbg.Deferred) (SectorPreCommitOnChainInfo, error) {
|
|
|
|
var sp miner0.SectorPreCommitOnChainInfo
|
2020-09-18 04:39:34 +00:00
|
|
|
err := sp.UnmarshalCBOR(bytes.NewReader(val.Raw))
|
2020-09-20 21:53:46 +00:00
|
|
|
if err != nil {
|
|
|
|
return SectorPreCommitOnChainInfo{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return fromV0SectorPreCommitOnChainInfo(sp), nil
|
2020-09-18 04:39:34 +00:00
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
func (d *deadline0) LoadPartition(idx uint64) (Partition, error) {
|
2020-09-12 03:07:52 +00:00
|
|
|
p, err := d.Deadline.LoadPartition(d.store, idx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-09-18 21:59:27 +00:00
|
|
|
return &partition0{*p, d.store}, nil
|
2020-09-12 03:07:52 +00:00
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
func (d *deadline0) ForEachPartition(cb func(uint64, Partition) error) error {
|
2020-09-12 03:07:52 +00:00
|
|
|
ps, err := d.Deadline.PartitionsArray(d.store)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-09-18 21:59:27 +00:00
|
|
|
var part miner0.Partition
|
2020-09-12 03:07:52 +00:00
|
|
|
return ps.ForEach(&part, func(i int64) error {
|
2020-09-18 21:59:27 +00:00
|
|
|
return cb(uint64(i), &partition0{part, d.store})
|
2020-09-12 03:07:52 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
func (d *deadline0) PartitionsChanged(other Deadline) bool {
|
|
|
|
other0, ok := other.(*deadline0)
|
2020-09-18 04:39:34 +00:00
|
|
|
if !ok {
|
|
|
|
// treat an upgrade as a change, always
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
return d.Deadline.Partitions.Equals(other0.Deadline.Partitions)
|
2020-09-18 04:39:34 +00:00
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
func (d *deadline0) PostSubmissions() (bitfield.BitField, error) {
|
2020-09-17 15:30:15 +00:00
|
|
|
return d.Deadline.PostSubmissions, nil
|
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
func (p *partition0) AllSectors() (bitfield.BitField, error) {
|
2020-09-12 03:07:52 +00:00
|
|
|
return p.Partition.Sectors, nil
|
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
func (p *partition0) FaultySectors() (bitfield.BitField, error) {
|
2020-09-12 03:07:52 +00:00
|
|
|
return p.Partition.Faults, nil
|
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
func (p *partition0) RecoveringSectors() (bitfield.BitField, error) {
|
2020-09-12 03:07:52 +00:00
|
|
|
return p.Partition.Recoveries, nil
|
|
|
|
}
|
2020-09-20 21:53:46 +00:00
|
|
|
|
|
|
|
func fromV0SectorOnChainInfo(v0 miner0.SectorOnChainInfo) SectorOnChainInfo {
|
|
|
|
return (SectorOnChainInfo)(v0)
|
|
|
|
}
|
|
|
|
|
|
|
|
func fromV0SectorPreCommitOnChainInfo(v0 miner0.SectorPreCommitOnChainInfo) SectorPreCommitOnChainInfo {
|
|
|
|
return (SectorPreCommitOnChainInfo)(v0)
|
|
|
|
}
|