2020-09-12 03:07:52 +00:00
|
|
|
package miner
|
|
|
|
|
|
|
|
import (
|
2020-10-11 22:17:28 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/big"
|
2021-01-20 02:06:00 +00:00
|
|
|
"github.com/filecoin-project/go-state-types/network"
|
2020-09-20 21:53:46 +00:00
|
|
|
"github.com/ipfs/go-cid"
|
2020-09-14 11:14:06 +00:00
|
|
|
"github.com/libp2p/go-libp2p-core/peer"
|
2020-09-18 04:39:34 +00:00
|
|
|
cbg "github.com/whyrusleeping/cbor-gen"
|
2020-09-12 03:07:52 +00:00
|
|
|
"golang.org/x/xerrors"
|
|
|
|
|
2020-09-14 11:14:06 +00:00
|
|
|
"github.com/filecoin-project/go-address"
|
|
|
|
"github.com/filecoin-project/go-bitfield"
|
|
|
|
"github.com/filecoin-project/go-state-types/abi"
|
|
|
|
"github.com/filecoin-project/go-state-types/cbor"
|
2020-09-21 16:28:32 +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-24 00:40:29 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/actors/builtin"
|
2020-09-12 03:07:52 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
2020-09-23 23:50:34 +00:00
|
|
|
|
|
|
|
miner0 "github.com/filecoin-project/specs-actors/actors/builtin/miner"
|
2021-01-14 14:46:57 +00:00
|
|
|
miner2 "github.com/filecoin-project/specs-actors/v2/actors/builtin/miner"
|
2021-01-22 03:48:34 +00:00
|
|
|
miner3 "github.com/filecoin-project/specs-actors/v3/actors/builtin/miner"
|
2021-04-27 18:48:32 +00:00
|
|
|
|
|
|
|
builtin0 "github.com/filecoin-project/specs-actors/actors/builtin"
|
|
|
|
builtin2 "github.com/filecoin-project/specs-actors/v2/actors/builtin"
|
|
|
|
builtin3 "github.com/filecoin-project/specs-actors/v3/actors/builtin"
|
2021-04-23 12:29:46 +00:00
|
|
|
builtin4 "github.com/filecoin-project/specs-actors/v4/actors/builtin"
|
2020-09-12 03:07:52 +00:00
|
|
|
)
|
|
|
|
|
2020-09-24 00:40:29 +00:00
|
|
|
func init() {
|
|
|
|
builtin.RegisterActorState(builtin0.StorageMinerActorCodeID, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
|
|
|
return load0(store, root)
|
|
|
|
})
|
2020-09-28 20:13:18 +00:00
|
|
|
builtin.RegisterActorState(builtin2.StorageMinerActorCodeID, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
|
|
|
return load2(store, root)
|
2020-09-24 00:40:29 +00:00
|
|
|
})
|
2021-01-16 06:44:36 +00:00
|
|
|
builtin.RegisterActorState(builtin3.StorageMinerActorCodeID, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
|
|
|
return load3(store, root)
|
|
|
|
})
|
2021-04-23 12:29:46 +00:00
|
|
|
builtin.RegisterActorState(builtin4.StorageMinerActorCodeID, func(store adt.Store, root cid.Cid) (cbor.Marshaler, error) {
|
|
|
|
return load4(store, root)
|
|
|
|
})
|
2020-09-24 00:40:29 +00:00
|
|
|
}
|
|
|
|
|
2021-04-23 12:29:46 +00:00
|
|
|
var Methods = builtin4.MethodsMiner
|
2020-10-08 20:32:54 +00:00
|
|
|
|
2021-04-23 12:29:46 +00:00
|
|
|
// Unchanged between v0, v2, v3, and v4 actors
|
2020-09-22 04:35:15 +00:00
|
|
|
var WPoStProvingPeriod = miner0.WPoStProvingPeriod
|
2020-09-25 13:54:27 +00:00
|
|
|
var WPoStPeriodDeadlines = miner0.WPoStPeriodDeadlines
|
|
|
|
var WPoStChallengeWindow = miner0.WPoStChallengeWindow
|
|
|
|
var WPoStChallengeLookback = miner0.WPoStChallengeLookback
|
|
|
|
var FaultDeclarationCutoff = miner0.FaultDeclarationCutoff
|
2020-09-22 04:35:15 +00:00
|
|
|
|
|
|
|
const MinSectorExpiration = miner0.MinSectorExpiration
|
|
|
|
|
2021-01-14 14:46:57 +00:00
|
|
|
// Not used / checked in v0
|
2021-04-04 02:02:06 +00:00
|
|
|
// TODO: Abstract over network versions
|
2021-01-14 14:46:57 +00:00
|
|
|
var DeclarationsMax = miner2.DeclarationsMax
|
2021-01-14 19:27:15 +00:00
|
|
|
var AddressedSectorsMax = miner2.AddressedSectorsMax
|
2021-01-14 14:46:57 +00:00
|
|
|
|
2021-04-27 18:48:32 +00:00
|
|
|
func Load(store adt.Store, act *types.Actor) (State, error) {
|
2020-09-12 03:07:52 +00:00
|
|
|
switch act.Code {
|
2020-09-18 21:59:27 +00:00
|
|
|
case builtin0.StorageMinerActorCodeID:
|
2020-09-24 00:40:29 +00:00
|
|
|
return load0(store, act.Head)
|
2020-09-28 20:13:18 +00:00
|
|
|
case builtin2.StorageMinerActorCodeID:
|
|
|
|
return load2(store, act.Head)
|
2021-01-18 23:04:32 +00:00
|
|
|
case builtin3.StorageMinerActorCodeID:
|
|
|
|
return load3(store, act.Head)
|
2021-04-23 12:29:46 +00:00
|
|
|
case builtin4.StorageMinerActorCodeID:
|
|
|
|
return load4(store, act.Head)
|
2020-09-12 03:07:52 +00:00
|
|
|
}
|
|
|
|
return nil, xerrors.Errorf("unknown actor code %s", act.Code)
|
|
|
|
}
|
|
|
|
|
|
|
|
type State interface {
|
|
|
|
cbor.Marshaler
|
|
|
|
|
2020-09-18 21:46:42 +00:00
|
|
|
// Total available balance to spend.
|
2020-09-17 08:17:14 +00:00
|
|
|
AvailableBalance(abi.TokenAmount) (abi.TokenAmount, error)
|
2020-09-18 21:46:42 +00:00
|
|
|
// Funds that will vest by the given epoch.
|
2020-09-17 08:17:14 +00:00
|
|
|
VestedFunds(abi.ChainEpoch) (abi.TokenAmount, error)
|
2020-09-18 21:46:42 +00:00
|
|
|
// Funds locked for various reasons.
|
|
|
|
LockedFunds() (LockedFunds, error)
|
2020-10-06 08:33:55 +00:00
|
|
|
FeeDebt() (abi.TokenAmount, error)
|
2020-09-17 08:17:14 +00:00
|
|
|
|
2020-09-15 04:55:49 +00:00
|
|
|
GetSector(abi.SectorNumber) (*SectorOnChainInfo, error)
|
2020-09-15 17:44:44 +00:00
|
|
|
FindSector(abi.SectorNumber) (*SectorLocation, error)
|
|
|
|
GetSectorExpiration(abi.SectorNumber) (*SectorExpiration, error)
|
2020-09-15 04:55:49 +00:00
|
|
|
GetPrecommittedSector(abi.SectorNumber) (*SectorPreCommitOnChainInfo, error)
|
2020-09-21 19:05:01 +00:00
|
|
|
LoadSectors(sectorNos *bitfield.BitField) ([]*SectorOnChainInfo, error)
|
2020-09-21 20:43:47 +00:00
|
|
|
NumLiveSectors() (uint64, error)
|
2020-09-17 02:34:13 +00:00
|
|
|
IsAllocated(abi.SectorNumber) (bool, error)
|
2020-09-15 04:55:49 +00:00
|
|
|
|
2020-09-12 03:07:52 +00:00
|
|
|
LoadDeadline(idx uint64) (Deadline, error)
|
|
|
|
ForEachDeadline(cb func(idx uint64, dl Deadline) error) error
|
|
|
|
NumDeadlines() (uint64, error)
|
2020-09-23 05:19:43 +00:00
|
|
|
DeadlinesChanged(State) (bool, error)
|
2020-09-18 04:39:34 +00:00
|
|
|
|
2020-09-14 22:45:00 +00:00
|
|
|
Info() (MinerInfo, error)
|
2020-10-26 21:20:25 +00:00
|
|
|
MinerInfoChanged(State) (bool, error)
|
2020-09-15 13:29:25 +00:00
|
|
|
|
2020-09-23 05:19:43 +00:00
|
|
|
DeadlineInfo(epoch abi.ChainEpoch) (*dline.Info, error)
|
2021-04-23 12:29:46 +00:00
|
|
|
DeadlineCronActive() (bool, error)
|
2020-09-18 04:39:34 +00:00
|
|
|
|
|
|
|
// Diff helpers. Used by Diff* functions internally.
|
|
|
|
sectors() (adt.Array, error)
|
|
|
|
decodeSectorOnChainInfo(*cbg.Deferred) (SectorOnChainInfo, error)
|
|
|
|
precommits() (adt.Map, error)
|
|
|
|
decodeSectorPreCommitOnChainInfo(*cbg.Deferred) (SectorPreCommitOnChainInfo, error)
|
2020-09-12 03:07:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Deadline interface {
|
|
|
|
LoadPartition(idx uint64) (Partition, error)
|
|
|
|
ForEachPartition(cb func(idx uint64, part Partition) error) error
|
2021-01-16 05:53:27 +00:00
|
|
|
PartitionsPoSted() (bitfield.BitField, error)
|
2020-09-18 04:39:34 +00:00
|
|
|
|
2020-09-23 05:19:43 +00:00
|
|
|
PartitionsChanged(Deadline) (bool, error)
|
2021-01-18 08:46:22 +00:00
|
|
|
DisputableProofCount() (uint64, error)
|
2020-09-12 03:07:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Partition interface {
|
|
|
|
AllSectors() (bitfield.BitField, error)
|
|
|
|
FaultySectors() (bitfield.BitField, error)
|
|
|
|
RecoveringSectors() (bitfield.BitField, error)
|
|
|
|
LiveSectors() (bitfield.BitField, error)
|
|
|
|
ActiveSectors() (bitfield.BitField, error)
|
|
|
|
}
|
|
|
|
|
2020-09-20 21:53:46 +00:00
|
|
|
type SectorOnChainInfo struct {
|
|
|
|
SectorNumber abi.SectorNumber
|
|
|
|
SealProof abi.RegisteredSealProof
|
|
|
|
SealedCID cid.Cid
|
|
|
|
DealIDs []abi.DealID
|
|
|
|
Activation abi.ChainEpoch
|
|
|
|
Expiration abi.ChainEpoch
|
|
|
|
DealWeight abi.DealWeight
|
|
|
|
VerifiedDealWeight abi.DealWeight
|
|
|
|
InitialPledge abi.TokenAmount
|
|
|
|
ExpectedDayReward abi.TokenAmount
|
|
|
|
ExpectedStoragePledge abi.TokenAmount
|
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
type SectorPreCommitInfo = miner0.SectorPreCommitInfo
|
2020-09-20 21:53:46 +00:00
|
|
|
|
|
|
|
type SectorPreCommitOnChainInfo struct {
|
|
|
|
Info SectorPreCommitInfo
|
|
|
|
PreCommitDeposit abi.TokenAmount
|
|
|
|
PreCommitEpoch abi.ChainEpoch
|
|
|
|
DealWeight abi.DealWeight
|
|
|
|
VerifiedDealWeight abi.DealWeight
|
|
|
|
}
|
|
|
|
|
2020-09-18 21:59:27 +00:00
|
|
|
type PoStPartition = miner0.PoStPartition
|
|
|
|
type RecoveryDeclaration = miner0.RecoveryDeclaration
|
|
|
|
type FaultDeclaration = miner0.FaultDeclaration
|
2020-09-17 02:34:13 +00:00
|
|
|
|
|
|
|
// Params
|
2020-09-18 21:59:27 +00:00
|
|
|
type DeclareFaultsParams = miner0.DeclareFaultsParams
|
|
|
|
type DeclareFaultsRecoveredParams = miner0.DeclareFaultsRecoveredParams
|
|
|
|
type SubmitWindowedPoStParams = miner0.SubmitWindowedPoStParams
|
|
|
|
type ProveCommitSectorParams = miner0.ProveCommitSectorParams
|
2021-01-22 03:48:34 +00:00
|
|
|
type DisputeWindowedPoStParams = miner3.DisputeWindowedPoStParams
|
2020-09-15 04:55:49 +00:00
|
|
|
|
2021-01-20 02:06:00 +00:00
|
|
|
func PreferredSealProofTypeFromWindowPoStType(nver network.Version, proof abi.RegisteredPoStProof) (abi.RegisteredSealProof, error) {
|
|
|
|
// We added support for the new proofs in network version 7, and removed support for the old
|
|
|
|
// ones in network version 8.
|
|
|
|
if nver < network.Version7 {
|
|
|
|
switch proof {
|
|
|
|
case abi.RegisteredPoStProof_StackedDrgWindow2KiBV1:
|
|
|
|
return abi.RegisteredSealProof_StackedDrg2KiBV1, nil
|
|
|
|
case abi.RegisteredPoStProof_StackedDrgWindow8MiBV1:
|
|
|
|
return abi.RegisteredSealProof_StackedDrg8MiBV1, nil
|
|
|
|
case abi.RegisteredPoStProof_StackedDrgWindow512MiBV1:
|
|
|
|
return abi.RegisteredSealProof_StackedDrg512MiBV1, nil
|
|
|
|
case abi.RegisteredPoStProof_StackedDrgWindow32GiBV1:
|
|
|
|
return abi.RegisteredSealProof_StackedDrg32GiBV1, nil
|
|
|
|
case abi.RegisteredPoStProof_StackedDrgWindow64GiBV1:
|
|
|
|
return abi.RegisteredSealProof_StackedDrg64GiBV1, nil
|
|
|
|
default:
|
|
|
|
return -1, xerrors.Errorf("unrecognized window post type: %d", proof)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-16 06:42:56 +00:00
|
|
|
switch proof {
|
|
|
|
case abi.RegisteredPoStProof_StackedDrgWindow2KiBV1:
|
|
|
|
return abi.RegisteredSealProof_StackedDrg2KiBV1_1, nil
|
|
|
|
case abi.RegisteredPoStProof_StackedDrgWindow8MiBV1:
|
|
|
|
return abi.RegisteredSealProof_StackedDrg8MiBV1_1, nil
|
|
|
|
case abi.RegisteredPoStProof_StackedDrgWindow512MiBV1:
|
|
|
|
return abi.RegisteredSealProof_StackedDrg512MiBV1_1, nil
|
|
|
|
case abi.RegisteredPoStProof_StackedDrgWindow32GiBV1:
|
|
|
|
return abi.RegisteredSealProof_StackedDrg32GiBV1_1, nil
|
|
|
|
case abi.RegisteredPoStProof_StackedDrgWindow64GiBV1:
|
|
|
|
return abi.RegisteredSealProof_StackedDrg64GiBV1_1, nil
|
|
|
|
default:
|
|
|
|
return -1, xerrors.Errorf("unrecognized window post type: %d", proof)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-20 02:21:23 +00:00
|
|
|
func WinningPoStProofTypeFromWindowPoStProofType(nver network.Version, proof abi.RegisteredPoStProof) (abi.RegisteredPoStProof, error) {
|
|
|
|
switch proof {
|
|
|
|
case abi.RegisteredPoStProof_StackedDrgWindow2KiBV1:
|
|
|
|
return abi.RegisteredPoStProof_StackedDrgWinning2KiBV1, nil
|
|
|
|
case abi.RegisteredPoStProof_StackedDrgWindow8MiBV1:
|
|
|
|
return abi.RegisteredPoStProof_StackedDrgWinning8MiBV1, nil
|
|
|
|
case abi.RegisteredPoStProof_StackedDrgWindow512MiBV1:
|
|
|
|
return abi.RegisteredPoStProof_StackedDrgWinning512MiBV1, nil
|
|
|
|
case abi.RegisteredPoStProof_StackedDrgWindow32GiBV1:
|
|
|
|
return abi.RegisteredPoStProof_StackedDrgWinning32GiBV1, nil
|
|
|
|
case abi.RegisteredPoStProof_StackedDrgWindow64GiBV1:
|
|
|
|
return abi.RegisteredPoStProof_StackedDrgWinning64GiBV1, nil
|
|
|
|
default:
|
|
|
|
return -1, xerrors.Errorf("unknown proof type %d", proof)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-12 03:07:52 +00:00
|
|
|
type MinerInfo struct {
|
|
|
|
Owner address.Address // Must be an ID-address.
|
|
|
|
Worker address.Address // Must be an ID-address.
|
|
|
|
NewWorker address.Address // Must be an ID-address.
|
|
|
|
ControlAddresses []address.Address // Must be an ID-addresses.
|
|
|
|
WorkerChangeEpoch abi.ChainEpoch
|
|
|
|
PeerId *peer.ID
|
|
|
|
Multiaddrs []abi.Multiaddrs
|
2021-01-16 06:42:56 +00:00
|
|
|
WindowPoStProofType abi.RegisteredPoStProof
|
2020-09-12 03:07:52 +00:00
|
|
|
SectorSize abi.SectorSize
|
|
|
|
WindowPoStPartitionSectors uint64
|
2020-10-06 08:33:55 +00:00
|
|
|
ConsensusFaultElapsed abi.ChainEpoch
|
2020-09-12 03:07:52 +00:00
|
|
|
}
|
2020-09-15 11:04:45 +00:00
|
|
|
|
2020-10-11 23:49:57 +00:00
|
|
|
func (mi MinerInfo) IsController(addr address.Address) bool {
|
|
|
|
if addr == mi.Owner || addr == mi.Worker {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, ca := range mi.ControlAddresses {
|
|
|
|
if addr == ca {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2020-09-15 17:44:44 +00:00
|
|
|
type SectorExpiration struct {
|
|
|
|
OnTime abi.ChainEpoch
|
|
|
|
|
|
|
|
// non-zero if sector is faulty, epoch at which it will be permanently
|
|
|
|
// removed if it doesn't recover
|
|
|
|
Early abi.ChainEpoch
|
|
|
|
}
|
|
|
|
|
|
|
|
type SectorLocation struct {
|
|
|
|
Deadline uint64
|
|
|
|
Partition uint64
|
|
|
|
}
|
2020-09-18 04:39:34 +00:00
|
|
|
|
|
|
|
type SectorChanges struct {
|
|
|
|
Added []SectorOnChainInfo
|
|
|
|
Extended []SectorExtensions
|
|
|
|
Removed []SectorOnChainInfo
|
|
|
|
}
|
|
|
|
|
|
|
|
type SectorExtensions struct {
|
|
|
|
From SectorOnChainInfo
|
|
|
|
To SectorOnChainInfo
|
|
|
|
}
|
|
|
|
|
|
|
|
type PreCommitChanges struct {
|
|
|
|
Added []SectorPreCommitOnChainInfo
|
|
|
|
Removed []SectorPreCommitOnChainInfo
|
|
|
|
}
|
2020-09-18 21:46:42 +00:00
|
|
|
|
|
|
|
type LockedFunds struct {
|
|
|
|
VestingFunds abi.TokenAmount
|
|
|
|
InitialPledgeRequirement abi.TokenAmount
|
|
|
|
PreCommitDeposits abi.TokenAmount
|
|
|
|
}
|
2020-10-11 22:17:28 +00:00
|
|
|
|
|
|
|
func (lf LockedFunds) TotalLockedFunds() abi.TokenAmount {
|
|
|
|
return big.Add(lf.VestingFunds, big.Add(lf.InitialPledgeRequirement, lf.PreCommitDeposits))
|
|
|
|
}
|