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