2019-07-12 23:52:25 +00:00
|
|
|
package actors
|
2019-07-12 20:56:41 +00:00
|
|
|
|
|
|
|
import (
|
2019-07-23 13:01:52 +00:00
|
|
|
"github.com/filecoin-project/go-lotus/chain/actors/aerrors"
|
2019-07-12 20:56:41 +00:00
|
|
|
"github.com/filecoin-project/go-lotus/chain/address"
|
|
|
|
"github.com/filecoin-project/go-lotus/chain/types"
|
|
|
|
|
|
|
|
cbor "github.com/ipfs/go-ipld-cbor"
|
|
|
|
"github.com/libp2p/go-libp2p-core/peer"
|
|
|
|
)
|
|
|
|
|
2019-07-15 17:48:59 +00:00
|
|
|
const SectorSize = 1024
|
|
|
|
|
2019-07-12 20:56:41 +00:00
|
|
|
func init() {
|
|
|
|
cbor.RegisterCborType(StorageMarketState{})
|
2019-07-12 21:36:49 +00:00
|
|
|
cbor.RegisterCborType(CreateStorageMinerParams{})
|
2019-07-17 14:30:55 +00:00
|
|
|
cbor.RegisterCborType(IsMinerParam{})
|
2019-07-17 16:00:59 +00:00
|
|
|
cbor.RegisterCborType(PowerLookupParams{})
|
2019-07-12 20:56:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type StorageMarketActor struct{}
|
|
|
|
|
2019-07-26 21:42:38 +00:00
|
|
|
type smaMethods struct {
|
|
|
|
Constructor uint64
|
|
|
|
CreateStorageMiner uint64
|
|
|
|
SlashConsensusFault uint64
|
|
|
|
UpdateStorage uint64
|
|
|
|
GetTotalStorage uint64
|
|
|
|
PowerLookup uint64
|
|
|
|
IsMiner uint64
|
|
|
|
}
|
|
|
|
|
|
|
|
var SMAMethods = smaMethods{1, 2, 3, 4, 5, 6, 7}
|
|
|
|
|
2019-07-12 20:56:41 +00:00
|
|
|
func (sma StorageMarketActor) Exports() []interface{} {
|
|
|
|
return []interface{}{
|
2019-07-26 21:42:38 +00:00
|
|
|
//1: sma.StorageMarketConstructor,
|
|
|
|
2: sma.CreateStorageMiner,
|
|
|
|
//3: sma.SlashConsensusFault,
|
|
|
|
4: sma.UpdateStorage,
|
|
|
|
5: sma.GetTotalStorage,
|
|
|
|
6: sma.PowerLookup,
|
|
|
|
7: sma.IsMiner,
|
|
|
|
//8: sma.StorageCollateralForSize,
|
2019-07-12 20:56:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type StorageMarketState struct {
|
|
|
|
Miners map[address.Address]struct{}
|
|
|
|
TotalStorage types.BigInt
|
|
|
|
}
|
|
|
|
|
|
|
|
type CreateStorageMinerParams struct {
|
2019-07-16 16:40:25 +00:00
|
|
|
Owner address.Address
|
2019-07-12 20:56:41 +00:00
|
|
|
Worker address.Address
|
|
|
|
SectorSize types.BigInt
|
|
|
|
PeerID peer.ID
|
|
|
|
}
|
|
|
|
|
2019-07-23 13:01:52 +00:00
|
|
|
func (sma StorageMarketActor) CreateStorageMiner(act *types.Actor, vmctx types.VMContext, params *CreateStorageMinerParams) ([]byte, ActorError) {
|
2019-07-12 20:56:41 +00:00
|
|
|
if !SupportedSectorSize(params.SectorSize) {
|
2019-07-23 13:01:52 +00:00
|
|
|
return nil, aerrors.New(1, "Unsupported sector size")
|
2019-07-12 20:56:41 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 23:12:06 +00:00
|
|
|
encoded, err := CreateExecParams(StorageMinerCodeCid, &StorageMinerConstructorParams{
|
2019-07-16 16:40:25 +00:00
|
|
|
Owner: params.Owner,
|
2019-07-12 23:12:06 +00:00
|
|
|
Worker: params.Worker,
|
|
|
|
SectorSize: params.SectorSize,
|
|
|
|
PeerID: params.PeerID,
|
|
|
|
})
|
2019-07-12 20:56:41 +00:00
|
|
|
if err != nil {
|
2019-07-23 13:01:52 +00:00
|
|
|
return nil, err
|
2019-07-12 20:56:41 +00:00
|
|
|
}
|
|
|
|
|
2019-07-26 21:42:38 +00:00
|
|
|
ret, err := vmctx.Send(InitActorAddress, IAMethods.Exec, vmctx.Message().Value, encoded)
|
2019-07-12 20:56:41 +00:00
|
|
|
if err != nil {
|
2019-07-23 13:01:52 +00:00
|
|
|
return nil, err
|
2019-07-12 20:56:41 +00:00
|
|
|
}
|
|
|
|
|
2019-07-22 16:08:54 +00:00
|
|
|
naddr, nerr := address.NewFromBytes(ret)
|
|
|
|
if nerr != nil {
|
2019-07-23 18:19:15 +00:00
|
|
|
return nil, aerrors.Absorb(nerr, 1, "could not read address of new actor")
|
2019-07-17 14:30:55 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 20:56:41 +00:00
|
|
|
var self StorageMarketState
|
|
|
|
old := vmctx.Storage().GetHead()
|
|
|
|
if err := vmctx.Storage().Get(old, &self); err != nil {
|
2019-07-23 13:01:52 +00:00
|
|
|
return nil, err
|
2019-07-12 20:56:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
self.Miners[naddr] = struct{}{}
|
|
|
|
|
|
|
|
nroot, err := vmctx.Storage().Put(self)
|
|
|
|
if err != nil {
|
2019-07-23 13:01:52 +00:00
|
|
|
return nil, err
|
2019-07-12 20:56:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := vmctx.Storage().Commit(old, nroot); err != nil {
|
2019-07-23 13:01:52 +00:00
|
|
|
return nil, err
|
2019-07-12 20:56:41 +00:00
|
|
|
}
|
|
|
|
|
2019-07-23 13:01:52 +00:00
|
|
|
return naddr.Bytes(), nil
|
2019-07-12 20:56:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func SupportedSectorSize(ssize types.BigInt) bool {
|
2019-07-15 17:48:59 +00:00
|
|
|
if ssize.Uint64() == SectorSize {
|
2019-07-12 20:56:41 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
2019-07-16 06:07:03 +00:00
|
|
|
|
|
|
|
type UpdateStorageParams struct {
|
|
|
|
Delta types.BigInt
|
|
|
|
}
|
|
|
|
|
2019-07-23 13:01:52 +00:00
|
|
|
func (sma StorageMarketActor) UpdateStorage(act *types.Actor, vmctx types.VMContext, params *UpdateStorageParams) ([]byte, ActorError) {
|
2019-07-16 06:07:03 +00:00
|
|
|
var self StorageMarketState
|
|
|
|
if err := vmctx.Storage().Get(vmctx.Storage().GetHead(), &self); err != nil {
|
2019-07-23 13:01:52 +00:00
|
|
|
return nil, err
|
2019-07-16 06:07:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_, ok := self.Miners[vmctx.Message().From]
|
|
|
|
if !ok {
|
2019-07-23 13:01:52 +00:00
|
|
|
return nil, aerrors.New(1, "update storage must only be called by a miner actor")
|
2019-07-16 06:07:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
self.TotalStorage = types.BigAdd(self.TotalStorage, params.Delta)
|
2019-07-23 13:01:52 +00:00
|
|
|
return nil, nil
|
2019-07-16 06:07:03 +00:00
|
|
|
}
|
|
|
|
|
2019-07-23 13:01:52 +00:00
|
|
|
func (sma StorageMarketActor) GetTotalStorage(act *types.Actor, vmctx types.VMContext, params *struct{}) ([]byte, ActorError) {
|
2019-07-16 06:07:03 +00:00
|
|
|
var self StorageMarketState
|
|
|
|
if err := vmctx.Storage().Get(vmctx.Storage().GetHead(), &self); err != nil {
|
2019-07-23 13:01:52 +00:00
|
|
|
return nil, err
|
2019-07-16 06:07:03 +00:00
|
|
|
}
|
|
|
|
|
2019-07-23 13:01:52 +00:00
|
|
|
return self.TotalStorage.Bytes(), nil
|
2019-07-16 06:07:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type PowerLookupParams struct {
|
|
|
|
Miner address.Address
|
|
|
|
}
|
|
|
|
|
2019-07-23 13:01:52 +00:00
|
|
|
func (sma StorageMarketActor) PowerLookup(act *types.Actor, vmctx types.VMContext, params *PowerLookupParams) ([]byte, ActorError) {
|
2019-07-16 06:07:03 +00:00
|
|
|
var self StorageMarketState
|
|
|
|
if err := vmctx.Storage().Get(vmctx.Storage().GetHead(), &self); err != nil {
|
2019-07-23 13:01:52 +00:00
|
|
|
return nil, aerrors.Wrap(err, "getting head")
|
2019-07-16 06:07:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if _, ok := self.Miners[params.Miner]; !ok {
|
2019-07-23 13:01:52 +00:00
|
|
|
return nil, aerrors.New(1, "miner not registered with storage market")
|
2019-07-16 06:07:03 +00:00
|
|
|
}
|
|
|
|
|
2019-07-26 21:42:38 +00:00
|
|
|
ret, err := vmctx.Send(params.Miner, MAMethods.GetPower, types.NewInt(0), EmptyStructCBOR)
|
2019-07-16 06:07:03 +00:00
|
|
|
if err != nil {
|
2019-07-23 13:01:52 +00:00
|
|
|
return nil, aerrors.Wrap(err, "invoke Miner.GetPower")
|
2019-07-16 06:07:03 +00:00
|
|
|
}
|
|
|
|
|
2019-07-23 13:01:52 +00:00
|
|
|
return ret, nil
|
2019-07-16 06:07:03 +00:00
|
|
|
}
|
2019-07-17 14:30:55 +00:00
|
|
|
|
|
|
|
type IsMinerParam struct {
|
|
|
|
Addr address.Address
|
|
|
|
}
|
|
|
|
|
2019-07-23 13:01:52 +00:00
|
|
|
func (sma StorageMarketActor) IsMiner(act *types.Actor, vmctx types.VMContext, param *IsMinerParam) ([]byte, ActorError) {
|
2019-07-17 14:30:55 +00:00
|
|
|
var self StorageMarketState
|
|
|
|
if err := vmctx.Storage().Get(vmctx.Storage().GetHead(), &self); err != nil {
|
2019-07-23 13:01:52 +00:00
|
|
|
return nil, err
|
2019-07-17 14:30:55 +00:00
|
|
|
}
|
|
|
|
_, ok := self.Miners[param.Addr]
|
|
|
|
out, err := SerializeParams(ok)
|
|
|
|
if err != nil {
|
2019-07-23 13:01:52 +00:00
|
|
|
return nil, err
|
2019-07-17 14:30:55 +00:00
|
|
|
}
|
2019-07-23 13:01:52 +00:00
|
|
|
return out, nil
|
2019-07-17 14:30:55 +00:00
|
|
|
}
|