1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
|
package miner
import (
"errors"
"fmt"
"sync"
"time"
"github.com/NebulousLabs/Sia/build"
"github.com/NebulousLabs/Sia/crypto"
"github.com/NebulousLabs/Sia/modules"
"github.com/NebulousLabs/Sia/persist"
siasync "github.com/NebulousLabs/Sia/sync"
"github.com/NebulousLabs/Sia/types"
)
var (
errNilCS = errors.New("miner cannot use a nil consensus set")
errNilTpool = errors.New("miner cannot use a nil transaction pool")
errNilWallet = errors.New("miner cannot use a nil wallet")
// HeaderMemory is the number of previous calls to 'header'
// that are remembered. Additionally, 'header' will only poll for a
// new block every 'headerMemory / blockMemory' times it is
// called. This reduces the amount of memory used, but comes at the cost of
// not always having the most recent transactions.
HeaderMemory = build.Select(build.Var{
Standard: 10000,
Dev: 500,
Testing: 50,
}).(int)
// BlockMemory is the maximum number of blocks the miner will store
// Blocks take up to 2 megabytes of memory, which is why this number is
// limited.
BlockMemory = build.Select(build.Var{
Standard: 50,
Dev: 10,
Testing: 5,
}).(int)
// MaxSourceBlockAge is the maximum amount of time that is allowed to
// elapse between generating source blocks.
MaxSourceBlockAge = build.Select(build.Var{
Standard: 30 * time.Second,
Dev: 5 * time.Second,
Testing: 1 * time.Second,
}).(time.Duration)
)
// splitSet defines a transaction set that can be added componenet-wise to a
// block. It's split because it doesn't necessarily represent the full set
// prpovided by the transaction pool. Splits can be sorted so that the largest
// and most valuable sets can be selected when picking transactions.
type splitSet struct {
averageFee types.Currency
size uint64
transactions []types.Transaction
}
type splitSetID int
// Miner struct contains all variables the miner needs
// in order to create and submit blocks.
type Miner struct {
// Module dependencies.
cs modules.ConsensusSet
tpool modules.TransactionPool
wallet modules.Wallet
// BlockManager variables. Becaues blocks are large, one block is used to
// make many headers which can be used by miners. Headers include an
// arbitrary data transaction (appended to the block) to make the merkle
// roots unique (preventing miners from doing redundant work). Every N
// requests or M seconds, a new block is used to create headers.
//
// Only 'blocksMemory' blocks are kept in memory at a time, which
// keeps ram usage reasonable. Miners may request many headers in parallel,
// and thus may be working on different blocks. When they submit the solved
// header to the block manager, the rest of the block needs to be found in
// a lookup.
blockMem map[types.BlockHeader]*types.Block // Mappings from headers to the blocks they are derived from.
arbDataMem map[types.BlockHeader][crypto.EntropySize]byte // Mappings from the headers to their unique arb data.
headerMem []types.BlockHeader // A circular list of headers that have been given out from the api recently.
sourceBlock *types.Block // The block from which new headers for mining are created.
sourceBlockTime time.Time // How long headers have been using the same block (different from 'recent block').
memProgress int // The index of the most recent header used in headerMem.
// Transaction pool variables.
fullSets map[modules.TransactionSetID][]int
blockMapHeap *mapHeap
overflowMapHeap *mapHeap
setCounter int
splitSets map[splitSetID]*splitSet
// CPUMiner variables.
miningOn bool // indicates if the miner is supposed to be running
mining bool // indicates if the miner is actually running
hashRate int64 // indicates hashes per second
// Utils
log *persist.Logger
mu sync.RWMutex
persist persistence
persistDir string
// tg signals the Miner's goroutines to shut down and blocks until all
// goroutines have exited before returning from Close().
tg siasync.ThreadGroup
}
// startupRescan will rescan the blockchain in the event that the miner
// persistence layer has become desynchronized from the consensus persistence
// layer. This might happen if a user replaces any of the folders with backups
// or deletes any of the folders.
func (m *Miner) startupRescan() error {
// Reset all of the variables that have relevance to the consensus set. The
// operations are wrapped by an anonymous function so that the locking can
// be handled using a defer statement.
err := func() error {
m.mu.Lock()
defer m.mu.Unlock()
m.log.Println("Performing a miner rescan.")
m.persist.RecentChange = modules.ConsensusChangeBeginning
m.persist.Height = 0
m.persist.Target = types.Target{}
return m.saveSync()
}()
if err != nil {
return err
}
// Subscribe to the consensus set. This is a blocking call that will not
// return until the miner has fully caught up to the current block.
err = m.cs.ConsensusSetSubscribe(m, modules.ConsensusChangeBeginning)
if err != nil {
return err
}
m.tg.OnStop(func() {
m.cs.Unsubscribe(m)
})
return nil
}
// New returns a ready-to-go miner that is not mining.
func New(cs modules.ConsensusSet, tpool modules.TransactionPool, w modules.Wallet, persistDir string) (*Miner, error) {
// Create the miner and its dependencies.
if cs == nil {
return nil, errNilCS
}
if tpool == nil {
return nil, errNilTpool
}
if w == nil {
return nil, errNilWallet
}
// Assemble the miner. The miner is assembled without an address because
// the wallet is likely not unlocked yet. The miner will grab an address
// after the miner is unlocked (this must be coded manually for each
// function that potentially requires the miner to have an address.
m := &Miner{
cs: cs,
tpool: tpool,
wallet: w,
blockMem: make(map[types.BlockHeader]*types.Block),
arbDataMem: make(map[types.BlockHeader][crypto.EntropySize]byte),
headerMem: make([]types.BlockHeader, HeaderMemory),
fullSets: make(map[modules.TransactionSetID][]int),
splitSets: make(map[splitSetID]*splitSet),
blockMapHeap: &mapHeap{
selectID: make(map[splitSetID]*mapElement),
data: nil,
minHeap: true,
},
overflowMapHeap: &mapHeap{
selectID: make(map[splitSetID]*mapElement),
data: nil,
minHeap: false,
},
persistDir: persistDir,
}
err := m.initPersist()
if err != nil {
return nil, errors.New("miner persistence startup failed: " + err.Error())
}
err = m.cs.ConsensusSetSubscribe(m, m.persist.RecentChange)
if err == modules.ErrInvalidConsensusChangeID {
// Perform a rescan of the consensus set if the change id is not found.
// The id will only be not found if there has been desynchronization
// between the miner and the consensus package.
err = m.startupRescan()
if err != nil {
return nil, errors.New("miner startup failed - rescanning failed: " + err.Error())
}
} else if err != nil {
return nil, errors.New("miner subscription failed: " + err.Error())
}
m.tg.OnStop(func() {
m.cs.Unsubscribe(m)
})
m.tpool.TransactionPoolSubscribe(m)
m.tg.OnStop(func() {
m.tpool.Unsubscribe(m)
})
// Save after synchronizing with consensus
err = m.saveSync()
if err != nil {
return nil, errors.New("miner could not save during startup: " + err.Error())
}
return m, nil
}
// Close terminates all ongoing processes involving the miner, enabling garbage
// collection.
func (m *Miner) Close() error {
if err := m.tg.Stop(); err != nil {
return err
}
m.mu.Lock()
defer m.mu.Unlock()
m.cs.Unsubscribe(m)
var errs []error
if err := m.saveSync(); err != nil {
errs = append(errs, fmt.Errorf("save failed: %v", err))
}
if err := m.log.Close(); err != nil {
errs = append(errs, fmt.Errorf("log.Close failed: %v", err))
}
return build.JoinErrors(errs, "; ")
}
// checkAddress checks that the miner has an address, fetching an address from
// the wallet if not.
func (m *Miner) checkAddress() error {
if m.persist.Address != (types.UnlockHash{}) {
return nil
}
uc, err := m.wallet.NextAddress()
if err != nil {
return err
}
m.persist.Address = uc.UnlockHash()
return nil
}
// BlocksMined returns the number of good blocks and stale blocks that have
// been mined by the miner.
func (m *Miner) BlocksMined() (goodBlocks, staleBlocks int) {
if err := m.tg.Add(); err != nil {
build.Critical(err)
}
defer m.tg.Done()
m.mu.Lock()
defer m.mu.Unlock()
for _, blockID := range m.persist.BlocksFound {
if m.cs.InCurrentPath(blockID) {
goodBlocks++
} else {
staleBlocks++
}
}
return
}
|