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