2020-10-20 21:19:42 +00:00
package main
import (
2020-10-29 03:51:08 +00:00
"bytes"
2021-11-25 19:53:49 +00:00
"context"
2020-10-29 03:51:08 +00:00
"encoding/base64"
2021-11-25 19:53:49 +00:00
"encoding/binary"
2020-10-20 21:19:42 +00:00
"fmt"
2020-10-29 03:51:08 +00:00
"image"
"image/color"
"image/png"
2021-11-25 19:53:49 +00:00
"io"
2020-10-29 03:51:08 +00:00
"os"
"sort"
2020-10-20 22:26:17 +00:00
"strconv"
2020-10-29 03:51:08 +00:00
"sync"
2020-10-20 22:26:17 +00:00
2022-06-14 15:00:51 +00:00
"github.com/ipfs/go-cid"
"github.com/urfave/cli/v2"
2020-10-08 20:32:54 +00:00
"golang.org/x/xerrors"
2021-03-16 06:09:46 +00:00
"github.com/filecoin-project/go-address"
2020-10-20 21:19:42 +00:00
"github.com/filecoin-project/go-bitfield"
"github.com/filecoin-project/go-state-types/abi"
"github.com/filecoin-project/go-state-types/big"
2022-04-20 21:34:28 +00:00
"github.com/filecoin-project/go-state-types/builtin"
2020-10-08 20:32:54 +00:00
miner2 "github.com/filecoin-project/specs-actors/v2/actors/builtin/miner"
2020-10-20 21:19:42 +00:00
2021-11-25 19:53:49 +00:00
"github.com/filecoin-project/lotus/api/v0api"
2020-10-08 20:32:54 +00:00
"github.com/filecoin-project/lotus/chain/actors"
2020-10-20 21:19:42 +00:00
"github.com/filecoin-project/lotus/chain/types"
lcli "github.com/filecoin-project/lotus/cli"
2020-10-29 03:51:08 +00:00
"github.com/filecoin-project/lotus/lib/parmap"
2020-10-20 21:19:42 +00:00
)
var sectorsCmd = & cli . Command {
Name : "sectors" ,
Usage : "Tools for interacting with sectors" ,
Flags : [ ] cli . Flag { } ,
Subcommands : [ ] * cli . Command {
terminateSectorCmd ,
2020-10-27 22:26:32 +00:00
terminateSectorPenaltyEstimationCmd ,
2020-10-29 03:51:08 +00:00
visAllocatedSectorsCmd ,
2021-11-25 19:53:49 +00:00
dumpRLESectorCmd ,
2020-10-20 21:19:42 +00:00
} ,
}
var terminateSectorCmd = & cli . Command {
Name : "terminate" ,
Usage : "Forcefully terminate a sector (WARNING: This means losing power and pay a one-time termination penalty(including collateral) for the terminated sector)" ,
ArgsUsage : "[sectorNum1 sectorNum2 ...]" ,
Flags : [ ] cli . Flag {
2021-03-16 06:09:46 +00:00
& cli . StringFlag {
Name : "actor" ,
Usage : "specify the address of miner actor" ,
} ,
2020-10-20 21:19:42 +00:00
& cli . BoolFlag {
Name : "really-do-it" ,
Usage : "pass this flag if you know what you are doing" ,
} ,
2022-09-10 00:50:37 +00:00
& cli . StringFlag {
Name : "from" ,
Usage : "specify the address to send the terminate message from" ,
} ,
2020-10-20 21:19:42 +00:00
} ,
Action : func ( cctx * cli . Context ) error {
2022-09-14 18:33:29 +00:00
if cctx . NArg ( ) < 1 {
2020-10-20 21:19:42 +00:00
return fmt . Errorf ( "at least one sector must be specified" )
}
2021-03-16 06:09:46 +00:00
var maddr address . Address
if act := cctx . String ( "actor" ) ; act != "" {
var err error
maddr , err = address . NewFromString ( act )
if err != nil {
return fmt . Errorf ( "parsing address %s: %w" , act , err )
}
}
2020-10-20 21:19:42 +00:00
if ! cctx . Bool ( "really-do-it" ) {
return fmt . Errorf ( "this is a command for advanced users, only use it if you are sure of what you are doing" )
}
nodeApi , closer , err := lcli . GetFullNodeAPI ( cctx )
if err != nil {
return err
}
defer closer ( )
ctx := lcli . ReqContext ( cctx )
2021-03-16 06:09:46 +00:00
if maddr . Empty ( ) {
2022-09-14 18:51:18 +00:00
minerApi , acloser , err := lcli . GetStorageMinerAPI ( cctx )
2021-03-16 06:09:46 +00:00
if err != nil {
return err
}
defer acloser ( )
2022-09-14 18:51:18 +00:00
maddr , err = minerApi . ActorAddress ( ctx )
2021-03-16 06:09:46 +00:00
if err != nil {
return err
}
2020-10-20 21:19:42 +00:00
}
mi , err := nodeApi . StateMinerInfo ( ctx , maddr , types . EmptyTSK )
if err != nil {
return err
}
2020-10-08 20:32:54 +00:00
terminationDeclarationParams := [ ] miner2 . TerminationDeclaration { }
2020-10-20 21:19:42 +00:00
for _ , sn := range cctx . Args ( ) . Slice ( ) {
sectorNum , err := strconv . ParseUint ( sn , 10 , 64 )
if err != nil {
return fmt . Errorf ( "could not parse sector number: %w" , err )
}
sectorbit := bitfield . New ( )
sectorbit . Set ( sectorNum )
loca , err := nodeApi . StateSectorPartition ( ctx , maddr , abi . SectorNumber ( sectorNum ) , types . EmptyTSK )
if err != nil {
return fmt . Errorf ( "get state sector partition %s" , err )
}
2020-10-08 20:32:54 +00:00
para := miner2 . TerminationDeclaration {
2020-10-20 21:19:42 +00:00
Deadline : loca . Deadline ,
Partition : loca . Partition ,
Sectors : sectorbit ,
}
terminationDeclarationParams = append ( terminationDeclarationParams , para )
}
2020-10-08 20:32:54 +00:00
terminateSectorParams := & miner2 . TerminateSectorsParams {
2020-10-20 21:19:42 +00:00
Terminations : terminationDeclarationParams ,
}
sp , err := actors . SerializeParams ( terminateSectorParams )
if err != nil {
return xerrors . Errorf ( "serializing params: %w" , err )
}
2022-09-10 00:50:37 +00:00
var fromAddr address . Address
if from := cctx . String ( "from" ) ; from != "" {
var err error
fromAddr , err = address . NewFromString ( from )
if err != nil {
return fmt . Errorf ( "parsing address %s: %w" , from , err )
}
} else {
fromAddr = mi . Worker
}
2020-10-20 21:19:42 +00:00
smsg , err := nodeApi . MpoolPushMessage ( ctx , & types . Message {
2022-09-10 00:50:37 +00:00
From : fromAddr ,
2020-10-20 21:19:42 +00:00
To : maddr ,
2022-04-20 21:34:28 +00:00
Method : builtin . MethodsMiner . TerminateSectors ,
2020-10-20 21:19:42 +00:00
Value : big . Zero ( ) ,
Params : sp ,
} , nil )
if err != nil {
return xerrors . Errorf ( "mpool push message: %w" , err )
}
2020-10-20 22:26:17 +00:00
fmt . Println ( "sent termination message:" , smsg . Cid ( ) )
wait , err := nodeApi . StateWaitMsg ( ctx , smsg . Cid ( ) , uint64 ( cctx . Int ( "confidence" ) ) )
if err != nil {
return err
}
2022-09-14 18:53:11 +00:00
if wait . Receipt . ExitCode . IsError ( ) {
2020-10-20 22:26:17 +00:00
return fmt . Errorf ( "terminate sectors message returned exit %d" , wait . Receipt . ExitCode )
}
2020-10-20 21:19:42 +00:00
return nil
} ,
}
2020-10-27 22:26:32 +00:00
func findPenaltyInInternalExecutions ( prefix string , trace [ ] types . ExecutionTrace ) {
for _ , im := range trace {
if im . Msg . To . String ( ) == "f099" /*Burn actor*/ {
fmt . Printf ( "Estimated termination penalty: %s attoFIL\n" , im . Msg . Value )
return
}
findPenaltyInInternalExecutions ( prefix + "\t" , im . Subcalls )
}
}
var terminateSectorPenaltyEstimationCmd = & cli . Command {
Name : "termination-estimate" ,
Usage : "Estimate the termination penalty" ,
ArgsUsage : "[sectorNum1 sectorNum2 ...]" ,
2021-03-16 06:09:46 +00:00
Flags : [ ] cli . Flag {
& cli . StringFlag {
Name : "actor" ,
Usage : "specify the address of miner actor" ,
} ,
} ,
2020-10-27 22:26:32 +00:00
Action : func ( cctx * cli . Context ) error {
2022-09-14 18:33:29 +00:00
if cctx . NArg ( ) < 1 {
2020-10-27 22:26:32 +00:00
return fmt . Errorf ( "at least one sector must be specified" )
}
2021-03-16 06:09:46 +00:00
var maddr address . Address
if act := cctx . String ( "actor" ) ; act != "" {
var err error
maddr , err = address . NewFromString ( act )
if err != nil {
return fmt . Errorf ( "parsing address %s: %w" , act , err )
}
2020-10-27 22:26:32 +00:00
}
2021-03-16 06:09:46 +00:00
nodeApi , closer , err := lcli . GetFullNodeAPI ( cctx )
2020-10-27 22:26:32 +00:00
if err != nil {
return err
}
2021-03-16 06:09:46 +00:00
defer closer ( )
2020-10-27 22:26:32 +00:00
ctx := lcli . ReqContext ( cctx )
2021-03-16 06:09:46 +00:00
if maddr . Empty ( ) {
2022-09-14 18:51:18 +00:00
minerApi , acloser , err := lcli . GetStorageMinerAPI ( cctx )
2021-03-16 06:09:46 +00:00
if err != nil {
return err
}
defer acloser ( )
2022-09-14 18:51:18 +00:00
maddr , err = minerApi . ActorAddress ( ctx )
2021-03-16 06:09:46 +00:00
if err != nil {
return err
}
2020-10-27 22:26:32 +00:00
}
mi , err := nodeApi . StateMinerInfo ( ctx , maddr , types . EmptyTSK )
if err != nil {
return err
}
terminationDeclarationParams := [ ] miner2 . TerminationDeclaration { }
for _ , sn := range cctx . Args ( ) . Slice ( ) {
sectorNum , err := strconv . ParseUint ( sn , 10 , 64 )
if err != nil {
return fmt . Errorf ( "could not parse sector number: %w" , err )
}
sectorbit := bitfield . New ( )
sectorbit . Set ( sectorNum )
loca , err := nodeApi . StateSectorPartition ( ctx , maddr , abi . SectorNumber ( sectorNum ) , types . EmptyTSK )
if err != nil {
return fmt . Errorf ( "get state sector partition %s" , err )
}
para := miner2 . TerminationDeclaration {
Deadline : loca . Deadline ,
Partition : loca . Partition ,
Sectors : sectorbit ,
}
terminationDeclarationParams = append ( terminationDeclarationParams , para )
}
terminateSectorParams := & miner2 . TerminateSectorsParams {
Terminations : terminationDeclarationParams ,
}
sp , err := actors . SerializeParams ( terminateSectorParams )
if err != nil {
return xerrors . Errorf ( "serializing params: %w" , err )
}
msg := & types . Message {
From : mi . Owner ,
To : maddr ,
2022-04-20 21:34:28 +00:00
Method : builtin . MethodsMiner . TerminateSectors ,
2020-10-27 22:26:32 +00:00
Value : big . Zero ( ) ,
Params : sp ,
}
//TODO: 4667 add an option to give a more precise estimation with pending termination penalty excluded
2021-04-29 04:56:16 +00:00
invocResult , err := nodeApi . StateCall ( ctx , msg , types . EmptyTSK )
2020-10-27 22:26:32 +00:00
if err != nil {
return xerrors . Errorf ( "fail to state call: %w" , err )
}
findPenaltyInInternalExecutions ( "\t" , invocResult . ExecutionTrace . Subcalls )
return nil
} ,
}
2020-10-29 03:51:08 +00:00
2021-11-25 19:53:49 +00:00
func activeMiners ( ctx context . Context , api v0api . FullNode ) ( [ ] address . Address , error ) {
miners , err := api . StateListMiners ( ctx , types . EmptyTSK )
if err != nil {
return nil , err
}
powCache := make ( map [ address . Address ] types . BigInt )
var lk sync . Mutex
parmap . Par ( 32 , miners , func ( a address . Address ) {
pow , err := api . StateMinerPower ( ctx , a , types . EmptyTSK )
lk . Lock ( )
if err == nil {
powCache [ a ] = pow . MinerPower . QualityAdjPower
} else {
powCache [ a ] = types . NewInt ( 0 )
}
lk . Unlock ( )
} )
sort . Slice ( miners , func ( i , j int ) bool {
return powCache [ miners [ i ] ] . GreaterThan ( powCache [ miners [ j ] ] )
} )
n := sort . Search ( len ( miners ) , func ( i int ) bool {
pow := powCache [ miners [ i ] ]
return pow . IsZero ( )
} )
return append ( miners [ 0 : 0 : 0 ] , miners [ : n ] ... ) , nil
}
var dumpRLESectorCmd = & cli . Command {
Name : "dump-rles" ,
2021-11-26 14:01:05 +00:00
Usage : "Dump AllocatedSectors RLEs from miners passed as arguments as run lengths in uint64 LE format.\nIf no arguments are passed, dumps all active miners in the state tree." ,
2021-11-25 19:53:49 +00:00
Action : func ( cctx * cli . Context ) error {
api , closer , err := lcli . GetFullNodeAPI ( cctx )
if err != nil {
return err
}
defer closer ( )
ctx := lcli . ReqContext ( cctx )
var miners [ ] address . Address
if cctx . NArg ( ) == 0 {
miners , err = activeMiners ( ctx , api )
if err != nil {
return xerrors . Errorf ( "getting active miners: %w" , err )
}
} else {
for _ , mS := range cctx . Args ( ) . Slice ( ) {
mA , err := address . NewFromString ( mS )
if err != nil {
return xerrors . Errorf ( "parsing address '%s': %w" , mS , err )
}
miners = append ( miners , mA )
}
}
wbuf := make ( [ ] byte , 8 )
buf := & bytes . Buffer { }
for i := 0 ; i < len ( miners ) ; i ++ {
buf . Reset ( )
err := func ( ) error {
state , err := api . StateReadState ( ctx , miners [ i ] , types . EmptyTSK )
if err != nil {
return xerrors . Errorf ( "getting state: %+v" , err )
}
allocSString := state . State . ( map [ string ] interface { } ) [ "AllocatedSectors" ] . ( map [ string ] interface { } ) [ "/" ] . ( string )
allocCid , err := cid . Decode ( allocSString )
if err != nil {
return xerrors . Errorf ( "decoding cid: %+v" , err )
}
rle , err := api . ChainReadObj ( ctx , allocCid )
if err != nil {
return xerrors . Errorf ( "reading AllocatedSectors: %+v" , err )
}
var bf bitfield . BitField
err = bf . UnmarshalCBOR ( bytes . NewReader ( rle ) )
if err != nil {
return xerrors . Errorf ( "decoding bitfield: %w" , err )
}
ri , err := bf . RunIterator ( )
if err != nil {
2021-11-26 13:42:18 +00:00
return xerrors . Errorf ( "creating iterator: %w" , err )
2021-11-25 19:53:49 +00:00
}
for ri . HasNext ( ) {
run , err := ri . NextRun ( )
if err != nil {
return xerrors . Errorf ( "getting run: %w" , err )
}
binary . LittleEndian . PutUint64 ( wbuf , run . Len )
buf . Write ( wbuf )
}
_ , err = io . Copy ( os . Stdout , buf )
if err != nil {
return xerrors . Errorf ( "copy: %w" , err )
}
return nil
} ( )
if err != nil {
log . Errorf ( "miner %d: %s: %+v" , i , miners [ i ] , err )
}
}
return nil
} ,
}
2020-10-29 03:51:08 +00:00
var visAllocatedSectorsCmd = & cli . Command {
Name : "vis-allocated" ,
Usage : "Produces a html with visualisation of allocated sectors" ,
Action : func ( cctx * cli . Context ) error {
api , closer , err := lcli . GetFullNodeAPI ( cctx )
if err != nil {
return err
}
defer closer ( )
ctx := lcli . ReqContext ( cctx )
var miners [ ] address . Address
if cctx . NArg ( ) == 0 {
2021-11-25 19:53:49 +00:00
miners , err = activeMiners ( ctx , api )
2020-10-29 03:51:08 +00:00
if err != nil {
2021-11-25 19:53:49 +00:00
return xerrors . Errorf ( "getting active miners: %w" , err )
2020-10-29 03:51:08 +00:00
}
} else {
for _ , mS := range cctx . Args ( ) . Slice ( ) {
mA , err := address . NewFromString ( mS )
if err != nil {
return xerrors . Errorf ( "parsing address '%s': %w" , mS , err )
}
miners = append ( miners , mA )
}
}
pngs := make ( [ ] [ ] byte , len ( miners ) )
for i := 0 ; i < len ( miners ) ; i ++ {
func ( ) {
state , err := api . StateReadState ( ctx , miners [ i ] , types . EmptyTSK )
if err != nil {
log . Errorf ( "getting state: %+v" , err )
return
}
allocSString := state . State . ( map [ string ] interface { } ) [ "AllocatedSectors" ] . ( map [ string ] interface { } ) [ "/" ] . ( string )
allocCid , err := cid . Decode ( allocSString )
if err != nil {
log . Errorf ( "decoding cid: %+v" , err )
return
}
rle , err := api . ChainReadObj ( ctx , allocCid )
if err != nil {
log . Errorf ( "reading AllocatedSectors: %+v" , err )
return
}
png , err := rleToPng ( rle )
if err != nil {
log . Errorf ( "converting to png: %+v" , err )
return
}
pngs [ i ] = png
encoded := base64 . StdEncoding . EncodeToString ( pngs [ i ] )
fmt . Printf ( ` %s:</br><img src="data:image/png;base64,%s"></br> ` + "\n" , miners [ i ] , encoded )
_ = os . Stdout . Sync ( )
} ( )
}
return nil
} ,
}
func rleToPng ( rleBytes [ ] byte ) ( [ ] byte , error ) {
var bf bitfield . BitField
err := bf . UnmarshalCBOR ( bytes . NewReader ( rleBytes ) )
if err != nil {
return nil , xerrors . Errorf ( "decoding bitfield: %w" , err )
}
{
last , err := bf . Last ( )
if err != nil {
return nil , xerrors . Errorf ( "getting last: %w" , err )
}
if last == 0 {
return nil , nil
}
}
ri , err := bf . RunIterator ( )
if err != nil {
return nil , xerrors . Errorf ( "creating interator: %w" , err )
}
const width = 1024
2020-10-29 19:33:58 +00:00
const skipTh = 64
const skipSize = 32
2020-10-29 03:51:08 +00:00
var size uint64
for ri . HasNext ( ) {
run , err := ri . NextRun ( )
if err != nil {
return nil , xerrors . Errorf ( "getting next run: %w" , err )
}
2020-10-29 19:33:58 +00:00
if run . Len > skipTh * width {
2020-10-29 03:51:08 +00:00
size += run . Len % ( 2 * width ) + skipSize * width
} else {
size += run . Len
}
}
img := image . NewRGBA ( image . Rect ( 0 , 0 , width , int ( ( size + width - 1 ) / width ) ) )
for i := range img . Pix {
img . Pix [ i ] = 255
}
ri , err = bf . RunIterator ( )
if err != nil {
return nil , xerrors . Errorf ( "creating interator: %w" , err )
}
const shade = 15
idx := uint64 ( 0 )
realIdx := uint64 ( 0 )
for ri . HasNext ( ) {
run , err := ri . NextRun ( )
if err != nil {
return nil , xerrors . Errorf ( "getting next run: %w" , err )
}
var cut = false
var oldLen uint64
2020-10-29 19:33:58 +00:00
if run . Len > skipTh * width {
2020-10-29 03:51:08 +00:00
oldLen = run . Len
run . Len = run . Len % ( 2 * width ) + skipSize * width
cut = true
}
for i := uint64 ( 0 ) ; i < run . Len ; i ++ {
col := color . Gray { 0 }
stripe := ( realIdx + i ) / width % 256 >= 128
if cut && i > skipSize * width / 2 {
stripe = ( realIdx + i + ( skipSize / 2 * width ) ) / width % 256 >= 128
}
if ! run . Val {
col . Y = 255
if stripe {
col . Y -= shade
}
} else if stripe {
col . Y += shade
}
img . Set ( int ( ( idx + i ) % width ) , int ( ( idx + i ) / width ) , col )
}
if cut {
i := ( idx + run . Len / 2 + width ) &^ ( width - 1 )
iend := i + width
col := color . RGBA { 255 , 0 , 0 , 255 }
for ; i < iend ; i ++ {
img . Set ( int ( i ) % width , int ( i ) / width , col )
}
realIdx += oldLen
idx += run . Len
} else {
realIdx += run . Len
idx += run . Len
}
}
buf := & bytes . Buffer { }
err = png . Encode ( buf , img )
if err != nil {
return nil , xerrors . Errorf ( "encoding png: %w" , err )
}
return buf . Bytes ( ) , nil
}