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