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