2019-07-08 23:48:49 +00:00
|
|
|
package miner
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2019-08-20 16:50:17 +00:00
|
|
|
"sync"
|
2019-07-08 23:48:49 +00:00
|
|
|
"time"
|
|
|
|
|
2019-08-30 02:59:54 +00:00
|
|
|
"github.com/filecoin-project/go-lotus/build"
|
2019-08-15 02:30:21 +00:00
|
|
|
"github.com/filecoin-project/go-lotus/chain/actors"
|
2019-07-11 02:36:43 +00:00
|
|
|
"github.com/filecoin-project/go-lotus/chain/address"
|
2019-08-16 04:40:59 +00:00
|
|
|
"github.com/filecoin-project/go-lotus/chain/gen"
|
2019-07-25 22:15:03 +00:00
|
|
|
"github.com/filecoin-project/go-lotus/chain/types"
|
2019-08-16 00:17:09 +00:00
|
|
|
"github.com/filecoin-project/go-lotus/lib/vdf"
|
2019-08-20 16:50:17 +00:00
|
|
|
"github.com/filecoin-project/go-lotus/node/impl/full"
|
|
|
|
|
|
|
|
logging "github.com/ipfs/go-log"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
"go.opencensus.io/trace"
|
|
|
|
"go.uber.org/fx"
|
|
|
|
"golang.org/x/xerrors"
|
2019-07-08 23:48:49 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var log = logging.Logger("miner")
|
|
|
|
|
2019-09-23 15:27:30 +00:00
|
|
|
type vdfFunc func(ctx context.Context, input []byte) ([]byte, []byte, error)
|
|
|
|
|
2019-08-20 16:50:17 +00:00
|
|
|
type api struct {
|
|
|
|
fx.In
|
2019-07-08 23:48:49 +00:00
|
|
|
|
2019-08-20 16:50:17 +00:00
|
|
|
full.ChainAPI
|
|
|
|
full.MpoolAPI
|
|
|
|
full.WalletAPI
|
2019-08-21 16:31:14 +00:00
|
|
|
full.StateAPI
|
2019-07-11 02:36:43 +00:00
|
|
|
}
|
|
|
|
|
2019-08-20 16:50:17 +00:00
|
|
|
func NewMiner(api api) *Miner {
|
2019-07-11 02:36:43 +00:00
|
|
|
return &Miner{
|
2019-09-23 15:27:30 +00:00
|
|
|
api: api,
|
|
|
|
|
|
|
|
// time between blocks, network parameter
|
|
|
|
runVDF: delayVDF(build.BlockDelay * time.Second),
|
2019-07-11 02:36:43 +00:00
|
|
|
}
|
2019-07-08 23:48:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Miner struct {
|
|
|
|
api api
|
|
|
|
|
2019-08-20 16:50:17 +00:00
|
|
|
lk sync.Mutex
|
|
|
|
addresses []address.Address
|
2019-08-20 18:05:17 +00:00
|
|
|
stop chan struct{}
|
|
|
|
stopping chan struct{}
|
2019-07-11 02:36:43 +00:00
|
|
|
|
2019-09-23 15:27:30 +00:00
|
|
|
runVDF vdfFunc
|
2019-07-08 23:48:49 +00:00
|
|
|
|
|
|
|
lastWork *MiningBase
|
|
|
|
}
|
|
|
|
|
2019-08-21 15:14:38 +00:00
|
|
|
func (m *Miner) Addresses() ([]address.Address, error) {
|
|
|
|
m.lk.Lock()
|
|
|
|
defer m.lk.Unlock()
|
|
|
|
|
|
|
|
out := make([]address.Address, len(m.addresses))
|
|
|
|
copy(out, m.addresses)
|
|
|
|
|
|
|
|
return out, nil
|
|
|
|
}
|
|
|
|
|
2019-08-20 16:50:17 +00:00
|
|
|
func (m *Miner) Register(addr address.Address) error {
|
|
|
|
m.lk.Lock()
|
|
|
|
defer m.lk.Unlock()
|
|
|
|
|
|
|
|
if len(m.addresses) > 0 {
|
2019-08-20 17:19:24 +00:00
|
|
|
if len(m.addresses) > 1 || m.addresses[0] != addr {
|
|
|
|
return errors.New("mining with more than one storage miner instance not supported yet") // TODO !
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Warnf("miner.Register called more than once for actor '%s'", addr)
|
2019-08-20 18:21:37 +00:00
|
|
|
return xerrors.Errorf("miner.Register called more than once for actor '%s'", addr)
|
2019-08-20 16:50:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
m.addresses = append(m.addresses, addr)
|
2019-08-20 18:05:17 +00:00
|
|
|
m.stop = make(chan struct{})
|
|
|
|
|
2019-08-20 16:50:17 +00:00
|
|
|
go m.mine(context.TODO())
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-08-20 18:05:17 +00:00
|
|
|
func (m *Miner) Unregister(ctx context.Context, addr address.Address) error {
|
|
|
|
m.lk.Lock()
|
|
|
|
if len(m.addresses) == 0 {
|
|
|
|
m.lk.Unlock()
|
|
|
|
return xerrors.New("no addresses registered")
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(m.addresses) > 1 {
|
|
|
|
m.lk.Unlock()
|
|
|
|
log.Errorf("UNREGISTER NOT IMPLEMENTED FOR MORE THAN ONE ADDRESS!")
|
|
|
|
return xerrors.New("can't unregister when more than one actor is registered: not implemented")
|
|
|
|
}
|
|
|
|
|
|
|
|
if m.addresses[0] != addr {
|
|
|
|
m.lk.Unlock()
|
|
|
|
return xerrors.New("unregister: address not found")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unregistering last address, stop mining first
|
|
|
|
if m.stop != nil {
|
|
|
|
if m.stopping == nil {
|
|
|
|
m.stopping = make(chan struct{})
|
|
|
|
close(m.stop)
|
|
|
|
}
|
|
|
|
stopping := m.stopping
|
|
|
|
m.lk.Unlock()
|
|
|
|
select {
|
|
|
|
case <-stopping:
|
|
|
|
case <-ctx.Done():
|
|
|
|
return ctx.Err()
|
|
|
|
}
|
|
|
|
m.lk.Lock()
|
|
|
|
}
|
|
|
|
|
|
|
|
m.addresses = []address.Address{}
|
|
|
|
|
|
|
|
m.lk.Unlock()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-08-20 16:50:17 +00:00
|
|
|
func (m *Miner) mine(ctx context.Context) {
|
2019-07-26 19:01:02 +00:00
|
|
|
ctx, span := trace.StartSpan(ctx, "/mine")
|
|
|
|
defer span.End()
|
2019-08-20 18:05:17 +00:00
|
|
|
|
2019-07-08 23:48:49 +00:00
|
|
|
for {
|
2019-08-20 18:05:17 +00:00
|
|
|
select {
|
|
|
|
case <-m.stop:
|
|
|
|
m.lk.Lock()
|
2019-08-20 18:17:59 +00:00
|
|
|
|
2019-08-20 18:05:17 +00:00
|
|
|
close(m.stopping)
|
|
|
|
m.stop = nil
|
|
|
|
m.stopping = nil
|
2019-08-20 18:17:59 +00:00
|
|
|
|
2019-08-20 18:05:17 +00:00
|
|
|
m.lk.Unlock()
|
2019-08-20 18:17:59 +00:00
|
|
|
|
|
|
|
return
|
2019-08-20 18:05:17 +00:00
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
2019-07-08 23:48:49 +00:00
|
|
|
base, err := m.GetBestMiningCandidate()
|
|
|
|
if err != nil {
|
|
|
|
log.Errorf("failed to get best mining candidate: %s", err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
b, err := m.mineOne(ctx, base)
|
|
|
|
if err != nil {
|
|
|
|
log.Errorf("mining block failed: %s", err)
|
2019-08-19 22:08:30 +00:00
|
|
|
log.Warn("waiting 400ms before attempting to mine a block")
|
|
|
|
time.Sleep(400 * time.Millisecond)
|
2019-07-08 23:48:49 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if b != nil {
|
2019-07-11 02:36:43 +00:00
|
|
|
if err := m.api.ChainSubmitBlock(ctx, b); err != nil {
|
2019-07-08 23:48:49 +00:00
|
|
|
log.Errorf("failed to submit newly mined block: %s", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type MiningBase struct {
|
2019-07-26 04:54:22 +00:00
|
|
|
ts *types.TipSet
|
2019-08-15 02:30:21 +00:00
|
|
|
tickets []*types.Ticket
|
2019-07-08 23:48:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Miner) GetBestMiningCandidate() (*MiningBase, error) {
|
2019-07-11 02:36:43 +00:00
|
|
|
bts, err := m.api.ChainHead(context.TODO())
|
2019-07-08 23:48:49 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if m.lastWork != nil {
|
|
|
|
if m.lastWork.ts.Equals(bts) {
|
|
|
|
return m.lastWork, nil
|
|
|
|
}
|
|
|
|
|
2019-08-21 23:24:59 +00:00
|
|
|
if types.BigCmp(bts.Weight(), m.lastWork.ts.Weight()) <= 0 {
|
2019-07-08 23:48:49 +00:00
|
|
|
return m.lastWork, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return &MiningBase{
|
|
|
|
ts: bts,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2019-09-18 02:50:03 +00:00
|
|
|
func (m *Miner) mineOne(ctx context.Context, base *MiningBase) (*types.BlockMsg, error) {
|
2019-08-27 18:45:21 +00:00
|
|
|
log.Debug("attempting to mine a block on:", base.ts.Cids())
|
2019-07-08 23:48:49 +00:00
|
|
|
ticket, err := m.scratchTicket(ctx, base)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrap(err, "scratching ticket failed")
|
|
|
|
}
|
|
|
|
|
2019-09-13 21:12:23 +00:00
|
|
|
win, proof, err := gen.IsRoundWinner(ctx, base.ts, append(base.tickets, ticket), m.addresses[0], &m.api)
|
2019-07-08 23:48:49 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrap(err, "failed to check if we win next round")
|
|
|
|
}
|
|
|
|
|
|
|
|
if !win {
|
|
|
|
m.submitNullTicket(base, ticket)
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
b, err := m.createBlock(base, ticket, proof)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrap(err, "failed to create block")
|
|
|
|
}
|
2019-07-11 04:36:10 +00:00
|
|
|
log.Infof("mined new block: %s", b.Cid())
|
2019-07-08 23:48:49 +00:00
|
|
|
|
|
|
|
return b, nil
|
|
|
|
}
|
|
|
|
|
2019-08-15 02:30:21 +00:00
|
|
|
func (m *Miner) submitNullTicket(base *MiningBase, ticket *types.Ticket) {
|
2019-07-08 23:48:49 +00:00
|
|
|
base.tickets = append(base.tickets, ticket)
|
|
|
|
m.lastWork = base
|
|
|
|
}
|
|
|
|
|
2019-08-15 02:30:21 +00:00
|
|
|
func (m *Miner) computeVRF(ctx context.Context, input []byte) ([]byte, error) {
|
2019-08-20 16:50:17 +00:00
|
|
|
w, err := m.getMinerWorker(ctx, m.addresses[0], nil)
|
2019-08-15 02:30:21 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2019-08-16 04:40:59 +00:00
|
|
|
return gen.ComputeVRF(ctx, m.api.WalletSign, w, input)
|
2019-08-15 02:30:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Miner) getMinerWorker(ctx context.Context, addr address.Address, ts *types.TipSet) (address.Address, error) {
|
2019-09-06 06:26:02 +00:00
|
|
|
ret, err := m.api.StateCall(ctx, &types.Message{
|
2019-08-15 02:30:21 +00:00
|
|
|
From: addr,
|
|
|
|
To: addr,
|
|
|
|
Method: actors.MAMethods.GetWorkerAddr,
|
|
|
|
}, ts)
|
|
|
|
if err != nil {
|
|
|
|
return address.Undef, xerrors.Errorf("failed to get miner worker addr: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if ret.ExitCode != 0 {
|
|
|
|
return address.Undef, xerrors.Errorf("failed to get miner worker addr (exit code %d)", ret.ExitCode)
|
|
|
|
}
|
|
|
|
|
|
|
|
w, err := address.NewFromBytes(ret.Return)
|
|
|
|
if err != nil {
|
|
|
|
return address.Undef, xerrors.Errorf("GetWorkerAddr returned malformed address: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return w, nil
|
|
|
|
}
|
|
|
|
|
2019-09-23 15:27:30 +00:00
|
|
|
func delayVDF(delay time.Duration) func(ctx context.Context, input []byte) ([]byte, []byte, error) {
|
|
|
|
return func(ctx context.Context, input []byte) ([]byte, []byte, error) {
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
return nil, nil, ctx.Err()
|
|
|
|
case <-time.After(delay):
|
|
|
|
}
|
2019-07-08 23:48:49 +00:00
|
|
|
|
2019-09-23 15:27:30 +00:00
|
|
|
return vdf.Run(input)
|
|
|
|
}
|
2019-08-15 02:30:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *Miner) scratchTicket(ctx context.Context, base *MiningBase) (*types.Ticket, error) {
|
|
|
|
var lastTicket *types.Ticket
|
|
|
|
if len(base.tickets) > 0 {
|
|
|
|
lastTicket = base.tickets[len(base.tickets)-1]
|
|
|
|
} else {
|
2019-08-16 00:17:09 +00:00
|
|
|
lastTicket = base.ts.MinTicket()
|
2019-08-15 02:30:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
vrfOut, err := m.computeVRF(ctx, lastTicket.VDFResult)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
res, proof, err := m.runVDF(ctx, vrfOut)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return &types.Ticket{
|
|
|
|
VRFProof: vrfOut,
|
|
|
|
VDFResult: res,
|
|
|
|
VDFProof: proof,
|
|
|
|
}, nil
|
2019-07-08 23:48:49 +00:00
|
|
|
}
|
|
|
|
|
2019-09-18 02:50:03 +00:00
|
|
|
func (m *Miner) createBlock(base *MiningBase, ticket *types.Ticket, proof types.ElectionProof) (*types.BlockMsg, error) {
|
2019-07-08 23:48:49 +00:00
|
|
|
|
2019-07-11 02:36:43 +00:00
|
|
|
pending, err := m.api.MpoolPending(context.TODO(), base.ts)
|
2019-07-08 23:48:49 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrapf(err, "failed to get pending messages")
|
|
|
|
}
|
|
|
|
|
2019-09-26 03:48:53 +00:00
|
|
|
msgs, err := m.selectMessages(context.TODO(), base, pending)
|
|
|
|
if err != nil {
|
|
|
|
return nil, xerrors.Errorf("message filtering failed: %w", err)
|
|
|
|
}
|
2019-07-11 02:36:43 +00:00
|
|
|
|
2019-09-09 19:21:37 +00:00
|
|
|
uts := time.Now().Unix() // TODO: put smallest valid timestamp
|
2019-09-06 17:44:09 +00:00
|
|
|
|
2019-07-08 23:48:49 +00:00
|
|
|
// why even return this? that api call could just submit it for us
|
2019-09-06 17:44:09 +00:00
|
|
|
return m.api.MinerCreateBlock(context.TODO(), m.addresses[0], base.ts, append(base.tickets, ticket), proof, msgs, uint64(uts))
|
2019-07-08 23:48:49 +00:00
|
|
|
}
|
|
|
|
|
2019-09-26 03:48:53 +00:00
|
|
|
func (m *Miner) selectMessages(ctx context.Context, base *MiningBase, msgs []*types.SignedMessage) ([]*types.SignedMessage, error) {
|
|
|
|
out := make([]*types.SignedMessage, 0, len(msgs))
|
2019-09-26 03:53:52 +00:00
|
|
|
inclNonces := make(map[address.Address]uint64)
|
2019-09-26 03:48:53 +00:00
|
|
|
for _, msg := range msgs {
|
2019-09-26 03:53:52 +00:00
|
|
|
from := msg.Message.From
|
|
|
|
act, err := m.api.StateGetActor(ctx, from, base.ts)
|
2019-09-26 03:48:53 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, xerrors.Errorf("failed to check message sender balance: %w", err)
|
|
|
|
}
|
|
|
|
|
2019-09-26 03:53:52 +00:00
|
|
|
if _, ok := inclNonces[from]; !ok {
|
|
|
|
inclNonces[from] = act.Nonce
|
|
|
|
}
|
|
|
|
|
2019-09-26 03:48:53 +00:00
|
|
|
if act.Balance.LessThan(msg.Message.RequiredFunds()) {
|
|
|
|
log.Warningf("message in mempool does not have enough funds: %s", msg.Cid())
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-09-26 03:53:52 +00:00
|
|
|
if msg.Message.Nonce > inclNonces[from] {
|
|
|
|
log.Warningf("message in mempool has too high of a nonce: %s", msg.Cid())
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
inclNonces[from] = msg.Message.Nonce
|
|
|
|
|
2019-09-26 03:48:53 +00:00
|
|
|
out = append(out, msg)
|
|
|
|
}
|
|
|
|
return out, nil
|
2019-07-08 23:48:49 +00:00
|
|
|
}
|