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