8b5da86727
Introduce nv21 skeleton for local testing: - Use local go-state-types with actor_version_checklist changes: https://github.com/filecoin-project/go-state-types/blob/master/actors_version_checklist.md - Imports mock v12-actors bundle - Define upgrade heights - Generate adapters - Add upgrade schedule and migration - Add actorstype to the NewActorRegistry in /chain/consensus/computestate.go - Add upgrade field to api/types.go/ForkUpgradeParams - Add upgrade to node/impl/full/state.go - Add network version to chain/state/statetree.go - make jen - make docsgen-cli
592 lines
15 KiB
Go
Generated
592 lines
15 KiB
Go
Generated
package miner
|
|
|
|
import (
|
|
"bytes"
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/ipfs/go-cid"
|
|
cbg "github.com/whyrusleeping/cbor-gen"
|
|
"golang.org/x/xerrors"
|
|
|
|
"github.com/filecoin-project/go-bitfield"
|
|
rle "github.com/filecoin-project/go-bitfield/rle"
|
|
"github.com/filecoin-project/go-state-types/abi"
|
|
actorstypes "github.com/filecoin-project/go-state-types/actors"
|
|
builtin12 "github.com/filecoin-project/go-state-types/builtin"
|
|
miner12 "github.com/filecoin-project/go-state-types/builtin/v12/miner"
|
|
adt12 "github.com/filecoin-project/go-state-types/builtin/v12/util/adt"
|
|
"github.com/filecoin-project/go-state-types/dline"
|
|
"github.com/filecoin-project/go-state-types/manifest"
|
|
|
|
"github.com/filecoin-project/lotus/chain/actors"
|
|
"github.com/filecoin-project/lotus/chain/actors/adt"
|
|
)
|
|
|
|
var _ State = (*state12)(nil)
|
|
|
|
func load12(store adt.Store, root cid.Cid) (State, error) {
|
|
out := state12{store: store}
|
|
err := store.Get(store.Context(), root, &out)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &out, nil
|
|
}
|
|
|
|
func make12(store adt.Store) (State, error) {
|
|
out := state12{store: store}
|
|
out.State = miner12.State{}
|
|
return &out, nil
|
|
}
|
|
|
|
type state12 struct {
|
|
miner12.State
|
|
store adt.Store
|
|
}
|
|
|
|
type deadline12 struct {
|
|
miner12.Deadline
|
|
store adt.Store
|
|
}
|
|
|
|
type partition12 struct {
|
|
miner12.Partition
|
|
store adt.Store
|
|
}
|
|
|
|
func (s *state12) AvailableBalance(bal abi.TokenAmount) (available abi.TokenAmount, err error) {
|
|
defer func() {
|
|
if r := recover(); r != nil {
|
|
err = xerrors.Errorf("failed to get available balance: %w", r)
|
|
available = abi.NewTokenAmount(0)
|
|
}
|
|
}()
|
|
// this panics if the miner doesnt have enough funds to cover their locked pledge
|
|
available, err = s.GetAvailableBalance(bal)
|
|
return available, err
|
|
}
|
|
|
|
func (s *state12) VestedFunds(epoch abi.ChainEpoch) (abi.TokenAmount, error) {
|
|
return s.CheckVestedFunds(s.store, epoch)
|
|
}
|
|
|
|
func (s *state12) LockedFunds() (LockedFunds, error) {
|
|
return LockedFunds{
|
|
VestingFunds: s.State.LockedFunds,
|
|
InitialPledgeRequirement: s.State.InitialPledge,
|
|
PreCommitDeposits: s.State.PreCommitDeposits,
|
|
}, nil
|
|
}
|
|
|
|
func (s *state12) FeeDebt() (abi.TokenAmount, error) {
|
|
return s.State.FeeDebt, nil
|
|
}
|
|
|
|
func (s *state12) InitialPledge() (abi.TokenAmount, error) {
|
|
return s.State.InitialPledge, nil
|
|
}
|
|
|
|
func (s *state12) PreCommitDeposits() (abi.TokenAmount, error) {
|
|
return s.State.PreCommitDeposits, nil
|
|
}
|
|
|
|
// Returns nil, nil if sector is not found
|
|
func (s *state12) GetSector(num abi.SectorNumber) (*SectorOnChainInfo, error) {
|
|
info, ok, err := s.State.GetSector(s.store, num)
|
|
if !ok || err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
ret := fromV12SectorOnChainInfo(*info)
|
|
return &ret, nil
|
|
}
|
|
|
|
func (s *state12) FindSector(num abi.SectorNumber) (*SectorLocation, error) {
|
|
dlIdx, partIdx, err := s.State.FindSector(s.store, num)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &SectorLocation{
|
|
Deadline: dlIdx,
|
|
Partition: partIdx,
|
|
}, nil
|
|
}
|
|
|
|
func (s *state12) NumLiveSectors() (uint64, error) {
|
|
dls, err := s.State.LoadDeadlines(s.store)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
var total uint64
|
|
if err := dls.ForEach(s.store, func(dlIdx uint64, dl *miner12.Deadline) error {
|
|
total += dl.LiveSectors
|
|
return nil
|
|
}); err != nil {
|
|
return 0, err
|
|
}
|
|
return total, nil
|
|
}
|
|
|
|
// GetSectorExpiration returns the effective expiration of the given sector.
|
|
//
|
|
// If the sector does not expire early, the Early expiration field is 0.
|
|
func (s *state12) GetSectorExpiration(num abi.SectorNumber) (*SectorExpiration, error) {
|
|
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 expire on-time (can be
|
|
// learned from the sector info).
|
|
// 2. If it's faulty, it will expire early within the first 42 entries
|
|
// of the expiration queue.
|
|
|
|
stopErr := errors.New("stop")
|
|
out := SectorExpiration{}
|
|
err = dls.ForEach(s.store, func(dlIdx uint64, dl *miner12.Deadline) error {
|
|
partitions, err := dl.PartitionsArray(s.store)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
quant := s.State.QuantSpecForDeadline(dlIdx)
|
|
var part miner12.Partition
|
|
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
|
|
}
|
|
|
|
q, err := miner12.LoadExpirationQueue(s.store, part.ExpirationsEpochs, quant, miner12.PartitionExpirationAmtBitwidth)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
var exp miner12.ExpirationSet
|
|
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
|
|
}
|
|
if onTime, err := exp.OnTimeSectors.IsSet(uint64(num)); err != nil {
|
|
return err
|
|
} else if onTime {
|
|
out.OnTime = abi.ChainEpoch(epoch)
|
|
return stopErr
|
|
}
|
|
return nil
|
|
})
|
|
})
|
|
})
|
|
if err == stopErr {
|
|
err = nil
|
|
}
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if out.Early == 0 && out.OnTime == 0 {
|
|
return nil, xerrors.Errorf("failed to find sector %d", num)
|
|
}
|
|
return &out, nil
|
|
}
|
|
|
|
func (s *state12) GetPrecommittedSector(num abi.SectorNumber) (*SectorPreCommitOnChainInfo, error) {
|
|
info, ok, err := s.State.GetPrecommittedSector(s.store, num)
|
|
if !ok || err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
ret := fromV12SectorPreCommitOnChainInfo(*info)
|
|
|
|
return &ret, nil
|
|
}
|
|
|
|
func (s *state12) ForEachPrecommittedSector(cb func(SectorPreCommitOnChainInfo) error) error {
|
|
precommitted, err := adt12.AsMap(s.store, s.State.PreCommittedSectors, builtin12.DefaultHamtBitwidth)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
var info miner12.SectorPreCommitOnChainInfo
|
|
if err := precommitted.ForEach(&info, func(_ string) error {
|
|
return cb(fromV12SectorPreCommitOnChainInfo(info))
|
|
}); err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (s *state12) LoadSectors(snos *bitfield.BitField) ([]*SectorOnChainInfo, error) {
|
|
sectors, err := miner12.LoadSectors(s.store, s.State.Sectors)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// If no sector numbers are specified, load all.
|
|
if snos == nil {
|
|
infos := make([]*SectorOnChainInfo, 0, sectors.Length())
|
|
var info12 miner12.SectorOnChainInfo
|
|
if err := sectors.ForEach(&info12, func(_ int64) error {
|
|
info := fromV12SectorOnChainInfo(info12)
|
|
infos = append(infos, &info)
|
|
return nil
|
|
}); err != nil {
|
|
return nil, err
|
|
}
|
|
return infos, nil
|
|
}
|
|
|
|
// Otherwise, load selected.
|
|
infos12, err := sectors.Load(*snos)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
infos := make([]*SectorOnChainInfo, len(infos12))
|
|
for i, info12 := range infos12 {
|
|
info := fromV12SectorOnChainInfo(*info12)
|
|
infos[i] = &info
|
|
}
|
|
return infos, nil
|
|
}
|
|
|
|
func (s *state12) loadAllocatedSectorNumbers() (bitfield.BitField, error) {
|
|
var allocatedSectors bitfield.BitField
|
|
err := s.store.Get(s.store.Context(), s.State.AllocatedSectors, &allocatedSectors)
|
|
return allocatedSectors, err
|
|
}
|
|
|
|
func (s *state12) IsAllocated(num abi.SectorNumber) (bool, error) {
|
|
allocatedSectors, err := s.loadAllocatedSectorNumbers()
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
return allocatedSectors.IsSet(uint64(num))
|
|
}
|
|
|
|
func (s *state12) GetProvingPeriodStart() (abi.ChainEpoch, error) {
|
|
return s.State.ProvingPeriodStart, nil
|
|
}
|
|
|
|
func (s *state12) UnallocatedSectorNumbers(count int) ([]abi.SectorNumber, error) {
|
|
allocatedSectors, err := s.loadAllocatedSectorNumbers()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
allocatedRuns, err := allocatedSectors.RunIterator()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
unallocatedRuns, err := rle.Subtract(
|
|
&rle.RunSliceIterator{Runs: []rle.Run{{Val: true, Len: abi.MaxSectorNumber}}},
|
|
allocatedRuns,
|
|
)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
iter, err := rle.BitsFromRuns(unallocatedRuns)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
sectors := make([]abi.SectorNumber, 0, count)
|
|
for iter.HasNext() && len(sectors) < count {
|
|
nextNo, err := iter.Next()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
sectors = append(sectors, abi.SectorNumber(nextNo))
|
|
}
|
|
|
|
return sectors, nil
|
|
}
|
|
|
|
func (s *state12) GetAllocatedSectors() (*bitfield.BitField, error) {
|
|
var allocatedSectors bitfield.BitField
|
|
if err := s.store.Get(s.store.Context(), s.State.AllocatedSectors, &allocatedSectors); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &allocatedSectors, nil
|
|
}
|
|
|
|
func (s *state12) LoadDeadline(idx uint64) (Deadline, error) {
|
|
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
|
|
}
|
|
return &deadline12{*dl, s.store}, nil
|
|
}
|
|
|
|
func (s *state12) ForEachDeadline(cb func(uint64, Deadline) error) error {
|
|
dls, err := s.State.LoadDeadlines(s.store)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return dls.ForEach(s.store, func(i uint64, dl *miner12.Deadline) error {
|
|
return cb(i, &deadline12{*dl, s.store})
|
|
})
|
|
}
|
|
|
|
func (s *state12) NumDeadlines() (uint64, error) {
|
|
return miner12.WPoStPeriodDeadlines, nil
|
|
}
|
|
|
|
func (s *state12) DeadlinesChanged(other State) (bool, error) {
|
|
other12, ok := other.(*state12)
|
|
if !ok {
|
|
// treat an upgrade as a change, always
|
|
return true, nil
|
|
}
|
|
|
|
return !s.State.Deadlines.Equals(other12.Deadlines), nil
|
|
}
|
|
|
|
func (s *state12) MinerInfoChanged(other State) (bool, error) {
|
|
other0, ok := other.(*state12)
|
|
if !ok {
|
|
// treat an upgrade as a change, always
|
|
return true, nil
|
|
}
|
|
return !s.State.Info.Equals(other0.State.Info), nil
|
|
}
|
|
|
|
func (s *state12) Info() (MinerInfo, error) {
|
|
info, err := s.State.GetInfo(s.store)
|
|
if err != nil {
|
|
return MinerInfo{}, err
|
|
}
|
|
|
|
mi := MinerInfo{
|
|
Owner: info.Owner,
|
|
Worker: info.Worker,
|
|
ControlAddresses: info.ControlAddresses,
|
|
|
|
PendingWorkerKey: (*WorkerKeyChange)(info.PendingWorkerKey),
|
|
|
|
PeerId: info.PeerId,
|
|
Multiaddrs: info.Multiaddrs,
|
|
WindowPoStProofType: info.WindowPoStProofType,
|
|
SectorSize: info.SectorSize,
|
|
WindowPoStPartitionSectors: info.WindowPoStPartitionSectors,
|
|
ConsensusFaultElapsed: info.ConsensusFaultElapsed,
|
|
|
|
Beneficiary: info.Beneficiary,
|
|
BeneficiaryTerm: BeneficiaryTerm(info.BeneficiaryTerm),
|
|
PendingBeneficiaryTerm: (*PendingBeneficiaryChange)(info.PendingBeneficiaryTerm),
|
|
}
|
|
|
|
return mi, nil
|
|
}
|
|
|
|
func (s *state12) DeadlineInfo(epoch abi.ChainEpoch) (*dline.Info, error) {
|
|
return s.State.RecordedDeadlineInfo(epoch), nil
|
|
}
|
|
|
|
func (s *state12) DeadlineCronActive() (bool, error) {
|
|
return s.State.DeadlineCronActive, nil
|
|
}
|
|
|
|
func (s *state12) sectors() (adt.Array, error) {
|
|
return adt12.AsArray(s.store, s.Sectors, miner12.SectorsAmtBitwidth)
|
|
}
|
|
|
|
func (s *state12) decodeSectorOnChainInfo(val *cbg.Deferred) (SectorOnChainInfo, error) {
|
|
var si miner12.SectorOnChainInfo
|
|
err := si.UnmarshalCBOR(bytes.NewReader(val.Raw))
|
|
if err != nil {
|
|
return SectorOnChainInfo{}, err
|
|
}
|
|
|
|
return fromV12SectorOnChainInfo(si), nil
|
|
}
|
|
|
|
func (s *state12) precommits() (adt.Map, error) {
|
|
return adt12.AsMap(s.store, s.PreCommittedSectors, builtin12.DefaultHamtBitwidth)
|
|
}
|
|
|
|
func (s *state12) decodeSectorPreCommitOnChainInfo(val *cbg.Deferred) (SectorPreCommitOnChainInfo, error) {
|
|
var sp miner12.SectorPreCommitOnChainInfo
|
|
err := sp.UnmarshalCBOR(bytes.NewReader(val.Raw))
|
|
if err != nil {
|
|
return SectorPreCommitOnChainInfo{}, err
|
|
}
|
|
|
|
return fromV12SectorPreCommitOnChainInfo(sp), nil
|
|
}
|
|
|
|
func (s *state12) EraseAllUnproven() error {
|
|
|
|
dls, err := s.State.LoadDeadlines(s.store)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
err = dls.ForEach(s.store, func(dindx uint64, dl *miner12.Deadline) error {
|
|
ps, err := dl.PartitionsArray(s.store)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
var part miner12.Partition
|
|
err = ps.ForEach(&part, func(pindx int64) error {
|
|
_ = part.ActivateUnproven()
|
|
err = ps.Set(uint64(pindx), &part)
|
|
return nil
|
|
})
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
dl.Partitions, err = ps.Root()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return dls.UpdateDeadline(s.store, dindx, dl)
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return s.State.SaveDeadlines(s.store, dls)
|
|
|
|
}
|
|
|
|
func (d *deadline12) LoadPartition(idx uint64) (Partition, error) {
|
|
p, err := d.Deadline.LoadPartition(d.store, idx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &partition12{*p, d.store}, nil
|
|
}
|
|
|
|
func (d *deadline12) ForEachPartition(cb func(uint64, Partition) error) error {
|
|
ps, err := d.Deadline.PartitionsArray(d.store)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
var part miner12.Partition
|
|
return ps.ForEach(&part, func(i int64) error {
|
|
return cb(uint64(i), &partition12{part, d.store})
|
|
})
|
|
}
|
|
|
|
func (d *deadline12) PartitionsChanged(other Deadline) (bool, error) {
|
|
other12, ok := other.(*deadline12)
|
|
if !ok {
|
|
// treat an upgrade as a change, always
|
|
return true, nil
|
|
}
|
|
|
|
return !d.Deadline.Partitions.Equals(other12.Deadline.Partitions), nil
|
|
}
|
|
|
|
func (d *deadline12) PartitionsPoSted() (bitfield.BitField, error) {
|
|
return d.Deadline.PartitionsPoSted, nil
|
|
}
|
|
|
|
func (d *deadline12) DisputableProofCount() (uint64, error) {
|
|
|
|
ops, err := d.OptimisticProofsSnapshotArray(d.store)
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
|
|
return ops.Length(), nil
|
|
|
|
}
|
|
|
|
func (p *partition12) AllSectors() (bitfield.BitField, error) {
|
|
return p.Partition.Sectors, nil
|
|
}
|
|
|
|
func (p *partition12) FaultySectors() (bitfield.BitField, error) {
|
|
return p.Partition.Faults, nil
|
|
}
|
|
|
|
func (p *partition12) RecoveringSectors() (bitfield.BitField, error) {
|
|
return p.Partition.Recoveries, nil
|
|
}
|
|
|
|
func (p *partition12) UnprovenSectors() (bitfield.BitField, error) {
|
|
return p.Partition.Unproven, nil
|
|
}
|
|
|
|
func fromV12SectorOnChainInfo(v12 miner12.SectorOnChainInfo) SectorOnChainInfo {
|
|
info := SectorOnChainInfo{
|
|
SectorNumber: v12.SectorNumber,
|
|
SealProof: v12.SealProof,
|
|
SealedCID: v12.SealedCID,
|
|
DealIDs: v12.DealIDs,
|
|
Activation: v12.Activation,
|
|
Expiration: v12.Expiration,
|
|
DealWeight: v12.DealWeight,
|
|
VerifiedDealWeight: v12.VerifiedDealWeight,
|
|
InitialPledge: v12.InitialPledge,
|
|
ExpectedDayReward: v12.ExpectedDayReward,
|
|
ExpectedStoragePledge: v12.ExpectedStoragePledge,
|
|
|
|
SectorKeyCID: v12.SectorKeyCID,
|
|
}
|
|
return info
|
|
}
|
|
|
|
func fromV12SectorPreCommitOnChainInfo(v12 miner12.SectorPreCommitOnChainInfo) SectorPreCommitOnChainInfo {
|
|
ret := SectorPreCommitOnChainInfo{
|
|
Info: SectorPreCommitInfo{
|
|
SealProof: v12.Info.SealProof,
|
|
SectorNumber: v12.Info.SectorNumber,
|
|
SealedCID: v12.Info.SealedCID,
|
|
SealRandEpoch: v12.Info.SealRandEpoch,
|
|
DealIDs: v12.Info.DealIDs,
|
|
Expiration: v12.Info.Expiration,
|
|
UnsealedCid: nil,
|
|
},
|
|
PreCommitDeposit: v12.PreCommitDeposit,
|
|
PreCommitEpoch: v12.PreCommitEpoch,
|
|
}
|
|
|
|
ret.Info.UnsealedCid = v12.Info.UnsealedCid
|
|
|
|
return ret
|
|
}
|
|
|
|
func (s *state12) GetState() interface{} {
|
|
return &s.State
|
|
}
|
|
|
|
func (s *state12) ActorKey() string {
|
|
return manifest.MinerKey
|
|
}
|
|
|
|
func (s *state12) ActorVersion() actorstypes.Version {
|
|
return actorstypes.Version12
|
|
}
|
|
|
|
func (s *state12) Code() cid.Cid {
|
|
code, ok := actors.GetActorCodeID(s.ActorVersion(), s.ActorKey())
|
|
if !ok {
|
|
panic(fmt.Errorf("didn't find actor %v code id for actor version %d", s.ActorKey(), s.ActorVersion()))
|
|
}
|
|
|
|
return code
|
|
}
|