]> Git Repo - VerusCoin.git/blame - src/main.cpp
The synchronization progress bar now compares the amount of total blocks to amount...
[VerusCoin.git] / src / main.cpp
CommitLineData
0a61b0df 1// Copyright (c) 2009-2010 Satoshi Nakamoto
b2120e22 2// Copyright (c) 2011 The Bitcoin developers
0a61b0df 3// Distributed under the MIT/X11 software license, see the accompanying
4// file license.txt or http://www.opensource.org/licenses/mit-license.php.
0a61b0df 5#include "headers.h"
1512d5ce 6#include "db.h"
40c2614e 7#include "net.h"
edd309e5 8#include "init.h"
0a61b0df 9#include "cryptopp/sha.h"
926e14b3 10#include <boost/filesystem.hpp>
31f29312 11#include <boost/filesystem/fstream.hpp>
0a61b0df 12
223b6f1b
WL
13using namespace std;
14using namespace boost;
0a61b0df 15
16//
17// Global state
18//
19
64c7ee7e
PW
20CCriticalSection cs_setpwalletRegistered;
21set<CWallet*> setpwalletRegistered;
22
0a61b0df 23CCriticalSection cs_main;
24
99860de3 25static map<uint256, CTransaction> mapTransactions;
0a61b0df 26CCriticalSection cs_mapTransactions;
27unsigned int nTransactionsUpdated = 0;
28map<COutPoint, CInPoint> mapNextTx;
29
30map<uint256, CBlockIndex*> mapBlockIndex;
5cbf7532 31uint256 hashGenesisBlock("0x000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f");
99860de3 32static CBigNum bnProofOfWorkLimit(~uint256(0) >> 32);
d0d9486f 33const int nTotalBlocksEstimate = 140700; // Conservative estimate of total nr of blocks on main chain
c5aa1b13 34int nMaxBlocksOfOtherNodes = 0; // Maximum amount of blocks that other nodes claim to have
d547a443 35const int nInitialBlockThreshold = 120; // Regard blocks up until N-threshold as "initial download"
0a61b0df 36CBlockIndex* pindexGenesisBlock = NULL;
37int nBestHeight = -1;
38CBigNum bnBestChainWork = 0;
39CBigNum bnBestInvalidWork = 0;
40uint256 hashBestChain = 0;
41CBlockIndex* pindexBest = NULL;
42int64 nTimeBestReceived = 0;
43
44map<uint256, CBlock*> mapOrphanBlocks;
45multimap<uint256, CBlock*> mapOrphanBlocksByPrev;
46
47map<uint256, CDataStream*> mapOrphanTransactions;
48multimap<uint256, CDataStream*> mapOrphanTransactionsByPrev;
49
0a61b0df 50
51double dHashesPerSec;
52int64 nHPSTimerStart;
53
54// Settings
55int fGenerateBitcoins = false;
56int64 nTransactionFee = 0;
0a61b0df 57int fLimitProcessors = false;
58int nLimitProcessors = 1;
59int fMinimizeToTray = true;
60int fMinimizeOnClose = true;
8bb5edc1
MC
61#if USE_UPNP
62int fUseUPnP = true;
63#else
64int fUseUPnP = false;
65#endif
8bb5edc1 66
0a61b0df 67
68
69
70
71
72
64c7ee7e
PW
73//////////////////////////////////////////////////////////////////////////////
74//
75// dispatching functions
76//
77
78void RegisterWallet(CWallet* pwalletIn)
79{
80 CRITICAL_BLOCK(cs_setpwalletRegistered)
81 {
82 setpwalletRegistered.insert(pwalletIn);
83 }
84}
85
86void UnregisterWallet(CWallet* pwalletIn)
87{
88 CRITICAL_BLOCK(cs_setpwalletRegistered)
89 {
90 setpwalletRegistered.erase(pwalletIn);
91 }
92}
93
94bool static IsFromMe(CTransaction& tx)
95{
96 BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
97 if (pwallet->IsFromMe(tx))
98 return true;
99 return false;
100}
101
102bool static GetTransaction(const uint256& hashTx, CWalletTx& wtx)
103{
104 BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
105 if (pwallet->GetTransaction(hashTx,wtx))
106 return true;
107 return false;
108}
109
110void static EraseFromWallets(uint256 hash)
111{
112 BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
113 pwallet->EraseFromWallet(hash);
114}
115
116void static SyncWithWallets(const CTransaction& tx, const CBlock* pblock = NULL, bool fUpdate = false)
117{
118 BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
119 pwallet->AddToWalletIfInvolvingMe(tx, pblock, fUpdate);
120}
121
122void static SetBestChain(const CBlockLocator& loc)
123{
124 BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
125 pwallet->SetBestChain(loc);
126}
127
128void static UpdatedTransaction(const uint256& hashTx)
129{
130 BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
131 pwallet->UpdatedTransaction(hashTx);
132}
133
134void static PrintWallets(const CBlock& block)
135{
136 BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
137 pwallet->PrintWallet(block);
138}
139
140void static Inventory(const uint256& hash)
141{
142 BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
143 pwallet->Inventory(hash);
144}
145
146void static ResendWalletTransactions()
147{
148 BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
149 pwallet->ResendWalletTransactions();
150}
151
152
153
154
155
156
157
0a61b0df 158//////////////////////////////////////////////////////////////////////////////
159//
160// mapOrphanTransactions
161//
162
64c7ee7e 163void static AddOrphanTx(const CDataStream& vMsg)
0a61b0df 164{
165 CTransaction tx;
166 CDataStream(vMsg) >> tx;
167 uint256 hash = tx.GetHash();
168 if (mapOrphanTransactions.count(hash))
169 return;
170 CDataStream* pvMsg = mapOrphanTransactions[hash] = new CDataStream(vMsg);
223b6f1b 171 BOOST_FOREACH(const CTxIn& txin, tx.vin)
0a61b0df 172 mapOrphanTransactionsByPrev.insert(make_pair(txin.prevout.hash, pvMsg));
173}
174
64c7ee7e 175void static EraseOrphanTx(uint256 hash)
0a61b0df 176{
177 if (!mapOrphanTransactions.count(hash))
178 return;
179 const CDataStream* pvMsg = mapOrphanTransactions[hash];
180 CTransaction tx;
181 CDataStream(*pvMsg) >> tx;
223b6f1b 182 BOOST_FOREACH(const CTxIn& txin, tx.vin)
0a61b0df 183 {
184 for (multimap<uint256, CDataStream*>::iterator mi = mapOrphanTransactionsByPrev.lower_bound(txin.prevout.hash);
185 mi != mapOrphanTransactionsByPrev.upper_bound(txin.prevout.hash);)
186 {
187 if ((*mi).second == pvMsg)
188 mapOrphanTransactionsByPrev.erase(mi++);
189 else
190 mi++;
191 }
192 }
193 delete pvMsg;
194 mapOrphanTransactions.erase(hash);
195}
196
197
198
199
200
201
202
203
204//////////////////////////////////////////////////////////////////////////////
205//
395c1f44 206// CTransaction and CTxIndex
0a61b0df 207//
208
461764cb 209bool CTransaction::ReadFromDisk(CTxDB& txdb, COutPoint prevout, CTxIndex& txindexRet)
210{
211 SetNull();
212 if (!txdb.ReadTxIndex(prevout.hash, txindexRet))
213 return false;
214 if (!ReadFromDisk(txindexRet.pos))
215 return false;
216 if (prevout.n >= vout.size())
217 {
218 SetNull();
219 return false;
220 }
221 return true;
222}
223
224bool CTransaction::ReadFromDisk(CTxDB& txdb, COutPoint prevout)
225{
226 CTxIndex txindex;
227 return ReadFromDisk(txdb, prevout, txindex);
228}
229
230bool CTransaction::ReadFromDisk(COutPoint prevout)
231{
232 CTxDB txdb("r");
233 CTxIndex txindex;
234 return ReadFromDisk(txdb, prevout, txindex);
235}
236
0a61b0df 237
238
239int CMerkleTx::SetMerkleBranch(const CBlock* pblock)
240{
241 if (fClient)
242 {
243 if (hashBlock == 0)
244 return 0;
245 }
246 else
247 {
248 CBlock blockTmp;
249 if (pblock == NULL)
250 {
251 // Load the block this tx is in
252 CTxIndex txindex;
253 if (!CTxDB("r").ReadTxIndex(GetHash(), txindex))
254 return 0;
255 if (!blockTmp.ReadFromDisk(txindex.pos.nFile, txindex.pos.nBlockPos))
256 return 0;
257 pblock = &blockTmp;
258 }
259
260 // Update the tx's hashBlock
261 hashBlock = pblock->GetHash();
262
263 // Locate the transaction
264 for (nIndex = 0; nIndex < pblock->vtx.size(); nIndex++)
265 if (pblock->vtx[nIndex] == *(CTransaction*)this)
266 break;
267 if (nIndex == pblock->vtx.size())
268 {
269 vMerkleBranch.clear();
270 nIndex = -1;
271 printf("ERROR: SetMerkleBranch() : couldn't find tx in block\n");
272 return 0;
273 }
274
275 // Fill in merkle branch
276 vMerkleBranch = pblock->GetMerkleBranch(nIndex);
277 }
278
279 // Is the tx in a block that's in the main chain
280 map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashBlock);
281 if (mi == mapBlockIndex.end())
282 return 0;
283 CBlockIndex* pindex = (*mi).second;
284 if (!pindex || !pindex->IsInMainChain())
285 return 0;
286
287 return pindexBest->nHeight - pindex->nHeight + 1;
288}
289
290
291
0a61b0df 292
293
294
295
a790fa46 296bool CTransaction::CheckTransaction() const
297{
298 // Basic checks that don't depend on any context
d0d9486f
F
299 if (vin.empty())
300 return error("CTransaction::CheckTransaction() : vin empty");
301 if (vout.empty())
302 return error("CTransaction::CheckTransaction() : vout empty");
a790fa46 303 // Size limits
304 if (::GetSerializeSize(*this, SER_NETWORK) > MAX_BLOCK_SIZE)
305 return error("CTransaction::CheckTransaction() : size limits failed");
306
307 // Check for negative or overflow output values
308 int64 nValueOut = 0;
223b6f1b 309 BOOST_FOREACH(const CTxOut& txout, vout)
a790fa46 310 {
311 if (txout.nValue < 0)
312 return error("CTransaction::CheckTransaction() : txout.nValue negative");
313 if (txout.nValue > MAX_MONEY)
314 return error("CTransaction::CheckTransaction() : txout.nValue too high");
315 nValueOut += txout.nValue;
316 if (!MoneyRange(nValueOut))
317 return error("CTransaction::CheckTransaction() : txout total out of range");
318 }
319
33208fb5
MC
320 // Check for duplicate inputs
321 set<COutPoint> vInOutPoints;
322 BOOST_FOREACH(const CTxIn& txin, vin)
323 {
324 if (vInOutPoints.count(txin.prevout))
325 return false;
326 vInOutPoints.insert(txin.prevout);
327 }
328
a790fa46 329 if (IsCoinBase())
330 {
331 if (vin[0].scriptSig.size() < 2 || vin[0].scriptSig.size() > 100)
332 return error("CTransaction::CheckTransaction() : coinbase script size");
333 }
334 else
335 {
223b6f1b 336 BOOST_FOREACH(const CTxIn& txin, vin)
a790fa46 337 if (txin.prevout.IsNull())
338 return error("CTransaction::CheckTransaction() : prevout is null");
339 }
340
341 return true;
342}
343
f1e1fb4b 344bool CTransaction::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs, bool* pfMissingInputs)
0a61b0df 345{
346 if (pfMissingInputs)
347 *pfMissingInputs = false;
348
a790fa46 349 if (!CheckTransaction())
350 return error("AcceptToMemoryPool() : CheckTransaction failed");
351
0a61b0df 352 // Coinbase is only valid in a block, not as a loose transaction
353 if (IsCoinBase())
f1e1fb4b 354 return error("AcceptToMemoryPool() : coinbase as individual tx");
0a61b0df 355
0a61b0df 356 // To help v0.1.5 clients who would see it as a negative number
357 if ((int64)nLockTime > INT_MAX)
f1e1fb4b 358 return error("AcceptToMemoryPool() : not accepting nLockTime beyond 2038 yet");
359
97ee01ad 360 // Safety limits
361 unsigned int nSize = ::GetSerializeSize(*this, SER_NETWORK);
b931ed85
GA
362 // Checking ECDSA signatures is a CPU bottleneck, so to avoid denial-of-service
363 // attacks disallow transactions with more than one SigOp per 34 bytes.
364 // 34 bytes because a TxOut is:
365 // 20-byte address + 8 byte bitcoin amount + 5 bytes of ops + 1 byte script length
366 if (GetSigOpCount() > nSize / 34 || nSize < 100)
f1e1fb4b 367 return error("AcceptToMemoryPool() : nonstandard transaction");
0a61b0df 368
5ec05f0a
GA
369 // Rather not work on nonstandard transactions (unless -testnet)
370 if (!fTestNet && !IsStandard())
97ee01ad 371 return error("AcceptToMemoryPool() : nonstandard transaction type");
372
0a61b0df 373 // Do we already have it?
374 uint256 hash = GetHash();
375 CRITICAL_BLOCK(cs_mapTransactions)
376 if (mapTransactions.count(hash))
377 return false;
378 if (fCheckInputs)
379 if (txdb.ContainsTx(hash))
380 return false;
381
382 // Check for conflicts with in-memory transactions
383 CTransaction* ptxOld = NULL;
384 for (int i = 0; i < vin.size(); i++)
385 {
386 COutPoint outpoint = vin[i].prevout;
387 if (mapNextTx.count(outpoint))
388 {
389 // Disable replacement feature for now
390 return false;
391
392 // Allow replacing with a newer version of the same transaction
393 if (i != 0)
394 return false;
395 ptxOld = mapNextTx[outpoint].ptx;
683bcb91 396 if (ptxOld->IsFinal())
397 return false;
0a61b0df 398 if (!IsNewerThan(*ptxOld))
399 return false;
400 for (int i = 0; i < vin.size(); i++)
401 {
402 COutPoint outpoint = vin[i].prevout;
403 if (!mapNextTx.count(outpoint) || mapNextTx[outpoint].ptx != ptxOld)
404 return false;
405 }
406 break;
407 }
408 }
409
97ee01ad 410 if (fCheckInputs)
0a61b0df 411 {
97ee01ad 412 // Check against previous transactions
413 map<uint256, CTxIndex> mapUnused;
414 int64 nFees = 0;
415 if (!ConnectInputs(txdb, mapUnused, CDiskTxPos(1,1,1), pindexBest, nFees, false, false))
416 {
417 if (pfMissingInputs)
418 *pfMissingInputs = true;
419 return error("AcceptToMemoryPool() : ConnectInputs failed %s", hash.ToString().substr(0,10).c_str());
420 }
421
422 // Don't accept it if it can't get into a block
12a1256c 423 if (nFees < GetMinFee(1000, true, true))
97ee01ad 424 return error("AcceptToMemoryPool() : not enough fees");
425
5de8b54c 426 // Continuously rate-limit free transactions
88abf703
GA
427 // This mitigates 'penny-flooding' -- sending thousands of free transactions just to
428 // be annoying or make other's transactions take longer to confirm.
2bfda1be 429 if (nFees < MIN_RELAY_TX_FEE)
97ee01ad 430 {
88abf703 431 static CCriticalSection cs;
5de8b54c
GA
432 static double dFreeCount;
433 static int64 nLastTime;
434 int64 nNow = GetTime();
88abf703
GA
435
436 CRITICAL_BLOCK(cs)
97ee01ad 437 {
88abf703
GA
438 // Use an exponentially decaying ~10-minute window:
439 dFreeCount *= pow(1.0 - 1.0/600.0, (double)(nNow - nLastTime));
440 nLastTime = nNow;
441 // -limitfreerelay unit is thousand-bytes-per-minute
442 // At default rate it would take over a month to fill 1GB
64c7ee7e 443 if (dFreeCount > GetArg("-limitfreerelay", 15)*10*1000 && !IsFromMe(*this))
88abf703
GA
444 return error("AcceptToMemoryPool() : free transaction rejected by rate limiter");
445 if (fDebug)
446 printf("Rate limit dFreeCount: %g => %g\n", dFreeCount, dFreeCount+nSize);
447 dFreeCount += nSize;
97ee01ad 448 }
97ee01ad 449 }
0a61b0df 450 }
451
452 // Store transaction in memory
453 CRITICAL_BLOCK(cs_mapTransactions)
454 {
455 if (ptxOld)
456 {
f1e1fb4b 457 printf("AcceptToMemoryPool() : replacing tx %s with new version\n", ptxOld->GetHash().ToString().c_str());
0a61b0df 458 ptxOld->RemoveFromMemoryPool();
459 }
f1e1fb4b 460 AddToMemoryPoolUnchecked();
0a61b0df 461 }
462
463 ///// are we sure this is ok when loading transactions or restoring block txes
464 // If updated, erase old tx from wallet
465 if (ptxOld)
64c7ee7e 466 EraseFromWallets(ptxOld->GetHash());
0a61b0df 467
b22c8842 468 printf("AcceptToMemoryPool(): accepted %s\n", hash.ToString().substr(0,10).c_str());
0a61b0df 469 return true;
470}
471
e89b9f6a
PW
472bool CTransaction::AcceptToMemoryPool(bool fCheckInputs, bool* pfMissingInputs)
473{
474 CTxDB txdb("r");
475 return AcceptToMemoryPool(txdb, fCheckInputs, pfMissingInputs);
476}
0a61b0df 477
f1e1fb4b 478bool CTransaction::AddToMemoryPoolUnchecked()
0a61b0df 479{
480 // Add to memory pool without checking anything. Don't call this directly,
f1e1fb4b 481 // call AcceptToMemoryPool to properly check the transaction first.
0a61b0df 482 CRITICAL_BLOCK(cs_mapTransactions)
483 {
484 uint256 hash = GetHash();
485 mapTransactions[hash] = *this;
486 for (int i = 0; i < vin.size(); i++)
487 mapNextTx[vin[i].prevout] = CInPoint(&mapTransactions[hash], i);
488 nTransactionsUpdated++;
489 }
490 return true;
491}
492
493
494bool CTransaction::RemoveFromMemoryPool()
495{
496 // Remove transaction from memory pool
497 CRITICAL_BLOCK(cs_mapTransactions)
498 {
223b6f1b 499 BOOST_FOREACH(const CTxIn& txin, vin)
0a61b0df 500 mapNextTx.erase(txin.prevout);
501 mapTransactions.erase(GetHash());
502 nTransactionsUpdated++;
503 }
504 return true;
505}
506
507
508
509
510
511
512int CMerkleTx::GetDepthInMainChain(int& nHeightRet) const
513{
514 if (hashBlock == 0 || nIndex == -1)
515 return 0;
516
517 // Find the block it claims to be in
518 map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashBlock);
519 if (mi == mapBlockIndex.end())
520 return 0;
521 CBlockIndex* pindex = (*mi).second;
522 if (!pindex || !pindex->IsInMainChain())
523 return 0;
524
525 // Make sure the merkle branch connects to this block
526 if (!fMerkleVerified)
527 {
528 if (CBlock::CheckMerkleBranch(GetHash(), vMerkleBranch, nIndex) != pindex->hashMerkleRoot)
529 return 0;
530 fMerkleVerified = true;
531 }
532
533 nHeightRet = pindex->nHeight;
534 return pindexBest->nHeight - pindex->nHeight + 1;
535}
536
537
538int CMerkleTx::GetBlocksToMaturity() const
539{
540 if (!IsCoinBase())
541 return 0;
542 return max(0, (COINBASE_MATURITY+20) - GetDepthInMainChain());
543}
544
545
f1e1fb4b 546bool CMerkleTx::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs)
0a61b0df 547{
548 if (fClient)
549 {
550 if (!IsInMainChain() && !ClientConnectInputs())
551 return false;
f1e1fb4b 552 return CTransaction::AcceptToMemoryPool(txdb, false);
0a61b0df 553 }
554 else
555 {
f1e1fb4b 556 return CTransaction::AcceptToMemoryPool(txdb, fCheckInputs);
0a61b0df 557 }
558}
559
e89b9f6a
PW
560bool CMerkleTx::AcceptToMemoryPool()
561{
562 CTxDB txdb("r");
563 return AcceptToMemoryPool(txdb);
564}
565
0a61b0df 566
567
568bool CWalletTx::AcceptWalletTransaction(CTxDB& txdb, bool fCheckInputs)
569{
570 CRITICAL_BLOCK(cs_mapTransactions)
571 {
f1e1fb4b 572 // Add previous supporting transactions first
223b6f1b 573 BOOST_FOREACH(CMerkleTx& tx, vtxPrev)
0a61b0df 574 {
575 if (!tx.IsCoinBase())
576 {
577 uint256 hash = tx.GetHash();
578 if (!mapTransactions.count(hash) && !txdb.ContainsTx(hash))
f1e1fb4b 579 tx.AcceptToMemoryPool(txdb, fCheckInputs);
0a61b0df 580 }
581 }
f1e1fb4b 582 return AcceptToMemoryPool(txdb, fCheckInputs);
0a61b0df 583 }
f1e1fb4b 584 return false;
0a61b0df 585}
586
e89b9f6a 587bool CWalletTx::AcceptWalletTransaction()
0a61b0df 588{
0a61b0df 589 CTxDB txdb("r");
e89b9f6a 590 return AcceptWalletTransaction(txdb);
0a61b0df 591}
592
395c1f44
GA
593int CTxIndex::GetDepthInMainChain() const
594{
595 // Read block header
596 CBlock block;
597 if (!block.ReadFromDisk(pos.nFile, pos.nBlockPos, false))
598 return 0;
599 // Find the block in the index
600 map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(block.GetHash());
601 if (mi == mapBlockIndex.end())
602 return 0;
603 CBlockIndex* pindex = (*mi).second;
604 if (!pindex || !pindex->IsInMainChain())
605 return 0;
606 return 1 + nBestHeight - pindex->nHeight;
607}
608
0a61b0df 609
610
611
612
613
614
615
616
617
618//////////////////////////////////////////////////////////////////////////////
619//
620// CBlock and CBlockIndex
621//
622
623bool CBlock::ReadFromDisk(const CBlockIndex* pindex, bool fReadTransactions)
624{
f03304a9 625 if (!fReadTransactions)
626 {
627 *this = pindex->GetBlockHeader();
628 return true;
629 }
0a61b0df 630 if (!ReadFromDisk(pindex->nFile, pindex->nBlockPos, fReadTransactions))
631 return false;
632 if (GetHash() != pindex->GetBlockHash())
633 return error("CBlock::ReadFromDisk() : GetHash() doesn't match index");
634 return true;
635}
636
64c7ee7e 637uint256 static GetOrphanRoot(const CBlock* pblock)
0a61b0df 638{
639 // Work back to the first block in the orphan chain
640 while (mapOrphanBlocks.count(pblock->hashPrevBlock))
641 pblock = mapOrphanBlocks[pblock->hashPrevBlock];
642 return pblock->GetHash();
643}
644
64c7ee7e 645int64 static GetBlockValue(int nHeight, int64 nFees)
0a61b0df 646{
647 int64 nSubsidy = 50 * COIN;
648
649 // Subsidy is cut in half every 4 years
650 nSubsidy >>= (nHeight / 210000);
651
652 return nSubsidy + nFees;
653}
654
64c7ee7e 655unsigned int static GetNextWorkRequired(const CBlockIndex* pindexLast)
0a61b0df 656{
657 const int64 nTargetTimespan = 14 * 24 * 60 * 60; // two weeks
658 const int64 nTargetSpacing = 10 * 60;
659 const int64 nInterval = nTargetTimespan / nTargetSpacing;
660
661 // Genesis block
662 if (pindexLast == NULL)
663 return bnProofOfWorkLimit.GetCompact();
664
665 // Only change once per interval
666 if ((pindexLast->nHeight+1) % nInterval != 0)
667 return pindexLast->nBits;
668
669 // Go back by what we want to be 14 days worth of blocks
670 const CBlockIndex* pindexFirst = pindexLast;
671 for (int i = 0; pindexFirst && i < nInterval-1; i++)
672 pindexFirst = pindexFirst->pprev;
673 assert(pindexFirst);
674
675 // Limit adjustment step
676 int64 nActualTimespan = pindexLast->GetBlockTime() - pindexFirst->GetBlockTime();
677 printf(" nActualTimespan = %"PRI64d" before bounds\n", nActualTimespan);
678 if (nActualTimespan < nTargetTimespan/4)
679 nActualTimespan = nTargetTimespan/4;
680 if (nActualTimespan > nTargetTimespan*4)
681 nActualTimespan = nTargetTimespan*4;
682
683 // Retarget
684 CBigNum bnNew;
685 bnNew.SetCompact(pindexLast->nBits);
686 bnNew *= nActualTimespan;
687 bnNew /= nTargetTimespan;
688
689 if (bnNew > bnProofOfWorkLimit)
690 bnNew = bnProofOfWorkLimit;
691
692 /// debug print
693 printf("GetNextWorkRequired RETARGET\n");
694 printf("nTargetTimespan = %"PRI64d" nActualTimespan = %"PRI64d"\n", nTargetTimespan, nActualTimespan);
695 printf("Before: %08x %s\n", pindexLast->nBits, CBigNum().SetCompact(pindexLast->nBits).getuint256().ToString().c_str());
696 printf("After: %08x %s\n", bnNew.GetCompact(), bnNew.getuint256().ToString().c_str());
697
698 return bnNew.GetCompact();
699}
700
701bool CheckProofOfWork(uint256 hash, unsigned int nBits)
702{
703 CBigNum bnTarget;
704 bnTarget.SetCompact(nBits);
705
706 // Check range
707 if (bnTarget <= 0 || bnTarget > bnProofOfWorkLimit)
708 return error("CheckProofOfWork() : nBits below minimum work");
709
710 // Check proof of work matches claimed amount
711 if (hash > bnTarget.getuint256())
712 return error("CheckProofOfWork() : hash doesn't match nBits");
713
714 return true;
715}
716
eade2131
WL
717// Return conservative estimate of total number of blocks, 0 if unknown
718int GetTotalBlocksEstimate()
719{
720 if(fTestNet)
721 {
722 return 0;
723 }
724 else
725 {
726 return nTotalBlocksEstimate;
727 }
728}
729
c5aa1b13
WL
730// Return maximum amount of blocks that other nodes claim to have
731int GetMaxBlocksOfOtherNodes()
732{
733 return nMaxBlocksOfOtherNodes;
734}
735
0a61b0df 736bool IsInitialBlockDownload()
737{
eade2131 738 if (pindexBest == NULL || nBestHeight < (GetTotalBlocksEstimate()-nInitialBlockThreshold))
0a61b0df 739 return true;
740 static int64 nLastUpdate;
741 static CBlockIndex* pindexLastBest;
742 if (pindexBest != pindexLastBest)
743 {
744 pindexLastBest = pindexBest;
745 nLastUpdate = GetTime();
746 }
747 return (GetTime() - nLastUpdate < 10 &&
748 pindexBest->GetBlockTime() < GetTime() - 24 * 60 * 60);
749}
750
64c7ee7e 751void static InvalidChainFound(CBlockIndex* pindexNew)
0a61b0df 752{
753 if (pindexNew->bnChainWork > bnBestInvalidWork)
754 {
755 bnBestInvalidWork = pindexNew->bnChainWork;
756 CTxDB().WriteBestInvalidWork(bnBestInvalidWork);
757 MainFrameRepaint();
758 }
759 printf("InvalidChainFound: invalid block=%s height=%d work=%s\n", pindexNew->GetBlockHash().ToString().substr(0,20).c_str(), pindexNew->nHeight, pindexNew->bnChainWork.ToString().c_str());
760 printf("InvalidChainFound: current best=%s height=%d work=%s\n", hashBestChain.ToString().substr(0,20).c_str(), nBestHeight, bnBestChainWork.ToString().c_str());
761 if (pindexBest && bnBestInvalidWork > bnBestChainWork + pindexBest->GetBlockWork() * 6)
762 printf("InvalidChainFound: WARNING: Displayed transactions may not be correct! You may need to upgrade, or other nodes may need to upgrade.\n");
763}
764
765
766
767
768
769
770
771
772
773
774
775bool CTransaction::DisconnectInputs(CTxDB& txdb)
776{
777 // Relinquish previous transactions' spent pointers
778 if (!IsCoinBase())
779 {
223b6f1b 780 BOOST_FOREACH(const CTxIn& txin, vin)
0a61b0df 781 {
782 COutPoint prevout = txin.prevout;
783
784 // Get prev txindex from disk
785 CTxIndex txindex;
786 if (!txdb.ReadTxIndex(prevout.hash, txindex))
787 return error("DisconnectInputs() : ReadTxIndex failed");
788
789 if (prevout.n >= txindex.vSpent.size())
790 return error("DisconnectInputs() : prevout.n out of range");
791
792 // Mark outpoint as not spent
793 txindex.vSpent[prevout.n].SetNull();
794
795 // Write back
b22c8842 796 if (!txdb.UpdateTxIndex(prevout.hash, txindex))
797 return error("DisconnectInputs() : UpdateTxIndex failed");
0a61b0df 798 }
799 }
800
801 // Remove transaction from index
802 if (!txdb.EraseTxIndex(*this))
803 return error("DisconnectInputs() : EraseTxPos failed");
804
805 return true;
806}
807
808
809bool CTransaction::ConnectInputs(CTxDB& txdb, map<uint256, CTxIndex>& mapTestPool, CDiskTxPos posThisTx,
810 CBlockIndex* pindexBlock, int64& nFees, bool fBlock, bool fMiner, int64 nMinFee)
811{
812 // Take over previous transactions' spent pointers
813 if (!IsCoinBase())
814 {
815 int64 nValueIn = 0;
816 for (int i = 0; i < vin.size(); i++)
817 {
818 COutPoint prevout = vin[i].prevout;
819
820 // Read txindex
821 CTxIndex txindex;
822 bool fFound = true;
e077cce6 823 if ((fBlock || fMiner) && mapTestPool.count(prevout.hash))
0a61b0df 824 {
825 // Get txindex from current proposed changes
826 txindex = mapTestPool[prevout.hash];
827 }
828 else
829 {
830 // Read txindex from txdb
831 fFound = txdb.ReadTxIndex(prevout.hash, txindex);
832 }
833 if (!fFound && (fBlock || fMiner))
b22c8842 834 return fMiner ? false : error("ConnectInputs() : %s prev tx %s index entry not found", GetHash().ToString().substr(0,10).c_str(), prevout.hash.ToString().substr(0,10).c_str());
0a61b0df 835
836 // Read txPrev
837 CTransaction txPrev;
838 if (!fFound || txindex.pos == CDiskTxPos(1,1,1))
839 {
840 // Get prev tx from single transactions in memory
841 CRITICAL_BLOCK(cs_mapTransactions)
842 {
843 if (!mapTransactions.count(prevout.hash))
b22c8842 844 return error("ConnectInputs() : %s mapTransactions prev not found %s", GetHash().ToString().substr(0,10).c_str(), prevout.hash.ToString().substr(0,10).c_str());
0a61b0df 845 txPrev = mapTransactions[prevout.hash];
846 }
847 if (!fFound)
848 txindex.vSpent.resize(txPrev.vout.size());
849 }
850 else
851 {
852 // Get prev tx from disk
853 if (!txPrev.ReadFromDisk(txindex.pos))
b22c8842 854 return error("ConnectInputs() : %s ReadFromDisk prev tx %s failed", GetHash().ToString().substr(0,10).c_str(), prevout.hash.ToString().substr(0,10).c_str());
0a61b0df 855 }
856
857 if (prevout.n >= txPrev.vout.size() || prevout.n >= txindex.vSpent.size())
b22c8842 858 return error("ConnectInputs() : %s prevout.n out of range %d %d %d prev tx %s\n%s", GetHash().ToString().substr(0,10).c_str(), prevout.n, txPrev.vout.size(), txindex.vSpent.size(), prevout.hash.ToString().substr(0,10).c_str(), txPrev.ToString().c_str());
0a61b0df 859
860 // If prev is coinbase, check that it's matured
861 if (txPrev.IsCoinBase())
862 for (CBlockIndex* pindex = pindexBlock; pindex && pindexBlock->nHeight - pindex->nHeight < COINBASE_MATURITY; pindex = pindex->pprev)
863 if (pindex->nBlockPos == txindex.pos.nBlockPos && pindex->nFile == txindex.pos.nFile)
864 return error("ConnectInputs() : tried to spend coinbase at depth %d", pindexBlock->nHeight - pindex->nHeight);
865
866 // Verify signature
867 if (!VerifySignature(txPrev, *this, i))
b22c8842 868 return error("ConnectInputs() : %s VerifySignature failed", GetHash().ToString().substr(0,10).c_str());
0a61b0df 869
870 // Check for conflicts
871 if (!txindex.vSpent[prevout.n].IsNull())
b22c8842 872 return fMiner ? false : error("ConnectInputs() : %s prev tx already used at %s", GetHash().ToString().substr(0,10).c_str(), txindex.vSpent[prevout.n].ToString().c_str());
0a61b0df 873
a790fa46 874 // Check for negative or overflow input values
875 nValueIn += txPrev.vout[prevout.n].nValue;
876 if (!MoneyRange(txPrev.vout[prevout.n].nValue) || !MoneyRange(nValueIn))
877 return error("ConnectInputs() : txin values out of range");
878
0a61b0df 879 // Mark outpoints as spent
880 txindex.vSpent[prevout.n] = posThisTx;
881
882 // Write back
e077cce6 883 if (fBlock || fMiner)
b22c8842 884 {
0a61b0df 885 mapTestPool[prevout.hash] = txindex;
b22c8842 886 }
0a61b0df 887 }
888
889 if (nValueIn < GetValueOut())
b22c8842 890 return error("ConnectInputs() : %s value in < value out", GetHash().ToString().substr(0,10).c_str());
0a61b0df 891
892 // Tally transaction fees
893 int64 nTxFee = nValueIn - GetValueOut();
894 if (nTxFee < 0)
b22c8842 895 return error("ConnectInputs() : %s nTxFee < 0", GetHash().ToString().substr(0,10).c_str());
0a61b0df 896 if (nTxFee < nMinFee)
897 return false;
898 nFees += nTxFee;
f1e1fb4b 899 if (!MoneyRange(nFees))
900 return error("ConnectInputs() : nFees out of range");
0a61b0df 901 }
902
903 if (fBlock)
904 {
e077cce6
GA
905 // Add transaction to changes
906 mapTestPool[GetHash()] = CTxIndex(posThisTx, vout.size());
0a61b0df 907 }
908 else if (fMiner)
909 {
910 // Add transaction to test pool
911 mapTestPool[GetHash()] = CTxIndex(CDiskTxPos(1,1,1), vout.size());
912 }
913
914 return true;
915}
916
917
918bool CTransaction::ClientConnectInputs()
919{
920 if (IsCoinBase())
921 return false;
922
923 // Take over previous transactions' spent pointers
924 CRITICAL_BLOCK(cs_mapTransactions)
925 {
926 int64 nValueIn = 0;
927 for (int i = 0; i < vin.size(); i++)
928 {
929 // Get prev tx from single transactions in memory
930 COutPoint prevout = vin[i].prevout;
931 if (!mapTransactions.count(prevout.hash))
932 return false;
933 CTransaction& txPrev = mapTransactions[prevout.hash];
934
935 if (prevout.n >= txPrev.vout.size())
936 return false;
937
938 // Verify signature
939 if (!VerifySignature(txPrev, *this, i))
940 return error("ConnectInputs() : VerifySignature failed");
941
942 ///// this is redundant with the mapNextTx stuff, not sure which I want to get rid of
943 ///// this has to go away now that posNext is gone
944 // // Check for conflicts
945 // if (!txPrev.vout[prevout.n].posNext.IsNull())
946 // return error("ConnectInputs() : prev tx already used");
947 //
948 // // Flag outpoints as used
949 // txPrev.vout[prevout.n].posNext = posThisTx;
950
951 nValueIn += txPrev.vout[prevout.n].nValue;
f1e1fb4b 952
953 if (!MoneyRange(txPrev.vout[prevout.n].nValue) || !MoneyRange(nValueIn))
954 return error("ClientConnectInputs() : txin values out of range");
0a61b0df 955 }
956 if (GetValueOut() > nValueIn)
957 return false;
958 }
959
960 return true;
961}
962
963
964
965
966bool CBlock::DisconnectBlock(CTxDB& txdb, CBlockIndex* pindex)
967{
968 // Disconnect in reverse order
969 for (int i = vtx.size()-1; i >= 0; i--)
970 if (!vtx[i].DisconnectInputs(txdb))
971 return false;
972
973 // Update block index on disk without changing it in memory.
974 // The memory index structure will be changed after the db commits.
975 if (pindex->pprev)
976 {
977 CDiskBlockIndex blockindexPrev(pindex->pprev);
978 blockindexPrev.hashNext = 0;
b22c8842 979 if (!txdb.WriteBlockIndex(blockindexPrev))
980 return error("DisconnectBlock() : WriteBlockIndex failed");
0a61b0df 981 }
982
983 return true;
984}
985
986bool CBlock::ConnectBlock(CTxDB& txdb, CBlockIndex* pindex)
987{
988 // Check it again in case a previous version let a bad block in
989 if (!CheckBlock())
990 return false;
991
992 //// issue here: it doesn't know the version
993 unsigned int nTxPos = pindex->nBlockPos + ::GetSerializeSize(CBlock(), SER_DISK) - 1 + GetSizeOfCompactSize(vtx.size());
994
e077cce6 995 map<uint256, CTxIndex> mapQueuedChanges;
0a61b0df 996 int64 nFees = 0;
223b6f1b 997 BOOST_FOREACH(CTransaction& tx, vtx)
0a61b0df 998 {
999 CDiskTxPos posThisTx(pindex->nFile, pindex->nBlockPos, nTxPos);
1000 nTxPos += ::GetSerializeSize(tx, SER_DISK);
1001
e077cce6 1002 if (!tx.ConnectInputs(txdb, mapQueuedChanges, posThisTx, pindex, nFees, true, false))
0a61b0df 1003 return false;
1004 }
e077cce6
GA
1005 // Write queued txindex changes
1006 for (map<uint256, CTxIndex>::iterator mi = mapQueuedChanges.begin(); mi != mapQueuedChanges.end(); ++mi)
1007 {
1008 if (!txdb.UpdateTxIndex((*mi).first, (*mi).second))
1009 return error("ConnectBlock() : UpdateTxIndex failed");
1010 }
0a61b0df 1011
1012 if (vtx[0].GetValueOut() > GetBlockValue(pindex->nHeight, nFees))
1013 return false;
1014
1015 // Update block index on disk without changing it in memory.
1016 // The memory index structure will be changed after the db commits.
1017 if (pindex->pprev)
1018 {
1019 CDiskBlockIndex blockindexPrev(pindex->pprev);
1020 blockindexPrev.hashNext = pindex->GetBlockHash();
b22c8842 1021 if (!txdb.WriteBlockIndex(blockindexPrev))
1022 return error("ConnectBlock() : WriteBlockIndex failed");
0a61b0df 1023 }
1024
1025 // Watch for transactions paying to me
223b6f1b 1026 BOOST_FOREACH(CTransaction& tx, vtx)
64c7ee7e 1027 SyncWithWallets(tx, this, true);
0a61b0df 1028
1029 return true;
1030}
1031
64c7ee7e 1032bool static Reorganize(CTxDB& txdb, CBlockIndex* pindexNew)
0a61b0df 1033{
1034 printf("REORGANIZE\n");
1035
1036 // Find the fork
1037 CBlockIndex* pfork = pindexBest;
1038 CBlockIndex* plonger = pindexNew;
1039 while (pfork != plonger)
1040 {
1041 while (plonger->nHeight > pfork->nHeight)
1042 if (!(plonger = plonger->pprev))
1043 return error("Reorganize() : plonger->pprev is null");
1044 if (pfork == plonger)
1045 break;
1046 if (!(pfork = pfork->pprev))
1047 return error("Reorganize() : pfork->pprev is null");
1048 }
1049
1050 // List of what to disconnect
1051 vector<CBlockIndex*> vDisconnect;
1052 for (CBlockIndex* pindex = pindexBest; pindex != pfork; pindex = pindex->pprev)
1053 vDisconnect.push_back(pindex);
1054
1055 // List of what to connect
1056 vector<CBlockIndex*> vConnect;
1057 for (CBlockIndex* pindex = pindexNew; pindex != pfork; pindex = pindex->pprev)
1058 vConnect.push_back(pindex);
1059 reverse(vConnect.begin(), vConnect.end());
1060
1061 // Disconnect shorter branch
1062 vector<CTransaction> vResurrect;
223b6f1b 1063 BOOST_FOREACH(CBlockIndex* pindex, vDisconnect)
0a61b0df 1064 {
1065 CBlock block;
1066 if (!block.ReadFromDisk(pindex))
1067 return error("Reorganize() : ReadFromDisk for disconnect failed");
1068 if (!block.DisconnectBlock(txdb, pindex))
1069 return error("Reorganize() : DisconnectBlock failed");
1070
1071 // Queue memory transactions to resurrect
223b6f1b 1072 BOOST_FOREACH(const CTransaction& tx, block.vtx)
0a61b0df 1073 if (!tx.IsCoinBase())
1074 vResurrect.push_back(tx);
1075 }
1076
1077 // Connect longer branch
1078 vector<CTransaction> vDelete;
1079 for (int i = 0; i < vConnect.size(); i++)
1080 {
1081 CBlockIndex* pindex = vConnect[i];
1082 CBlock block;
1083 if (!block.ReadFromDisk(pindex))
1084 return error("Reorganize() : ReadFromDisk for connect failed");
1085 if (!block.ConnectBlock(txdb, pindex))
1086 {
1087 // Invalid block
1088 txdb.TxnAbort();
1089 return error("Reorganize() : ConnectBlock failed");
1090 }
1091
1092 // Queue memory transactions to delete
223b6f1b 1093 BOOST_FOREACH(const CTransaction& tx, block.vtx)
0a61b0df 1094 vDelete.push_back(tx);
1095 }
1096 if (!txdb.WriteHashBestChain(pindexNew->GetBlockHash()))
1097 return error("Reorganize() : WriteHashBestChain failed");
1098
b22c8842 1099 // Make sure it's successfully written to disk before changing memory structure
1100 if (!txdb.TxnCommit())
1101 return error("Reorganize() : TxnCommit failed");
0a61b0df 1102
1103 // Disconnect shorter branch
223b6f1b 1104 BOOST_FOREACH(CBlockIndex* pindex, vDisconnect)
0a61b0df 1105 if (pindex->pprev)
1106 pindex->pprev->pnext = NULL;
1107
1108 // Connect longer branch
223b6f1b 1109 BOOST_FOREACH(CBlockIndex* pindex, vConnect)
0a61b0df 1110 if (pindex->pprev)
1111 pindex->pprev->pnext = pindex;
1112
1113 // Resurrect memory transactions that were in the disconnected branch
223b6f1b 1114 BOOST_FOREACH(CTransaction& tx, vResurrect)
f1e1fb4b 1115 tx.AcceptToMemoryPool(txdb, false);
0a61b0df 1116
1117 // Delete redundant memory transactions that are in the connected branch
223b6f1b 1118 BOOST_FOREACH(CTransaction& tx, vDelete)
0a61b0df 1119 tx.RemoveFromMemoryPool();
1120
1121 return true;
1122}
1123
1124
1125bool CBlock::SetBestChain(CTxDB& txdb, CBlockIndex* pindexNew)
1126{
1127 uint256 hash = GetHash();
1128
1129 txdb.TxnBegin();
1130 if (pindexGenesisBlock == NULL && hash == hashGenesisBlock)
1131 {
0a61b0df 1132 txdb.WriteHashBestChain(hash);
b22c8842 1133 if (!txdb.TxnCommit())
1134 return error("SetBestChain() : TxnCommit failed");
1135 pindexGenesisBlock = pindexNew;
0a61b0df 1136 }
1137 else if (hashPrevBlock == hashBestChain)
1138 {
1139 // Adding to current best branch
1140 if (!ConnectBlock(txdb, pindexNew) || !txdb.WriteHashBestChain(hash))
1141 {
1142 txdb.TxnAbort();
1143 InvalidChainFound(pindexNew);
1144 return error("SetBestChain() : ConnectBlock failed");
1145 }
b22c8842 1146 if (!txdb.TxnCommit())
1147 return error("SetBestChain() : TxnCommit failed");
1148
1149 // Add to current best branch
0a61b0df 1150 pindexNew->pprev->pnext = pindexNew;
1151
1152 // Delete redundant memory transactions
223b6f1b 1153 BOOST_FOREACH(CTransaction& tx, vtx)
0a61b0df 1154 tx.RemoveFromMemoryPool();
1155 }
1156 else
1157 {
1158 // New best branch
1159 if (!Reorganize(txdb, pindexNew))
1160 {
1161 txdb.TxnAbort();
1162 InvalidChainFound(pindexNew);
1163 return error("SetBestChain() : Reorganize failed");
1164 }
1165 }
0a61b0df 1166
6a76c60e
PW
1167 // Update best block in wallet (so we can detect restored wallets)
1168 if (!IsInitialBlockDownload())
1169 {
6a76c60e 1170 const CBlockLocator locator(pindexNew);
64c7ee7e 1171 ::SetBestChain(locator);
6a76c60e
PW
1172 }
1173
0a61b0df 1174 // New best block
1175 hashBestChain = hash;
1176 pindexBest = pindexNew;
1177 nBestHeight = pindexBest->nHeight;
1178 bnBestChainWork = pindexNew->bnChainWork;
1179 nTimeBestReceived = GetTime();
1180 nTransactionsUpdated++;
1181 printf("SetBestChain: new best=%s height=%d work=%s\n", hashBestChain.ToString().substr(0,20).c_str(), nBestHeight, bnBestChainWork.ToString().c_str());
1182
1183 return true;
1184}
1185
1186
1187bool CBlock::AddToBlockIndex(unsigned int nFile, unsigned int nBlockPos)
1188{
1189 // Check for duplicate
1190 uint256 hash = GetHash();
1191 if (mapBlockIndex.count(hash))
1192 return error("AddToBlockIndex() : %s already exists", hash.ToString().substr(0,20).c_str());
1193
1194 // Construct new block index object
1195 CBlockIndex* pindexNew = new CBlockIndex(nFile, nBlockPos, *this);
1196 if (!pindexNew)
1197 return error("AddToBlockIndex() : new CBlockIndex failed");
1198 map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.insert(make_pair(hash, pindexNew)).first;
1199 pindexNew->phashBlock = &((*mi).first);
1200 map<uint256, CBlockIndex*>::iterator miPrev = mapBlockIndex.find(hashPrevBlock);
1201 if (miPrev != mapBlockIndex.end())
1202 {
1203 pindexNew->pprev = (*miPrev).second;
1204 pindexNew->nHeight = pindexNew->pprev->nHeight + 1;
1205 }
1206 pindexNew->bnChainWork = (pindexNew->pprev ? pindexNew->pprev->bnChainWork : 0) + pindexNew->GetBlockWork();
1207
1208 CTxDB txdb;
f03304a9 1209 txdb.TxnBegin();
0a61b0df 1210 txdb.WriteBlockIndex(CDiskBlockIndex(pindexNew));
f03304a9 1211 if (!txdb.TxnCommit())
1212 return false;
0a61b0df 1213
1214 // New best
1215 if (pindexNew->bnChainWork > bnBestChainWork)
1216 if (!SetBestChain(txdb, pindexNew))
1217 return false;
1218
1219 txdb.Close();
1220
1221 if (pindexNew == pindexBest)
1222 {
1223 // Notify UI to display prev block's coinbase if it was ours
1224 static uint256 hashPrevBestCoinBase;
64c7ee7e 1225 UpdatedTransaction(hashPrevBestCoinBase);
0a61b0df 1226 hashPrevBestCoinBase = vtx[0].GetHash();
1227 }
1228
1229 MainFrameRepaint();
1230 return true;
1231}
1232
1233
1234
1235
1236bool CBlock::CheckBlock() const
1237{
1238 // These are checks that are independent of context
1239 // that can be verified before saving an orphan block.
1240
1241 // Size limits
172f0060 1242 if (vtx.empty() || vtx.size() > MAX_BLOCK_SIZE || ::GetSerializeSize(*this, SER_NETWORK) > MAX_BLOCK_SIZE)
0a61b0df 1243 return error("CheckBlock() : size limits failed");
1244
172f0060 1245 // Check proof of work matches claimed amount
1246 if (!CheckProofOfWork(GetHash(), nBits))
1247 return error("CheckBlock() : proof of work failed");
1248
0a61b0df 1249 // Check timestamp
1250 if (GetBlockTime() > GetAdjustedTime() + 2 * 60 * 60)
1251 return error("CheckBlock() : block timestamp too far in the future");
1252
1253 // First transaction must be coinbase, the rest must not be
1254 if (vtx.empty() || !vtx[0].IsCoinBase())
1255 return error("CheckBlock() : first tx is not coinbase");
1256 for (int i = 1; i < vtx.size(); i++)
1257 if (vtx[i].IsCoinBase())
1258 return error("CheckBlock() : more than one coinbase");
1259
1260 // Check transactions
223b6f1b 1261 BOOST_FOREACH(const CTransaction& tx, vtx)
0a61b0df 1262 if (!tx.CheckTransaction())
1263 return error("CheckBlock() : CheckTransaction failed");
1264
172f0060 1265 // Check that it's not full of nonstandard transactions
1266 if (GetSigOpCount() > MAX_BLOCK_SIGOPS)
1267 return error("CheckBlock() : too many nonstandard transactions");
0a61b0df 1268
1269 // Check merkleroot
1270 if (hashMerkleRoot != BuildMerkleTree())
1271 return error("CheckBlock() : hashMerkleRoot mismatch");
1272
1273 return true;
1274}
1275
1276bool CBlock::AcceptBlock()
1277{
1278 // Check for duplicate
1279 uint256 hash = GetHash();
1280 if (mapBlockIndex.count(hash))
1281 return error("AcceptBlock() : block already in mapBlockIndex");
1282
1283 // Get prev block index
1284 map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashPrevBlock);
1285 if (mi == mapBlockIndex.end())
1286 return error("AcceptBlock() : prev block not found");
1287 CBlockIndex* pindexPrev = (*mi).second;
f1e1fb4b 1288 int nHeight = pindexPrev->nHeight+1;
1289
172f0060 1290 // Check proof of work
1291 if (nBits != GetNextWorkRequired(pindexPrev))
1292 return error("AcceptBlock() : incorrect proof of work");
0a61b0df 1293
1294 // Check timestamp against prev
1295 if (GetBlockTime() <= pindexPrev->GetMedianTimePast())
1296 return error("AcceptBlock() : block's timestamp is too early");
1297
1298 // Check that all transactions are finalized
223b6f1b 1299 BOOST_FOREACH(const CTransaction& tx, vtx)
f1e1fb4b 1300 if (!tx.IsFinal(nHeight, GetBlockTime()))
0a61b0df 1301 return error("AcceptBlock() : contains a non-final transaction");
1302
0a61b0df 1303 // Check that the block chain matches the known block chain up to a checkpoint
5cbf7532 1304 if (!fTestNet)
bd7d9140
GA
1305 if ((nHeight == 11111 && hash != uint256("0x0000000069e244f73d78e8fd29ba2fd2ed618bd6fa2ee92559f542fdb26e7c1d")) ||
1306 (nHeight == 33333 && hash != uint256("0x000000002dd5588a74784eaa7ab0507a18ad16a236e7b1ce69f00d7ddfb5d0a6")) ||
1307 (nHeight == 68555 && hash != uint256("0x00000000001e1b4903550a0b96e9a9405c8a95f387162e4944e8d9fbe501cd6a")) ||
1308 (nHeight == 70567 && hash != uint256("0x00000000006a49b14bcf27462068f1264c961f11fa2e0eddd2be0791e1d4124a")) ||
1309 (nHeight == 74000 && hash != uint256("0x0000000000573993a3c9e41ce34471c079dcf5f52a0e824a81e7f953b8661a20")) ||
b37f09aa 1310 (nHeight == 105000 && hash != uint256("0x00000000000291ce28027faea320c8d2b054b2e0fe44a773f3eefb151d6bdc97")) ||
d547a443 1311 (nHeight == 118000 && hash != uint256("0x000000000000774a7f8a7a12dc906ddb9e17e75d684f15e00f8767f9e8f36553")) ||
d0d9486f
F
1312 (nHeight == 134444 && hash != uint256("0x00000000000005b12ffd4cd315cd34ffd4a594f430ac814c91184a0d42d2b0fe")) ||
1313 (nHeight == 140700 && hash != uint256("0x000000000000033b512028abb90e1626d8b346fd0ed598ac0a3c371138dce2bd")))
5cbf7532 1314 return error("AcceptBlock() : rejected by checkpoint lockin at %d", nHeight);
0a61b0df 1315
0a61b0df 1316 // Write block to history file
1317 if (!CheckDiskSpace(::GetSerializeSize(*this, SER_DISK)))
1318 return error("AcceptBlock() : out of disk space");
f03304a9 1319 unsigned int nFile = -1;
1320 unsigned int nBlockPos = 0;
1321 if (!WriteToDisk(nFile, nBlockPos))
0a61b0df 1322 return error("AcceptBlock() : WriteToDisk failed");
1323 if (!AddToBlockIndex(nFile, nBlockPos))
1324 return error("AcceptBlock() : AddToBlockIndex failed");
1325
1326 // Relay inventory, but don't relay old inventory during initial block download
1327 if (hashBestChain == hash)
1328 CRITICAL_BLOCK(cs_vNodes)
223b6f1b 1329 BOOST_FOREACH(CNode* pnode, vNodes)
d0d9486f 1330 if (nBestHeight > (pnode->nStartingHeight != -1 ? pnode->nStartingHeight - 2000 : 140700))
0a61b0df 1331 pnode->PushInventory(CInv(MSG_BLOCK, hash));
1332
1333 return true;
1334}
1335
64c7ee7e 1336bool static ProcessBlock(CNode* pfrom, CBlock* pblock)
0a61b0df 1337{
1338 // Check for duplicate
1339 uint256 hash = pblock->GetHash();
1340 if (mapBlockIndex.count(hash))
1341 return error("ProcessBlock() : already have block %d %s", mapBlockIndex[hash]->nHeight, hash.ToString().substr(0,20).c_str());
1342 if (mapOrphanBlocks.count(hash))
1343 return error("ProcessBlock() : already have block (orphan) %s", hash.ToString().substr(0,20).c_str());
1344
1345 // Preliminary checks
1346 if (!pblock->CheckBlock())
0a61b0df 1347 return error("ProcessBlock() : CheckBlock FAILED");
0a61b0df 1348
1349 // If don't already have its previous block, shunt it off to holding area until we get it
1350 if (!mapBlockIndex.count(pblock->hashPrevBlock))
1351 {
1352 printf("ProcessBlock: ORPHAN BLOCK, prev=%s\n", pblock->hashPrevBlock.ToString().substr(0,20).c_str());
776d0f34 1353 CBlock* pblock2 = new CBlock(*pblock);
1354 mapOrphanBlocks.insert(make_pair(hash, pblock2));
1355 mapOrphanBlocksByPrev.insert(make_pair(pblock2->hashPrevBlock, pblock2));
0a61b0df 1356
1357 // Ask this guy to fill in what we're missing
1358 if (pfrom)
776d0f34 1359 pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(pblock2));
0a61b0df 1360 return true;
1361 }
1362
1363 // Store to disk
1364 if (!pblock->AcceptBlock())
0a61b0df 1365 return error("ProcessBlock() : AcceptBlock FAILED");
0a61b0df 1366
1367 // Recursively process any orphan blocks that depended on this one
1368 vector<uint256> vWorkQueue;
1369 vWorkQueue.push_back(hash);
1370 for (int i = 0; i < vWorkQueue.size(); i++)
1371 {
1372 uint256 hashPrev = vWorkQueue[i];
1373 for (multimap<uint256, CBlock*>::iterator mi = mapOrphanBlocksByPrev.lower_bound(hashPrev);
1374 mi != mapOrphanBlocksByPrev.upper_bound(hashPrev);
1375 ++mi)
1376 {
1377 CBlock* pblockOrphan = (*mi).second;
1378 if (pblockOrphan->AcceptBlock())
1379 vWorkQueue.push_back(pblockOrphan->GetHash());
1380 mapOrphanBlocks.erase(pblockOrphan->GetHash());
1381 delete pblockOrphan;
1382 }
1383 mapOrphanBlocksByPrev.erase(hashPrev);
1384 }
1385
1386 printf("ProcessBlock: ACCEPTED\n");
1387 return true;
1388}
1389
1390
1391
1392
1393
1394
1395
1396
0a61b0df 1397bool CheckDiskSpace(uint64 nAdditionalBytes)
1398{
1399 uint64 nFreeBytesAvailable = filesystem::space(GetDataDir()).available;
1400
1401 // Check for 15MB because database could create another 10MB log file at any time
1402 if (nFreeBytesAvailable < (uint64)15000000 + nAdditionalBytes)
1403 {
1404 fShutdown = true;
1405 string strMessage = _("Warning: Disk space is low ");
1406 strMiscWarning = strMessage;
1407 printf("*** %s\n", strMessage.c_str());
1408 ThreadSafeMessageBox(strMessage, "Bitcoin", wxOK | wxICON_EXCLAMATION);
1409 CreateThread(Shutdown, NULL);
1410 return false;
1411 }
1412 return true;
1413}
1414
1415FILE* OpenBlockFile(unsigned int nFile, unsigned int nBlockPos, const char* pszMode)
1416{
1417 if (nFile == -1)
1418 return NULL;
1419 FILE* file = fopen(strprintf("%s/blk%04d.dat", GetDataDir().c_str(), nFile).c_str(), pszMode);
1420 if (!file)
1421 return NULL;
1422 if (nBlockPos != 0 && !strchr(pszMode, 'a') && !strchr(pszMode, 'w'))
1423 {
1424 if (fseek(file, nBlockPos, SEEK_SET) != 0)
1425 {
1426 fclose(file);
1427 return NULL;
1428 }
1429 }
1430 return file;
1431}
1432
1433static unsigned int nCurrentBlockFile = 1;
1434
1435FILE* AppendBlockFile(unsigned int& nFileRet)
1436{
1437 nFileRet = 0;
1438 loop
1439 {
1440 FILE* file = OpenBlockFile(nCurrentBlockFile, 0, "ab");
1441 if (!file)
1442 return NULL;
1443 if (fseek(file, 0, SEEK_END) != 0)
1444 return NULL;
1445 // FAT32 filesize max 4GB, fseek and ftell max 2GB, so we must stay under 2GB
1446 if (ftell(file) < 0x7F000000 - MAX_SIZE)
1447 {
1448 nFileRet = nCurrentBlockFile;
1449 return file;
1450 }
1451 fclose(file);
1452 nCurrentBlockFile++;
1453 }
1454}
1455
1456bool LoadBlockIndex(bool fAllowNew)
1457{
5cbf7532 1458 if (fTestNet)
1459 {
98ba262a 1460 hashGenesisBlock = uint256("0x00000007199508e34a9ff81e6ec0c477a4cccff2a4767a8eee39c11db367b008");
5cbf7532 1461 bnProofOfWorkLimit = CBigNum(~uint256(0) >> 28);
1462 pchMessageStart[0] = 0xfa;
1463 pchMessageStart[1] = 0xbf;
1464 pchMessageStart[2] = 0xb5;
1465 pchMessageStart[3] = 0xda;
1466 }
1467
0a61b0df 1468 //
1469 // Load block index
1470 //
1471 CTxDB txdb("cr");
1472 if (!txdb.LoadBlockIndex())
1473 return false;
1474 txdb.Close();
1475
1476 //
1477 // Init with genesis block
1478 //
1479 if (mapBlockIndex.empty())
1480 {
1481 if (!fAllowNew)
1482 return false;
1483
1484 // Genesis Block:
1485 // CBlock(hash=000000000019d6, ver=1, hashPrevBlock=00000000000000, hashMerkleRoot=4a5e1e, nTime=1231006505, nBits=1d00ffff, nNonce=2083236893, vtx=1)
1486 // CTransaction(hash=4a5e1e, ver=1, vin.size=1, vout.size=1, nLockTime=0)
1487 // CTxIn(COutPoint(000000, -1), coinbase 04ffff001d0104455468652054696d65732030332f4a616e2f32303039204368616e63656c6c6f72206f6e206272696e6b206f66207365636f6e64206261696c6f757420666f722062616e6b73)
1488 // CTxOut(nValue=50.00000000, scriptPubKey=0x5F1DF16B2B704C8A578D0B)
1489 // vMerkleTree: 4a5e1e
1490
1491 // Genesis block
1492 const char* pszTimestamp = "The Times 03/Jan/2009 Chancellor on brink of second bailout for banks";
1493 CTransaction txNew;
1494 txNew.vin.resize(1);
1495 txNew.vout.resize(1);
1496 txNew.vin[0].scriptSig = CScript() << 486604799 << CBigNum(4) << vector<unsigned char>((const unsigned char*)pszTimestamp, (const unsigned char*)pszTimestamp + strlen(pszTimestamp));
1497 txNew.vout[0].nValue = 50 * COIN;
1498 txNew.vout[0].scriptPubKey = CScript() << ParseHex("04678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef38c4f35504e51ec112de5c384df7ba0b8d578a4c702b6bf11d5f") << OP_CHECKSIG;
1499 CBlock block;
1500 block.vtx.push_back(txNew);
1501 block.hashPrevBlock = 0;
1502 block.hashMerkleRoot = block.BuildMerkleTree();
1503 block.nVersion = 1;
1504 block.nTime = 1231006505;
1505 block.nBits = 0x1d00ffff;
1506 block.nNonce = 2083236893;
1507
5cbf7532 1508 if (fTestNet)
1509 {
98ba262a 1510 block.nTime = 1296688602;
5cbf7532 1511 block.nBits = 0x1d07fff8;
98ba262a 1512 block.nNonce = 384568319;
5cbf7532 1513 }
0a61b0df 1514
5cbf7532 1515 //// debug print
1516 printf("%s\n", block.GetHash().ToString().c_str());
1517 printf("%s\n", hashGenesisBlock.ToString().c_str());
1518 printf("%s\n", block.hashMerkleRoot.ToString().c_str());
1519 assert(block.hashMerkleRoot == uint256("0x4a5e1e4baab89f3a32518a88c31bc87f618f76673e2cc77ab2127b7afdeda33b"));
1520 block.print();
0a61b0df 1521 assert(block.GetHash() == hashGenesisBlock);
1522
1523 // Start new block file
1524 unsigned int nFile;
1525 unsigned int nBlockPos;
f03304a9 1526 if (!block.WriteToDisk(nFile, nBlockPos))
0a61b0df 1527 return error("LoadBlockIndex() : writing genesis block to disk failed");
1528 if (!block.AddToBlockIndex(nFile, nBlockPos))
1529 return error("LoadBlockIndex() : genesis block not accepted");
1530 }
1531
1532 return true;
1533}
1534
1535
1536
1537void PrintBlockTree()
1538{
1539 // precompute tree structure
1540 map<CBlockIndex*, vector<CBlockIndex*> > mapNext;
1541 for (map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi)
1542 {
1543 CBlockIndex* pindex = (*mi).second;
1544 mapNext[pindex->pprev].push_back(pindex);
1545 // test
1546 //while (rand() % 3 == 0)
1547 // mapNext[pindex->pprev].push_back(pindex);
1548 }
1549
1550 vector<pair<int, CBlockIndex*> > vStack;
1551 vStack.push_back(make_pair(0, pindexGenesisBlock));
1552
1553 int nPrevCol = 0;
1554 while (!vStack.empty())
1555 {
1556 int nCol = vStack.back().first;
1557 CBlockIndex* pindex = vStack.back().second;
1558 vStack.pop_back();
1559
1560 // print split or gap
1561 if (nCol > nPrevCol)
1562 {
1563 for (int i = 0; i < nCol-1; i++)
1564 printf("| ");
1565 printf("|\\\n");
1566 }
1567 else if (nCol < nPrevCol)
1568 {
1569 for (int i = 0; i < nCol; i++)
1570 printf("| ");
1571 printf("|\n");
64c7ee7e 1572 }
0a61b0df 1573 nPrevCol = nCol;
1574
1575 // print columns
1576 for (int i = 0; i < nCol; i++)
1577 printf("| ");
1578
1579 // print item
1580 CBlock block;
1581 block.ReadFromDisk(pindex);
1582 printf("%d (%u,%u) %s %s tx %d",
1583 pindex->nHeight,
1584 pindex->nFile,
1585 pindex->nBlockPos,
1586 block.GetHash().ToString().substr(0,20).c_str(),
1587 DateTimeStrFormat("%x %H:%M:%S", block.GetBlockTime()).c_str(),
1588 block.vtx.size());
1589
64c7ee7e 1590 PrintWallets(block);
0a61b0df 1591
1592 // put the main timechain first
1593 vector<CBlockIndex*>& vNext = mapNext[pindex];
1594 for (int i = 0; i < vNext.size(); i++)
1595 {
1596 if (vNext[i]->pnext)
1597 {
1598 swap(vNext[0], vNext[i]);
1599 break;
1600 }
1601 }
1602
1603 // iterate children
1604 for (int i = 0; i < vNext.size(); i++)
1605 vStack.push_back(make_pair(nCol+i, vNext[i]));
1606 }
1607}
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618//////////////////////////////////////////////////////////////////////////////
1619//
1620// CAlert
1621//
1622
1623map<uint256, CAlert> mapAlerts;
1624CCriticalSection cs_mapAlerts;
1625
1626string GetWarnings(string strFor)
1627{
1628 int nPriority = 0;
1629 string strStatusBar;
1630 string strRPC;
bdde31d7 1631 if (GetBoolArg("-testsafemode"))
0a61b0df 1632 strRPC = "test";
1633
1634 // Misc warnings like out of disk space and clock is wrong
1635 if (strMiscWarning != "")
1636 {
1637 nPriority = 1000;
1638 strStatusBar = strMiscWarning;
1639 }
1640
1641 // Longer invalid proof-of-work chain
1642 if (pindexBest && bnBestInvalidWork > bnBestChainWork + pindexBest->GetBlockWork() * 6)
1643 {
1644 nPriority = 2000;
1645 strStatusBar = strRPC = "WARNING: Displayed transactions may not be correct! You may need to upgrade, or other nodes may need to upgrade.";
1646 }
1647
1648 // Alerts
1649 CRITICAL_BLOCK(cs_mapAlerts)
1650 {
223b6f1b 1651 BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
0a61b0df 1652 {
1653 const CAlert& alert = item.second;
1654 if (alert.AppliesToMe() && alert.nPriority > nPriority)
1655 {
1656 nPriority = alert.nPriority;
1657 strStatusBar = alert.strStatusBar;
0a61b0df 1658 }
1659 }
1660 }
1661
1662 if (strFor == "statusbar")
1663 return strStatusBar;
1664 else if (strFor == "rpc")
1665 return strRPC;
ecf1c79a 1666 assert(!"GetWarnings() : invalid parameter");
0a61b0df 1667 return "error";
1668}
1669
1670bool CAlert::ProcessAlert()
1671{
1672 if (!CheckSignature())
1673 return false;
1674 if (!IsInEffect())
1675 return false;
1676
1677 CRITICAL_BLOCK(cs_mapAlerts)
1678 {
1679 // Cancel previous alerts
1680 for (map<uint256, CAlert>::iterator mi = mapAlerts.begin(); mi != mapAlerts.end();)
1681 {
1682 const CAlert& alert = (*mi).second;
1683 if (Cancels(alert))
1684 {
1685 printf("cancelling alert %d\n", alert.nID);
1686 mapAlerts.erase(mi++);
1687 }
1688 else if (!alert.IsInEffect())
1689 {
1690 printf("expiring alert %d\n", alert.nID);
1691 mapAlerts.erase(mi++);
1692 }
1693 else
1694 mi++;
1695 }
1696
1697 // Check if this alert has been cancelled
223b6f1b 1698 BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
0a61b0df 1699 {
1700 const CAlert& alert = item.second;
1701 if (alert.Cancels(*this))
1702 {
1703 printf("alert already cancelled by %d\n", alert.nID);
1704 return false;
1705 }
1706 }
1707
1708 // Add to mapAlerts
1709 mapAlerts.insert(make_pair(GetHash(), *this));
1710 }
1711
1712 printf("accepted alert %d, AppliesToMe()=%d\n", nID, AppliesToMe());
1713 MainFrameRepaint();
1714 return true;
1715}
1716
1717
1718
1719
1720
1721
1722
1723
1724//////////////////////////////////////////////////////////////////////////////
1725//
1726// Messages
1727//
1728
1729
64c7ee7e 1730bool static AlreadyHave(CTxDB& txdb, const CInv& inv)
0a61b0df 1731{
1732 switch (inv.type)
1733 {
10384941 1734 case MSG_TX: return mapTransactions.count(inv.hash) || mapOrphanTransactions.count(inv.hash) || txdb.ContainsTx(inv.hash);
0a61b0df 1735 case MSG_BLOCK: return mapBlockIndex.count(inv.hash) || mapOrphanBlocks.count(inv.hash);
1736 }
1737 // Don't know what it is, just say we already got one
1738 return true;
1739}
1740
1741
1742
1743
5cbf7532 1744// The message start string is designed to be unlikely to occur in normal data.
1745// The characters are rarely used upper ascii, not valid as UTF-8, and produce
1746// a large 4-byte int at any alignment.
25133bd7 1747unsigned char pchMessageStart[4] = { 0xf9, 0xbe, 0xb4, 0xd9 };
0a61b0df 1748
1749
64c7ee7e 1750bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
0a61b0df 1751{
1752 static map<unsigned int, vector<unsigned char> > mapReuseKey;
1753 RandAddSeedPerfmon();
1754 if (fDebug)
1755 printf("%s ", DateTimeStrFormat("%x %H:%M:%S", GetTime()).c_str());
1756 printf("received: %s (%d bytes)\n", strCommand.c_str(), vRecv.size());
1757 if (mapArgs.count("-dropmessagestest") && GetRand(atoi(mapArgs["-dropmessagestest"])) == 0)
1758 {
1759 printf("dropmessagestest DROPPING RECV MESSAGE\n");
1760 return true;
1761 }
1762
1763
1764
1765
1766
1767 if (strCommand == "version")
1768 {
1769 // Each connection can only send one version message
1770 if (pfrom->nVersion != 0)
1771 return false;
1772
1773 int64 nTime;
1774 CAddress addrMe;
1775 CAddress addrFrom;
1776 uint64 nNonce = 1;
1777 vRecv >> pfrom->nVersion >> pfrom->nServices >> nTime >> addrMe;
1778 if (pfrom->nVersion == 10300)
1779 pfrom->nVersion = 300;
1780 if (pfrom->nVersion >= 106 && !vRecv.empty())
1781 vRecv >> addrFrom >> nNonce;
1782 if (pfrom->nVersion >= 106 && !vRecv.empty())
1783 vRecv >> pfrom->strSubVer;
1784 if (pfrom->nVersion >= 209 && !vRecv.empty())
1785 vRecv >> pfrom->nStartingHeight;
1786
1787 if (pfrom->nVersion == 0)
1788 return false;
1789
1790 // Disconnect if we connected to ourself
1791 if (nNonce == nLocalHostNonce && nNonce > 1)
1792 {
b22c8842 1793 printf("connected to self at %s, disconnecting\n", pfrom->addr.ToString().c_str());
0a61b0df 1794 pfrom->fDisconnect = true;
1795 return true;
1796 }
1797
cbc920d4
GA
1798 // Be shy and don't send version until we hear
1799 if (pfrom->fInbound)
1800 pfrom->PushVersion();
1801
0a61b0df 1802 pfrom->fClient = !(pfrom->nServices & NODE_NETWORK);
0a61b0df 1803
1804 AddTimeData(pfrom->addr.ip, nTime);
1805
1806 // Change version
1807 if (pfrom->nVersion >= 209)
1808 pfrom->PushMessage("verack");
1809 pfrom->vSend.SetVersion(min(pfrom->nVersion, VERSION));
1810 if (pfrom->nVersion < 209)
1811 pfrom->vRecv.SetVersion(min(pfrom->nVersion, VERSION));
1812
c891967b 1813 if (!pfrom->fInbound)
1814 {
1815 // Advertise our address
1816 if (addrLocalHost.IsRoutable() && !fUseProxy)
1817 {
1818 CAddress addr(addrLocalHost);
1819 addr.nTime = GetAdjustedTime();
1820 pfrom->PushAddress(addr);
1821 }
1822
1823 // Get recent addresses
1824 if (pfrom->nVersion >= 31402 || mapAddresses.size() < 1000)
1825 {
1826 pfrom->PushMessage("getaddr");
1827 pfrom->fGetAddr = true;
1828 }
1829 }
1830
0a61b0df 1831 // Ask the first connected node for block updates
1832 static int nAskedForBlocks;
ec74e8a4
GA
1833 if (!pfrom->fClient &&
1834 (pfrom->nVersion < 32000 || pfrom->nVersion >= 32400) &&
1835 (nAskedForBlocks < 1 || vNodes.size() <= 1))
0a61b0df 1836 {
1837 nAskedForBlocks++;
1838 pfrom->PushGetBlocks(pindexBest, uint256(0));
1839 }
1840
1841 // Relay alerts
1842 CRITICAL_BLOCK(cs_mapAlerts)
223b6f1b 1843 BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
0a61b0df 1844 item.second.RelayTo(pfrom);
1845
1846 pfrom->fSuccessfullyConnected = true;
1847
1848 printf("version message: version %d, blocks=%d\n", pfrom->nVersion, pfrom->nStartingHeight);
c5aa1b13 1849 if(pfrom->nStartingHeight > nMaxBlocksOfOtherNodes)
5df0b03c 1850 {
c5aa1b13 1851 nMaxBlocksOfOtherNodes = pfrom->nStartingHeight;
5df0b03c 1852 }
0a61b0df 1853 }
1854
1855
1856 else if (pfrom->nVersion == 0)
1857 {
1858 // Must have a version message before anything else
1859 return false;
1860 }
1861
1862
1863 else if (strCommand == "verack")
1864 {
1865 pfrom->vRecv.SetVersion(min(pfrom->nVersion, VERSION));
1866 }
1867
1868
1869 else if (strCommand == "addr")
1870 {
1871 vector<CAddress> vAddr;
1872 vRecv >> vAddr;
c891967b 1873
1874 // Don't want addr from older versions unless seeding
1875 if (pfrom->nVersion < 209)
0a61b0df 1876 return true;
c891967b 1877 if (pfrom->nVersion < 31402 && mapAddresses.size() > 1000)
0a61b0df 1878 return true;
1879 if (vAddr.size() > 1000)
1880 return error("message addr size() = %d", vAddr.size());
1881
1882 // Store the new addresses
8c414691
PV
1883 CAddrDB addrDB;
1884 addrDB.TxnBegin();
c891967b 1885 int64 nNow = GetAdjustedTime();
1886 int64 nSince = nNow - 10 * 60;
223b6f1b 1887 BOOST_FOREACH(CAddress& addr, vAddr)
0a61b0df 1888 {
1889 if (fShutdown)
1890 return true;
1891 // ignore IPv6 for now, since it isn't implemented anyway
1892 if (!addr.IsIPv4())
1893 continue;
c891967b 1894 if (addr.nTime <= 100000000 || addr.nTime > nNow + 10 * 60)
1895 addr.nTime = nNow - 5 * 24 * 60 * 60;
8c414691 1896 AddAddress(addr, 2 * 60 * 60, &addrDB);
0a61b0df 1897 pfrom->AddAddressKnown(addr);
c891967b 1898 if (addr.nTime > nSince && !pfrom->fGetAddr && vAddr.size() <= 10 && addr.IsRoutable())
0a61b0df 1899 {
1900 // Relay to a limited number of other nodes
1901 CRITICAL_BLOCK(cs_vNodes)
1902 {
5cbf7532 1903 // Use deterministic randomness to send to the same nodes for 24 hours
1904 // at a time so the setAddrKnowns of the chosen nodes prevent repeats
0a61b0df 1905 static uint256 hashSalt;
1906 if (hashSalt == 0)
1907 RAND_bytes((unsigned char*)&hashSalt, sizeof(hashSalt));
5cbf7532 1908 uint256 hashRand = hashSalt ^ (((int64)addr.ip)<<32) ^ ((GetTime()+addr.ip)/(24*60*60));
1909 hashRand = Hash(BEGIN(hashRand), END(hashRand));
0a61b0df 1910 multimap<uint256, CNode*> mapMix;
223b6f1b 1911 BOOST_FOREACH(CNode* pnode, vNodes)
5cbf7532 1912 {
c891967b 1913 if (pnode->nVersion < 31402)
1914 continue;
5cbf7532 1915 unsigned int nPointer;
1916 memcpy(&nPointer, &pnode, sizeof(nPointer));
1917 uint256 hashKey = hashRand ^ nPointer;
1918 hashKey = Hash(BEGIN(hashKey), END(hashKey));
1919 mapMix.insert(make_pair(hashKey, pnode));
1920 }
f1e1fb4b 1921 int nRelayNodes = 2;
0a61b0df 1922 for (multimap<uint256, CNode*>::iterator mi = mapMix.begin(); mi != mapMix.end() && nRelayNodes-- > 0; ++mi)
1923 ((*mi).second)->PushAddress(addr);
1924 }
1925 }
1926 }
8c414691 1927 addrDB.TxnCommit(); // Save addresses (it's ok if this fails)
0a61b0df 1928 if (vAddr.size() < 1000)
1929 pfrom->fGetAddr = false;
1930 }
1931
1932
1933 else if (strCommand == "inv")
1934 {
1935 vector<CInv> vInv;
1936 vRecv >> vInv;
1937 if (vInv.size() > 50000)
1938 return error("message inv size() = %d", vInv.size());
1939
1940 CTxDB txdb("r");
223b6f1b 1941 BOOST_FOREACH(const CInv& inv, vInv)
0a61b0df 1942 {
1943 if (fShutdown)
1944 return true;
1945 pfrom->AddInventoryKnown(inv);
1946
1947 bool fAlreadyHave = AlreadyHave(txdb, inv);
1948 printf(" got inventory: %s %s\n", inv.ToString().c_str(), fAlreadyHave ? "have" : "new");
1949
1950 if (!fAlreadyHave)
1951 pfrom->AskFor(inv);
1952 else if (inv.type == MSG_BLOCK && mapOrphanBlocks.count(inv.hash))
1953 pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(mapOrphanBlocks[inv.hash]));
1954
1955 // Track requests for our stuff
64c7ee7e 1956 Inventory(inv.hash);
0a61b0df 1957 }
1958 }
1959
1960
1961 else if (strCommand == "getdata")
1962 {
1963 vector<CInv> vInv;
1964 vRecv >> vInv;
1965 if (vInv.size() > 50000)
1966 return error("message getdata size() = %d", vInv.size());
1967
223b6f1b 1968 BOOST_FOREACH(const CInv& inv, vInv)
0a61b0df 1969 {
1970 if (fShutdown)
1971 return true;
1972 printf("received getdata for: %s\n", inv.ToString().c_str());
1973
1974 if (inv.type == MSG_BLOCK)
1975 {
1976 // Send block from disk
1977 map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(inv.hash);
1978 if (mi != mapBlockIndex.end())
1979 {
0a61b0df 1980 CBlock block;
f03304a9 1981 block.ReadFromDisk((*mi).second);
0a61b0df 1982 pfrom->PushMessage("block", block);
1983
1984 // Trigger them to send a getblocks request for the next batch of inventory
1985 if (inv.hash == pfrom->hashContinue)
1986 {
1987 // Bypass PushInventory, this must send even if redundant,
1988 // and we want it right after the last block so they don't
1989 // wait for other stuff first.
1990 vector<CInv> vInv;
1991 vInv.push_back(CInv(MSG_BLOCK, hashBestChain));
1992 pfrom->PushMessage("inv", vInv);
1993 pfrom->hashContinue = 0;
1994 }
1995 }
1996 }
1997 else if (inv.IsKnownType())
1998 {
1999 // Send stream from relay memory
2000 CRITICAL_BLOCK(cs_mapRelay)
2001 {
2002 map<CInv, CDataStream>::iterator mi = mapRelay.find(inv);
2003 if (mi != mapRelay.end())
2004 pfrom->PushMessage(inv.GetCommand(), (*mi).second);
2005 }
2006 }
2007
2008 // Track requests for our stuff
64c7ee7e 2009 Inventory(inv.hash);
0a61b0df 2010 }
2011 }
2012
2013
2014 else if (strCommand == "getblocks")
2015 {
2016 CBlockLocator locator;
2017 uint256 hashStop;
2018 vRecv >> locator >> hashStop;
2019
f03304a9 2020 // Find the last block the caller has in the main chain
0a61b0df 2021 CBlockIndex* pindex = locator.GetBlockIndex();
2022
2023 // Send the rest of the chain
2024 if (pindex)
2025 pindex = pindex->pnext;
2026 int nLimit = 500 + locator.GetDistanceBack();
49731745 2027 unsigned int nBytes = 0;
0a61b0df 2028 printf("getblocks %d to %s limit %d\n", (pindex ? pindex->nHeight : -1), hashStop.ToString().substr(0,20).c_str(), nLimit);
2029 for (; pindex; pindex = pindex->pnext)
2030 {
2031 if (pindex->GetBlockHash() == hashStop)
2032 {
49731745 2033 printf(" getblocks stopping at %d %s (%u bytes)\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str(), nBytes);
0a61b0df 2034 break;
2035 }
2036 pfrom->PushInventory(CInv(MSG_BLOCK, pindex->GetBlockHash()));
49731745
PW
2037 CBlock block;
2038 block.ReadFromDisk(pindex, true);
2039 nBytes += block.GetSerializeSize(SER_NETWORK);
2040 if (--nLimit <= 0 || nBytes >= SendBufferSize()/2)
0a61b0df 2041 {
2042 // When this block is requested, we'll send an inv that'll make them
2043 // getblocks the next batch of inventory.
49731745 2044 printf(" getblocks stopping at limit %d %s (%u bytes)\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str(), nBytes);
0a61b0df 2045 pfrom->hashContinue = pindex->GetBlockHash();
2046 break;
2047 }
2048 }
2049 }
2050
2051
f03304a9 2052 else if (strCommand == "getheaders")
2053 {
2054 CBlockLocator locator;
2055 uint256 hashStop;
2056 vRecv >> locator >> hashStop;
2057
2058 CBlockIndex* pindex = NULL;
2059 if (locator.IsNull())
2060 {
2061 // If locator is null, return the hashStop block
2062 map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashStop);
2063 if (mi == mapBlockIndex.end())
2064 return true;
2065 pindex = (*mi).second;
2066 }
2067 else
2068 {
2069 // Find the last block the caller has in the main chain
2070 pindex = locator.GetBlockIndex();
2071 if (pindex)
2072 pindex = pindex->pnext;
2073 }
2074
2075 vector<CBlock> vHeaders;
2076 int nLimit = 2000 + locator.GetDistanceBack();
2077 printf("getheaders %d to %s limit %d\n", (pindex ? pindex->nHeight : -1), hashStop.ToString().substr(0,20).c_str(), nLimit);
2078 for (; pindex; pindex = pindex->pnext)
2079 {
2080 vHeaders.push_back(pindex->GetBlockHeader());
2081 if (--nLimit <= 0 || pindex->GetBlockHash() == hashStop)
2082 break;
2083 }
2084 pfrom->PushMessage("headers", vHeaders);
2085 }
2086
2087
0a61b0df 2088 else if (strCommand == "tx")
2089 {
2090 vector<uint256> vWorkQueue;
2091 CDataStream vMsg(vRecv);
2092 CTransaction tx;
2093 vRecv >> tx;
2094
2095 CInv inv(MSG_TX, tx.GetHash());
2096 pfrom->AddInventoryKnown(inv);
2097
2098 bool fMissingInputs = false;
f1e1fb4b 2099 if (tx.AcceptToMemoryPool(true, &fMissingInputs))
0a61b0df 2100 {
64c7ee7e 2101 SyncWithWallets(tx, NULL, true);
0a61b0df 2102 RelayMessage(inv, vMsg);
2103 mapAlreadyAskedFor.erase(inv);
2104 vWorkQueue.push_back(inv.hash);
2105
2106 // Recursively process any orphan transactions that depended on this one
2107 for (int i = 0; i < vWorkQueue.size(); i++)
2108 {
2109 uint256 hashPrev = vWorkQueue[i];
2110 for (multimap<uint256, CDataStream*>::iterator mi = mapOrphanTransactionsByPrev.lower_bound(hashPrev);
2111 mi != mapOrphanTransactionsByPrev.upper_bound(hashPrev);
2112 ++mi)
2113 {
2114 const CDataStream& vMsg = *((*mi).second);
2115 CTransaction tx;
2116 CDataStream(vMsg) >> tx;
2117 CInv inv(MSG_TX, tx.GetHash());
2118
f1e1fb4b 2119 if (tx.AcceptToMemoryPool(true))
0a61b0df 2120 {
b22c8842 2121 printf(" accepted orphan tx %s\n", inv.hash.ToString().substr(0,10).c_str());
64c7ee7e 2122 SyncWithWallets(tx, NULL, true);
0a61b0df 2123 RelayMessage(inv, vMsg);
2124 mapAlreadyAskedFor.erase(inv);
2125 vWorkQueue.push_back(inv.hash);
2126 }
2127 }
2128 }
2129
223b6f1b 2130 BOOST_FOREACH(uint256 hash, vWorkQueue)
0a61b0df 2131 EraseOrphanTx(hash);
2132 }
2133 else if (fMissingInputs)
2134 {
b22c8842 2135 printf("storing orphan tx %s\n", inv.hash.ToString().substr(0,10).c_str());
0a61b0df 2136 AddOrphanTx(vMsg);
2137 }
2138 }
2139
2140
2141 else if (strCommand == "block")
2142 {
f03304a9 2143 CBlock block;
2144 vRecv >> block;
0a61b0df 2145
f03304a9 2146 printf("received block %s\n", block.GetHash().ToString().substr(0,20).c_str());
2147 // block.print();
0a61b0df 2148
f03304a9 2149 CInv inv(MSG_BLOCK, block.GetHash());
0a61b0df 2150 pfrom->AddInventoryKnown(inv);
2151
f03304a9 2152 if (ProcessBlock(pfrom, &block))
0a61b0df 2153 mapAlreadyAskedFor.erase(inv);
2154 }
2155
2156
2157 else if (strCommand == "getaddr")
2158 {
3df62878 2159 // Nodes rebroadcast an addr every 24 hours
0a61b0df 2160 pfrom->vAddrToSend.clear();
83082f04 2161 int64 nSince = GetAdjustedTime() - 3 * 60 * 60; // in the last 3 hours
0a61b0df 2162 CRITICAL_BLOCK(cs_mapAddresses)
2163 {
83082f04 2164 unsigned int nCount = 0;
223b6f1b 2165 BOOST_FOREACH(const PAIRTYPE(vector<unsigned char>, CAddress)& item, mapAddresses)
0a61b0df 2166 {
0a61b0df 2167 const CAddress& addr = item.second;
2168 if (addr.nTime > nSince)
83082f04 2169 nCount++;
2170 }
223b6f1b 2171 BOOST_FOREACH(const PAIRTYPE(vector<unsigned char>, CAddress)& item, mapAddresses)
83082f04 2172 {
2173 const CAddress& addr = item.second;
5cbf7532 2174 if (addr.nTime > nSince && GetRand(nCount) < 2500)
0a61b0df 2175 pfrom->PushAddress(addr);
2176 }
2177 }
2178 }
2179
2180
2181 else if (strCommand == "checkorder")
2182 {
2183 uint256 hashReply;
a206a239 2184 vRecv >> hashReply;
0a61b0df 2185
a206a239 2186 if (!GetBoolArg("-allowreceivebyip"))
172f0060 2187 {
2188 pfrom->PushMessage("reply", hashReply, (int)2, string(""));
2189 return true;
2190 }
2191
a206a239 2192 CWalletTx order;
2193 vRecv >> order;
2194
0a61b0df 2195 /// we have a chance to check the order here
2196
2197 // Keep giving the same key to the same ip until they use it
2198 if (!mapReuseKey.count(pfrom->addr.ip))
7db3b75b 2199 pwalletMain->GetKeyFromPool(mapReuseKey[pfrom->addr.ip], true);
0a61b0df 2200
2201 // Send back approval of order and pubkey to use
2202 CScript scriptPubKey;
2203 scriptPubKey << mapReuseKey[pfrom->addr.ip] << OP_CHECKSIG;
2204 pfrom->PushMessage("reply", hashReply, (int)0, scriptPubKey);
2205 }
2206
2207
0a61b0df 2208 else if (strCommand == "reply")
2209 {
2210 uint256 hashReply;
2211 vRecv >> hashReply;
2212
2213 CRequestTracker tracker;
2214 CRITICAL_BLOCK(pfrom->cs_mapRequests)
2215 {
2216 map<uint256, CRequestTracker>::iterator mi = pfrom->mapRequests.find(hashReply);
2217 if (mi != pfrom->mapRequests.end())
2218 {
2219 tracker = (*mi).second;
2220 pfrom->mapRequests.erase(mi);
2221 }
2222 }
2223 if (!tracker.IsNull())
2224 tracker.fn(tracker.param1, vRecv);
2225 }
2226
2227
2228 else if (strCommand == "ping")
2229 {
2230 }
2231
2232
2233 else if (strCommand == "alert")
2234 {
2235 CAlert alert;
2236 vRecv >> alert;
2237
2238 if (alert.ProcessAlert())
2239 {
2240 // Relay
2241 pfrom->setKnown.insert(alert.GetHash());
2242 CRITICAL_BLOCK(cs_vNodes)
223b6f1b 2243 BOOST_FOREACH(CNode* pnode, vNodes)
0a61b0df 2244 alert.RelayTo(pnode);
2245 }
2246 }
2247
2248
2249 else
2250 {
2251 // Ignore unknown commands for extensibility
2252 }
2253
2254
2255 // Update the last seen time for this node's address
2256 if (pfrom->fNetworkNode)
2257 if (strCommand == "version" || strCommand == "addr" || strCommand == "inv" || strCommand == "getdata" || strCommand == "ping")
2258 AddressCurrentlyConnected(pfrom->addr);
2259
2260
2261 return true;
2262}
2263
e89b9f6a
PW
2264bool ProcessMessages(CNode* pfrom)
2265{
2266 CDataStream& vRecv = pfrom->vRecv;
2267 if (vRecv.empty())
2268 return true;
2269 //if (fDebug)
2270 // printf("ProcessMessages(%u bytes)\n", vRecv.size());
0a61b0df 2271
e89b9f6a
PW
2272 //
2273 // Message format
2274 // (4) message start
2275 // (12) command
2276 // (4) size
2277 // (4) checksum
2278 // (x) data
2279 //
0a61b0df 2280
e89b9f6a
PW
2281 loop
2282 {
2283 // Scan for message start
2284 CDataStream::iterator pstart = search(vRecv.begin(), vRecv.end(), BEGIN(pchMessageStart), END(pchMessageStart));
2285 int nHeaderSize = vRecv.GetSerializeSize(CMessageHeader());
2286 if (vRecv.end() - pstart < nHeaderSize)
2287 {
2288 if (vRecv.size() > nHeaderSize)
2289 {
2290 printf("\n\nPROCESSMESSAGE MESSAGESTART NOT FOUND\n\n");
2291 vRecv.erase(vRecv.begin(), vRecv.end() - nHeaderSize);
2292 }
2293 break;
2294 }
2295 if (pstart - vRecv.begin() > 0)
2296 printf("\n\nPROCESSMESSAGE SKIPPED %d BYTES\n\n", pstart - vRecv.begin());
2297 vRecv.erase(vRecv.begin(), pstart);
0a61b0df 2298
e89b9f6a
PW
2299 // Read header
2300 vector<char> vHeaderSave(vRecv.begin(), vRecv.begin() + nHeaderSize);
2301 CMessageHeader hdr;
2302 vRecv >> hdr;
2303 if (!hdr.IsValid())
2304 {
2305 printf("\n\nPROCESSMESSAGE: ERRORS IN HEADER %s\n\n\n", hdr.GetCommand().c_str());
2306 continue;
2307 }
2308 string strCommand = hdr.GetCommand();
2309
2310 // Message size
2311 unsigned int nMessageSize = hdr.nMessageSize;
2312 if (nMessageSize > MAX_SIZE)
2313 {
2314 printf("ProcessMessage(%s, %u bytes) : nMessageSize > MAX_SIZE\n", strCommand.c_str(), nMessageSize);
2315 continue;
2316 }
2317 if (nMessageSize > vRecv.size())
2318 {
2319 // Rewind and wait for rest of message
2320 vRecv.insert(vRecv.begin(), vHeaderSave.begin(), vHeaderSave.end());
2321 break;
2322 }
2323
2324 // Checksum
2325 if (vRecv.GetVersion() >= 209)
2326 {
2327 uint256 hash = Hash(vRecv.begin(), vRecv.begin() + nMessageSize);
2328 unsigned int nChecksum = 0;
2329 memcpy(&nChecksum, &hash, sizeof(nChecksum));
2330 if (nChecksum != hdr.nChecksum)
2331 {
2332 printf("ProcessMessage(%s, %u bytes) : CHECKSUM ERROR nChecksum=%08x hdr.nChecksum=%08x\n",
2333 strCommand.c_str(), nMessageSize, nChecksum, hdr.nChecksum);
2334 continue;
2335 }
2336 }
2337
2338 // Copy message to its own buffer
2339 CDataStream vMsg(vRecv.begin(), vRecv.begin() + nMessageSize, vRecv.nType, vRecv.nVersion);
2340 vRecv.ignore(nMessageSize);
2341
2342 // Process message
2343 bool fRet = false;
2344 try
2345 {
2346 CRITICAL_BLOCK(cs_main)
2347 fRet = ProcessMessage(pfrom, strCommand, vMsg);
2348 if (fShutdown)
2349 return true;
2350 }
2351 catch (std::ios_base::failure& e)
2352 {
2353 if (strstr(e.what(), "end of data"))
2354 {
2355 // Allow exceptions from underlength message on vRecv
2356 printf("ProcessMessage(%s, %u bytes) : Exception '%s' caught, normally caused by a message being shorter than its stated length\n", strCommand.c_str(), nMessageSize, e.what());
2357 }
2358 else if (strstr(e.what(), "size too large"))
2359 {
2360 // Allow exceptions from overlong size
2361 printf("ProcessMessage(%s, %u bytes) : Exception '%s' caught\n", strCommand.c_str(), nMessageSize, e.what());
2362 }
2363 else
2364 {
2365 PrintExceptionContinue(&e, "ProcessMessage()");
2366 }
2367 }
2368 catch (std::exception& e) {
2369 PrintExceptionContinue(&e, "ProcessMessage()");
2370 } catch (...) {
2371 PrintExceptionContinue(NULL, "ProcessMessage()");
2372 }
2373
2374 if (!fRet)
2375 printf("ProcessMessage(%s, %u bytes) FAILED\n", strCommand.c_str(), nMessageSize);
2376 }
2377
2378 vRecv.Compact();
2379 return true;
2380}
0a61b0df 2381
2382
0a61b0df 2383bool SendMessages(CNode* pto, bool fSendTrickle)
2384{
2385 CRITICAL_BLOCK(cs_main)
2386 {
2387 // Don't send anything until we get their version message
2388 if (pto->nVersion == 0)
2389 return true;
2390
2391 // Keep-alive ping
2392 if (pto->nLastSend && GetTime() - pto->nLastSend > 30 * 60 && pto->vSend.empty())
2393 pto->PushMessage("ping");
2394
c891967b 2395 // Resend wallet transactions that haven't gotten in a block yet
2396 ResendWalletTransactions();
2397
0a61b0df 2398 // Address refresh broadcast
2399 static int64 nLastRebroadcast;
c891967b 2400 if (GetTime() - nLastRebroadcast > 24 * 60 * 60)
0a61b0df 2401 {
2402 nLastRebroadcast = GetTime();
2403 CRITICAL_BLOCK(cs_vNodes)
2404 {
223b6f1b 2405 BOOST_FOREACH(CNode* pnode, vNodes)
0a61b0df 2406 {
2407 // Periodically clear setAddrKnown to allow refresh broadcasts
2408 pnode->setAddrKnown.clear();
2409
2410 // Rebroadcast our address
2411 if (addrLocalHost.IsRoutable() && !fUseProxy)
c891967b 2412 {
2413 CAddress addr(addrLocalHost);
2414 addr.nTime = GetAdjustedTime();
2415 pnode->PushAddress(addr);
2416 }
0a61b0df 2417 }
2418 }
2419 }
2420
c891967b 2421 // Clear out old addresses periodically so it's not too much work at once
2422 static int64 nLastClear;
2423 if (nLastClear == 0)
2424 nLastClear = GetTime();
2425 if (GetTime() - nLastClear > 10 * 60 && vNodes.size() >= 3)
2426 {
2427 nLastClear = GetTime();
2428 CRITICAL_BLOCK(cs_mapAddresses)
2429 {
2430 CAddrDB addrdb;
2431 int64 nSince = GetAdjustedTime() - 14 * 24 * 60 * 60;
2432 for (map<vector<unsigned char>, CAddress>::iterator mi = mapAddresses.begin();
2433 mi != mapAddresses.end();)
2434 {
2435 const CAddress& addr = (*mi).second;
2436 if (addr.nTime < nSince)
2437 {
2438 if (mapAddresses.size() < 1000 || GetTime() > nLastClear + 20)
2439 break;
2440 addrdb.EraseAddress(addr);
2441 mapAddresses.erase(mi++);
2442 }
2443 else
2444 mi++;
2445 }
2446 }
2447 }
0a61b0df 2448
2449
2450 //
2451 // Message: addr
2452 //
2453 if (fSendTrickle)
2454 {
2455 vector<CAddress> vAddr;
2456 vAddr.reserve(pto->vAddrToSend.size());
223b6f1b 2457 BOOST_FOREACH(const CAddress& addr, pto->vAddrToSend)
0a61b0df 2458 {
2459 // returns true if wasn't already contained in the set
2460 if (pto->setAddrKnown.insert(addr).second)
2461 {
2462 vAddr.push_back(addr);
2463 // receiver rejects addr messages larger than 1000
2464 if (vAddr.size() >= 1000)
2465 {
2466 pto->PushMessage("addr", vAddr);
2467 vAddr.clear();
2468 }
2469 }
2470 }
2471 pto->vAddrToSend.clear();
2472 if (!vAddr.empty())
2473 pto->PushMessage("addr", vAddr);
2474 }
2475
2476
2477 //
2478 // Message: inventory
2479 //
2480 vector<CInv> vInv;
2481 vector<CInv> vInvWait;
2482 CRITICAL_BLOCK(pto->cs_inventory)
2483 {
2484 vInv.reserve(pto->vInventoryToSend.size());
2485 vInvWait.reserve(pto->vInventoryToSend.size());
223b6f1b 2486 BOOST_FOREACH(const CInv& inv, pto->vInventoryToSend)
0a61b0df 2487 {
2488 if (pto->setInventoryKnown.count(inv))
2489 continue;
2490
2491 // trickle out tx inv to protect privacy
2492 if (inv.type == MSG_TX && !fSendTrickle)
2493 {
2494 // 1/4 of tx invs blast to all immediately
2495 static uint256 hashSalt;
2496 if (hashSalt == 0)
2497 RAND_bytes((unsigned char*)&hashSalt, sizeof(hashSalt));
2498 uint256 hashRand = inv.hash ^ hashSalt;
2499 hashRand = Hash(BEGIN(hashRand), END(hashRand));
2500 bool fTrickleWait = ((hashRand & 3) != 0);
2501
2502 // always trickle our own transactions
2503 if (!fTrickleWait)
2504 {
64c7ee7e
PW
2505 CWalletTx wtx;
2506 if (GetTransaction(inv.hash, wtx))
2507 if (wtx.fFromMe)
2508 fTrickleWait = true;
0a61b0df 2509 }
2510
2511 if (fTrickleWait)
2512 {
2513 vInvWait.push_back(inv);
2514 continue;
2515 }
2516 }
2517
2518 // returns true if wasn't already contained in the set
2519 if (pto->setInventoryKnown.insert(inv).second)
2520 {
2521 vInv.push_back(inv);
2522 if (vInv.size() >= 1000)
2523 {
2524 pto->PushMessage("inv", vInv);
2525 vInv.clear();
2526 }
2527 }
2528 }
2529 pto->vInventoryToSend = vInvWait;
2530 }
2531 if (!vInv.empty())
2532 pto->PushMessage("inv", vInv);
2533
2534
2535 //
2536 // Message: getdata
2537 //
2538 vector<CInv> vGetData;
2539 int64 nNow = GetTime() * 1000000;
2540 CTxDB txdb("r");
2541 while (!pto->mapAskFor.empty() && (*pto->mapAskFor.begin()).first <= nNow)
2542 {
2543 const CInv& inv = (*pto->mapAskFor.begin()).second;
2544 if (!AlreadyHave(txdb, inv))
2545 {
2546 printf("sending getdata: %s\n", inv.ToString().c_str());
2547 vGetData.push_back(inv);
2548 if (vGetData.size() >= 1000)
2549 {
2550 pto->PushMessage("getdata", vGetData);
2551 vGetData.clear();
2552 }
2553 }
643160f6 2554 mapAlreadyAskedFor[inv] = nNow;
0a61b0df 2555 pto->mapAskFor.erase(pto->mapAskFor.begin());
2556 }
2557 if (!vGetData.empty())
2558 pto->PushMessage("getdata", vGetData);
2559
2560 }
2561 return true;
2562}
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577//////////////////////////////////////////////////////////////////////////////
2578//
2579// BitcoinMiner
2580//
2581
64c7ee7e 2582int static FormatHashBlocks(void* pbuffer, unsigned int len)
3df62878 2583{
2584 unsigned char* pdata = (unsigned char*)pbuffer;
2585 unsigned int blocks = 1 + ((len + 8) / 64);
2586 unsigned char* pend = pdata + 64 * blocks;
2587 memset(pdata + len, 0, 64 * blocks - len);
2588 pdata[len] = 0x80;
2589 unsigned int bits = len * 8;
2590 pend[-1] = (bits >> 0) & 0xff;
2591 pend[-2] = (bits >> 8) & 0xff;
2592 pend[-3] = (bits >> 16) & 0xff;
2593 pend[-4] = (bits >> 24) & 0xff;
2594 return blocks;
2595}
2596
2597using CryptoPP::ByteReverse;
2598
2599static const unsigned int pSHA256InitState[8] =
2600{0x6a09e667, 0xbb67ae85, 0x3c6ef372, 0xa54ff53a, 0x510e527f, 0x9b05688c, 0x1f83d9ab, 0x5be0cd19};
2601
2602inline void SHA256Transform(void* pstate, void* pinput, const void* pinit)
2603{
2604 memcpy(pstate, pinit, 32);
2605 CryptoPP::SHA256::Transform((CryptoPP::word32*)pstate, (CryptoPP::word32*)pinput);
2606}
2607
2608//
2609// ScanHash scans nonces looking for a hash with at least some zero bits.
2610// It operates on big endian data. Caller does the byte reversing.
2611// All input buffers are 16-byte aligned. nNonce is usually preserved
776d0f34 2612// between calls, but periodically or if nNonce is 0xffff0000 or above,
3df62878 2613// the block is rebuilt and nNonce starts over at zero.
2614//
64c7ee7e 2615unsigned int static ScanHash_CryptoPP(char* pmidstate, char* pdata, char* phash1, char* phash, unsigned int& nHashesDone)
3df62878 2616{
776d0f34 2617 unsigned int& nNonce = *(unsigned int*)(pdata + 12);
3df62878 2618 for (;;)
2619 {
2620 // Crypto++ SHA-256
776d0f34 2621 // Hash pdata using pmidstate as the starting state into
3df62878 2622 // preformatted buffer phash1, then hash phash1 into phash
2623 nNonce++;
776d0f34 2624 SHA256Transform(phash1, pdata, pmidstate);
3df62878 2625 SHA256Transform(phash, phash1, pSHA256InitState);
2626
2627 // Return the nonce if the hash has at least some zero bits,
2628 // caller will check if it has enough to reach the target
2629 if (((unsigned short*)phash)[14] == 0)
2630 return nNonce;
2631
2632 // If nothing found after trying for a while, return -1
2633 if ((nNonce & 0xffff) == 0)
2634 {
2635 nHashesDone = 0xffff+1;
2636 return -1;
2637 }
2638 }
2639}
2640
d0d9486f 2641// Some explaining would be appreciated
683bcb91 2642class COrphan
2643{
2644public:
2645 CTransaction* ptx;
2646 set<uint256> setDependsOn;
2647 double dPriority;
2648
2649 COrphan(CTransaction* ptxIn)
2650 {
2651 ptx = ptxIn;
2652 dPriority = 0;
2653 }
2654
2655 void print() const
2656 {
2657 printf("COrphan(hash=%s, dPriority=%.1f)\n", ptx->GetHash().ToString().substr(0,10).c_str(), dPriority);
223b6f1b 2658 BOOST_FOREACH(uint256 hash, setDependsOn)
683bcb91 2659 printf(" setDependsOn %s\n", hash.ToString().substr(0,10).c_str());
2660 }
2661};
2662
2663
776d0f34 2664CBlock* CreateNewBlock(CReserveKey& reservekey)
2665{
2666 CBlockIndex* pindexPrev = pindexBest;
2667
2668 // Create new block
2669 auto_ptr<CBlock> pblock(new CBlock());
2670 if (!pblock.get())
2671 return NULL;
2672
2673 // Create coinbase tx
2674 CTransaction txNew;
2675 txNew.vin.resize(1);
2676 txNew.vin[0].prevout.SetNull();
2677 txNew.vout.resize(1);
2678 txNew.vout[0].scriptPubKey << reservekey.GetReservedKey() << OP_CHECKSIG;
2679
2680 // Add our coinbase tx as first transaction
2681 pblock->vtx.push_back(txNew);
2682
2683 // Collect memory pool transactions into the block
2684 int64 nFees = 0;
2685 CRITICAL_BLOCK(cs_main)
2686 CRITICAL_BLOCK(cs_mapTransactions)
2687 {
2688 CTxDB txdb("r");
2689
2690 // Priority order to process transactions
2691 list<COrphan> vOrphan; // list memory doesn't move
2692 map<uint256, vector<COrphan*> > mapDependers;
2693 multimap<double, CTransaction*> mapPriority;
2694 for (map<uint256, CTransaction>::iterator mi = mapTransactions.begin(); mi != mapTransactions.end(); ++mi)
2695 {
2696 CTransaction& tx = (*mi).second;
2697 if (tx.IsCoinBase() || !tx.IsFinal())
2698 continue;
2699
2700 COrphan* porphan = NULL;
2701 double dPriority = 0;
223b6f1b 2702 BOOST_FOREACH(const CTxIn& txin, tx.vin)
776d0f34 2703 {
2704 // Read prev transaction
2705 CTransaction txPrev;
2706 CTxIndex txindex;
2707 if (!txPrev.ReadFromDisk(txdb, txin.prevout, txindex))
2708 {
2709 // Has to wait for dependencies
2710 if (!porphan)
2711 {
2712 // Use list for automatic deletion
2713 vOrphan.push_back(COrphan(&tx));
2714 porphan = &vOrphan.back();
2715 }
2716 mapDependers[txin.prevout.hash].push_back(porphan);
2717 porphan->setDependsOn.insert(txin.prevout.hash);
2718 continue;
2719 }
2720 int64 nValueIn = txPrev.vout[txin.prevout.n].nValue;
2721
2722 // Read block header
395c1f44 2723 int nConf = txindex.GetDepthInMainChain();
776d0f34 2724
2725 dPriority += (double)nValueIn * nConf;
2726
bdde31d7 2727 if (fDebug && GetBoolArg("-printpriority"))
776d0f34 2728 printf("priority nValueIn=%-12I64d nConf=%-5d dPriority=%-20.1f\n", nValueIn, nConf, dPriority);
2729 }
2730
2731 // Priority is sum(valuein * age) / txsize
2732 dPriority /= ::GetSerializeSize(tx, SER_NETWORK);
2733
2734 if (porphan)
2735 porphan->dPriority = dPriority;
2736 else
2737 mapPriority.insert(make_pair(-dPriority, &(*mi).second));
2738
bdde31d7 2739 if (fDebug && GetBoolArg("-printpriority"))
776d0f34 2740 {
2741 printf("priority %-20.1f %s\n%s", dPriority, tx.GetHash().ToString().substr(0,10).c_str(), tx.ToString().c_str());
2742 if (porphan)
2743 porphan->print();
2744 printf("\n");
2745 }
2746 }
2747
2748 // Collect transactions into block
2749 map<uint256, CTxIndex> mapTestPool;
2750 uint64 nBlockSize = 1000;
2751 int nBlockSigOps = 100;
2752 while (!mapPriority.empty())
2753 {
2754 // Take highest priority transaction off priority queue
2755 double dPriority = -(*mapPriority.begin()).first;
2756 CTransaction& tx = *(*mapPriority.begin()).second;
2757 mapPriority.erase(mapPriority.begin());
2758
2759 // Size limits
2760 unsigned int nTxSize = ::GetSerializeSize(tx, SER_NETWORK);
2761 if (nBlockSize + nTxSize >= MAX_BLOCK_SIZE_GEN)
2762 continue;
2763 int nTxSigOps = tx.GetSigOpCount();
2764 if (nBlockSigOps + nTxSigOps >= MAX_BLOCK_SIGOPS)
2765 continue;
2766
2767 // Transaction fee required depends on block size
395c1f44 2768 bool fAllowFree = (nBlockSize + nTxSize < 4000 || CTransaction::AllowFree(dPriority));
2bfda1be 2769 int64 nMinFee = tx.GetMinFee(nBlockSize, fAllowFree, true);
776d0f34 2770
2771 // Connecting shouldn't fail due to dependency on other memory pool transactions
2772 // because we're already processing them in order of dependency
2773 map<uint256, CTxIndex> mapTestPoolTmp(mapTestPool);
2774 if (!tx.ConnectInputs(txdb, mapTestPoolTmp, CDiskTxPos(1,1,1), pindexPrev, nFees, false, true, nMinFee))
2775 continue;
2776 swap(mapTestPool, mapTestPoolTmp);
2777
2778 // Added
2779 pblock->vtx.push_back(tx);
2780 nBlockSize += nTxSize;
2781 nBlockSigOps += nTxSigOps;
2782
2783 // Add transactions that depend on this one to the priority queue
2784 uint256 hash = tx.GetHash();
2785 if (mapDependers.count(hash))
2786 {
223b6f1b 2787 BOOST_FOREACH(COrphan* porphan, mapDependers[hash])
776d0f34 2788 {
2789 if (!porphan->setDependsOn.empty())
2790 {
2791 porphan->setDependsOn.erase(hash);
2792 if (porphan->setDependsOn.empty())
2793 mapPriority.insert(make_pair(-porphan->dPriority, porphan->ptx));
2794 }
2795 }
2796 }
2797 }
2798 }
2799 pblock->vtx[0].vout[0].nValue = GetBlockValue(pindexPrev->nHeight+1, nFees);
2800
2801 // Fill in header
2802 pblock->hashPrevBlock = pindexPrev->GetBlockHash();
2803 pblock->hashMerkleRoot = pblock->BuildMerkleTree();
2804 pblock->nTime = max(pindexPrev->GetMedianTimePast()+1, GetAdjustedTime());
2805 pblock->nBits = GetNextWorkRequired(pindexPrev);
2806 pblock->nNonce = 0;
2807
2808 return pblock.release();
2809}
2810
2811
2812void IncrementExtraNonce(CBlock* pblock, CBlockIndex* pindexPrev, unsigned int& nExtraNonce, int64& nPrevTime)
2813{
2814 // Update nExtraNonce
2815 int64 nNow = max(pindexPrev->GetMedianTimePast()+1, GetAdjustedTime());
2816 if (++nExtraNonce >= 0x7f && nNow > nPrevTime+1)
2817 {
2818 nExtraNonce = 1;
2819 nPrevTime = nNow;
2820 }
2821 pblock->vtx[0].vin[0].scriptSig = CScript() << pblock->nBits << CBigNum(nExtraNonce);
2822 pblock->hashMerkleRoot = pblock->BuildMerkleTree();
2823}
2824
2825
2826void FormatHashBuffers(CBlock* pblock, char* pmidstate, char* pdata, char* phash1)
2827{
2828 //
2829 // Prebuild hash buffers
2830 //
2831 struct
2832 {
2833 struct unnamed2
2834 {
2835 int nVersion;
2836 uint256 hashPrevBlock;
2837 uint256 hashMerkleRoot;
2838 unsigned int nTime;
2839 unsigned int nBits;
2840 unsigned int nNonce;
2841 }
2842 block;
2843 unsigned char pchPadding0[64];
2844 uint256 hash1;
2845 unsigned char pchPadding1[64];
2846 }
2847 tmp;
2848 memset(&tmp, 0, sizeof(tmp));
2849
2850 tmp.block.nVersion = pblock->nVersion;
2851 tmp.block.hashPrevBlock = pblock->hashPrevBlock;
2852 tmp.block.hashMerkleRoot = pblock->hashMerkleRoot;
2853 tmp.block.nTime = pblock->nTime;
2854 tmp.block.nBits = pblock->nBits;
2855 tmp.block.nNonce = pblock->nNonce;
2856
2857 FormatHashBlocks(&tmp.block, sizeof(tmp.block));
2858 FormatHashBlocks(&tmp.hash1, sizeof(tmp.hash1));
2859
2860 // Byte swap all the input buffer
2861 for (int i = 0; i < sizeof(tmp)/4; i++)
2862 ((unsigned int*)&tmp)[i] = ByteReverse(((unsigned int*)&tmp)[i]);
2863
2864 // Precalc the first half of the first hash, which stays constant
2865 SHA256Transform(pmidstate, &tmp.block, pSHA256InitState);
2866
2867 memcpy(pdata, &tmp.block, 128);
2868 memcpy(phash1, &tmp.hash1, 64);
2869}
2870
2871
64c7ee7e 2872bool CheckWork(CBlock* pblock, CWallet& wallet, CReserveKey& reservekey)
776d0f34 2873{
2874 uint256 hash = pblock->GetHash();
2875 uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256();
2876
2877 if (hash > hashTarget)
2878 return false;
2879
2880 //// debug print
2881 printf("BitcoinMiner:\n");
2882 printf("proof-of-work found \n hash: %s \ntarget: %s\n", hash.GetHex().c_str(), hashTarget.GetHex().c_str());
2883 pblock->print();
2884 printf("%s ", DateTimeStrFormat("%x %H:%M", GetTime()).c_str());
2885 printf("generated %s\n", FormatMoney(pblock->vtx[0].vout[0].nValue).c_str());
2886
2887 // Found a solution
2888 CRITICAL_BLOCK(cs_main)
2889 {
2890 if (pblock->hashPrevBlock != hashBestChain)
2891 return error("BitcoinMiner : generated block is stale");
2892
2893 // Remove key from key pool
2894 reservekey.KeepKey();
2895
2896 // Track how many getdata requests this block gets
6cc4a62c 2897 CRITICAL_BLOCK(wallet.cs_wallet)
64c7ee7e 2898 wallet.mapRequestCount[pblock->GetHash()] = 0;
776d0f34 2899
2900 // Process this block the same as if we had received it from another node
2901 if (!ProcessBlock(NULL, pblock))
2902 return error("BitcoinMiner : ProcessBlock, block not accepted");
2903 }
2904
2905 Sleep(2000);
2906 return true;
2907}
2908
64c7ee7e
PW
2909void static ThreadBitcoinMiner(void* parg);
2910
2911void static BitcoinMiner(CWallet *pwallet)
0a61b0df 2912{
2913 printf("BitcoinMiner started\n");
2914 SetThreadPriority(THREAD_PRIORITY_LOWEST);
2915
776d0f34 2916 // Each thread has its own key and counter
64c7ee7e 2917 CReserveKey reservekey(pwallet);
5cbf7532 2918 unsigned int nExtraNonce = 0;
2919 int64 nPrevTime = 0;
776d0f34 2920
0a61b0df 2921 while (fGenerateBitcoins)
2922 {
5cbf7532 2923 if (AffinityBugWorkaround(ThreadBitcoinMiner))
2924 return;
0a61b0df 2925 if (fShutdown)
2926 return;
2927 while (vNodes.empty() || IsInitialBlockDownload())
2928 {
2929 Sleep(1000);
2930 if (fShutdown)
2931 return;
2932 if (!fGenerateBitcoins)
2933 return;
2934 }
2935
0a61b0df 2936
2937 //
2938 // Create new block
2939 //
776d0f34 2940 unsigned int nTransactionsUpdatedLast = nTransactionsUpdated;
2941 CBlockIndex* pindexPrev = pindexBest;
2942
2943 auto_ptr<CBlock> pblock(CreateNewBlock(reservekey));
0a61b0df 2944 if (!pblock.get())
2945 return;
776d0f34 2946 IncrementExtraNonce(pblock.get(), pindexPrev, nExtraNonce, nPrevTime);
0a61b0df 2947
0a61b0df 2948 printf("Running BitcoinMiner with %d transactions in block\n", pblock->vtx.size());
2949
2950
2951 //
776d0f34 2952 // Prebuild hash buffers
0a61b0df 2953 //
776d0f34 2954 char pmidstatebuf[32+16]; char* pmidstate = alignup<16>(pmidstatebuf);
2955 char pdatabuf[128+16]; char* pdata = alignup<16>(pdatabuf);
2956 char phash1buf[64+16]; char* phash1 = alignup<16>(phash1buf);
2957
2958 FormatHashBuffers(pblock.get(), pmidstate, pdata, phash1);
2959
2960 unsigned int& nBlockTime = *(unsigned int*)(pdata + 64 + 4);
2961 unsigned int& nBlockNonce = *(unsigned int*)(pdata + 64 + 12);
0a61b0df 2962
2963
2964 //
2965 // Search
2966 //
0a61b0df 2967 int64 nStart = GetTime();
2968 uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256();
2969 uint256 hashbuf[2];
2970 uint256& hash = *alignup<16>(hashbuf);
2971 loop
2972 {
3df62878 2973 unsigned int nHashesDone = 0;
2974 unsigned int nNonceFound;
2975
b26141e2
JG
2976 // Crypto++ SHA-256
2977 nNonceFound = ScanHash_CryptoPP(pmidstate, pdata + 64, phash1,
2978 (char*)&hash, nHashesDone);
0a61b0df 2979
3df62878 2980 // Check if something found
2981 if (nNonceFound != -1)
0a61b0df 2982 {
0a61b0df 2983 for (int i = 0; i < sizeof(hash)/4; i++)
2984 ((unsigned int*)&hash)[i] = ByteReverse(((unsigned int*)&hash)[i]);
2985
2986 if (hash <= hashTarget)
2987 {
3df62878 2988 // Found a solution
2989 pblock->nNonce = ByteReverse(nNonceFound);
0a61b0df 2990 assert(hash == pblock->GetHash());
2991
0a61b0df 2992 SetThreadPriority(THREAD_PRIORITY_NORMAL);
64c7ee7e 2993 CheckWork(pblock.get(), *pwalletMain, reservekey);
0a61b0df 2994 SetThreadPriority(THREAD_PRIORITY_LOWEST);
0a61b0df 2995 break;
2996 }
2997 }
2998
3df62878 2999 // Meter hashes/sec
3000 static int64 nHashCounter;
3001 if (nHPSTimerStart == 0)
0a61b0df 3002 {
3df62878 3003 nHPSTimerStart = GetTimeMillis();
3004 nHashCounter = 0;
3005 }
3006 else
3007 nHashCounter += nHashesDone;
3008 if (GetTimeMillis() - nHPSTimerStart > 4000)
3009 {
3010 static CCriticalSection cs;
3011 CRITICAL_BLOCK(cs)
0a61b0df 3012 {
3df62878 3013 if (GetTimeMillis() - nHPSTimerStart > 4000)
0a61b0df 3014 {
3df62878 3015 dHashesPerSec = 1000.0 * nHashCounter / (GetTimeMillis() - nHPSTimerStart);
3016 nHPSTimerStart = GetTimeMillis();
3017 nHashCounter = 0;
3018 string strStatus = strprintf(" %.0f khash/s", dHashesPerSec/1000.0);
83082f04 3019 UIThreadCall(boost::bind(CalledSetStatusBar, strStatus, 0));
3df62878 3020 static int64 nLogTime;
3021 if (GetTime() - nLogTime > 30 * 60)
0a61b0df 3022 {
3df62878 3023 nLogTime = GetTime();
3024 printf("%s ", DateTimeStrFormat("%x %H:%M", GetTime()).c_str());
3025 printf("hashmeter %3d CPUs %6.0f khash/s\n", vnThreadsRunning[3], dHashesPerSec/1000.0);
0a61b0df 3026 }
3027 }
3028 }
3df62878 3029 }
0a61b0df 3030
3df62878 3031 // Check for stop or if block needs to be rebuilt
3032 if (fShutdown)
3033 return;
3034 if (!fGenerateBitcoins)
3035 return;
3036 if (fLimitProcessors && vnThreadsRunning[3] > nLimitProcessors)
3037 return;
3038 if (vNodes.empty())
3039 break;
776d0f34 3040 if (nBlockNonce >= 0xffff0000)
3df62878 3041 break;
3042 if (nTransactionsUpdated != nTransactionsUpdatedLast && GetTime() - nStart > 60)
3043 break;
3044 if (pindexPrev != pindexBest)
3045 break;
0a61b0df 3046
3df62878 3047 // Update nTime every few seconds
5cbf7532 3048 pblock->nTime = max(pindexPrev->GetMedianTimePast()+1, GetAdjustedTime());
776d0f34 3049 nBlockTime = ByteReverse(pblock->nTime);
0a61b0df 3050 }
3051 }
3052}
3053
64c7ee7e 3054void static ThreadBitcoinMiner(void* parg)
0a61b0df 3055{
64c7ee7e 3056 CWallet* pwallet = (CWallet*)parg;
e89b9f6a 3057 try
0a61b0df 3058 {
e89b9f6a 3059 vnThreadsRunning[3]++;
64c7ee7e 3060 BitcoinMiner(pwallet);
e89b9f6a 3061 vnThreadsRunning[3]--;
aca3f961 3062 }
e89b9f6a
PW
3063 catch (std::exception& e) {
3064 vnThreadsRunning[3]--;
3065 PrintException(&e, "ThreadBitcoinMiner()");
3066 } catch (...) {
3067 vnThreadsRunning[3]--;
3068 PrintException(NULL, "ThreadBitcoinMiner()");
0a61b0df 3069 }
e89b9f6a
PW
3070 UIThreadCall(boost::bind(CalledSetStatusBar, "", 0));
3071 nHPSTimerStart = 0;
3072 if (vnThreadsRunning[3] == 0)
3073 dHashesPerSec = 0;
3074 printf("ThreadBitcoinMiner exiting, %d threads remaining\n", vnThreadsRunning[3]);
e2a186af 3075}
3076
0a61b0df 3077
64c7ee7e 3078void GenerateBitcoins(bool fGenerate, CWallet* pwallet)
0a61b0df 3079{
e89b9f6a 3080 if (fGenerateBitcoins != fGenerate)
0a61b0df 3081 {
e89b9f6a 3082 fGenerateBitcoins = fGenerate;
64c7ee7e 3083 WriteSetting("fGenerateBitcoins", fGenerateBitcoins);
e89b9f6a 3084 MainFrameRepaint();
0a61b0df 3085 }
e89b9f6a 3086 if (fGenerateBitcoins)
0a61b0df 3087 {
e89b9f6a
PW
3088 int nProcessors = boost::thread::hardware_concurrency();
3089 printf("%d processors\n", nProcessors);
3090 if (nProcessors < 1)
3091 nProcessors = 1;
3092 if (fLimitProcessors && nProcessors > nLimitProcessors)
3093 nProcessors = nLimitProcessors;
3094 int nAddThreads = nProcessors - vnThreadsRunning[3];
3095 printf("Starting %d BitcoinMiner threads\n", nAddThreads);
3096 for (int i = 0; i < nAddThreads; i++)
0a61b0df 3097 {
64c7ee7e 3098 if (!CreateThread(ThreadBitcoinMiner, pwallet))
e89b9f6a
PW
3099 printf("Error: CreateThread(ThreadBitcoinMiner) failed\n");
3100 Sleep(10);
0a61b0df 3101 }
f5f1878b 3102 }
0a61b0df 3103}
This page took 0.494863 seconds and 4 git commands to generate.