Multi-threaded signatures checking support, rename threads.
[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 COPYING or http://www.opensource.org/licenses/mit-license.php.
5
6 #include "alert.h"
7 #include "checkpoints.h"
8 #include "db.h"
9 #include "txdb.h"
10 #include "net.h"
11 #include "init.h"
12 #include "ui_interface.h"
13 #include "checkqueue.h"
14 #include "kernel.h"
15 #include "zerocoin/Zerocoin.h"
16 #include <boost/algorithm/string/replace.hpp>
17 #include <boost/filesystem.hpp>
18 #include <boost/filesystem/fstream.hpp>
19
20
21 using namespace std;
22 using namespace boost;
23
24 //
25 // Global state
26 //
27
28 CCriticalSection cs_setpwalletRegistered;
29 set<CWallet*> setpwalletRegistered;
30
31 CCriticalSection cs_main;
32
33 CTxMemPool mempool;
34 unsigned int nTransactionsUpdated = 0;
35
36 map<uint256, CBlockIndex*> mapBlockIndex;
37 set<pair<COutPoint, unsigned int> > setStakeSeen;
38 libzerocoin::Params* ZCParams;
39
40 CBigNum bnProofOfWorkLimit(~uint256(0) >> 20); // "standard" scrypt target limit for proof of work, results with 0,000244140625 proof-of-work difficulty
41 CBigNum bnProofOfStakeLegacyLimit(~uint256(0) >> 24); // proof of stake target limit from block #15000 and until 20 June 2013, results with 0,00390625 proof of stake difficulty
42 CBigNum bnProofOfStakeLimit(~uint256(0) >> 27); // proof of stake target limit since 20 June 2013, equal to 0.03125  proof of stake difficulty
43 CBigNum bnProofOfStakeHardLimit(~uint256(0) >> 30); // disabled temporarily, will be used in the future to fix minimal proof of stake difficulty at 0.25
44 uint256 nPoWBase = uint256("0x00000000ffff0000000000000000000000000000000000000000000000000000"); // difficulty-1 target
45
46 CBigNum bnProofOfWorkLimitTestNet(~uint256(0) >> 16);
47
48 unsigned int nStakeMinAge = 60 * 60 * 24 * 30; // 30 days as zero time weight
49 unsigned int nStakeMaxAge = 60 * 60 * 24 * 90; // 90 days as full weight
50 unsigned int nStakeTargetSpacing = 10 * 60; // 10-minute stakes spacing
51 unsigned int nModifierInterval = 6 * 60 * 60; // time to elapse before new modifier is computed
52
53 int nCoinbaseMaturity = 500;
54 CBlockIndex* pindexGenesisBlock = NULL;
55 int nBestHeight = -1;
56
57 uint256 nBestChainTrust = 0;
58 uint256 nBestInvalidTrust = 0;
59
60 uint256 hashBestChain = 0;
61 CBlockIndex* pindexBest = NULL;
62 int64 nTimeBestReceived = 0;
63 int nScriptCheckThreads = 0;
64
65 CMedianFilter<int> cPeerBlockCounts(5, 0); // Amount of blocks that other nodes claim to have
66
67 map<uint256, CBlock*> mapOrphanBlocks;
68 multimap<uint256, CBlock*> mapOrphanBlocksByPrev;
69 set<pair<COutPoint, unsigned int> > setStakeSeenOrphan;
70 map<uint256, uint256> mapProofOfStake;
71
72 map<uint256, CTransaction> mapOrphanTransactions;
73 map<uint256, set<uint256> > mapOrphanTransactionsByPrev;
74
75 // Constant stuff for coinbase transactions we create:
76 CScript COINBASE_FLAGS;
77
78 const string strMessageMagic = "NovaCoin Signed Message:\n";
79
80 // Settings
81 int64 nTransactionFee = MIN_TX_FEE;
82 int64 nMinimumInputValue = MIN_TX_FEE;
83
84 extern enum Checkpoints::CPMode CheckpointsMode;
85
86 //////////////////////////////////////////////////////////////////////////////
87 //
88 // dispatching functions
89 //
90
91 // These functions dispatch to one or all registered wallets
92
93
94 void RegisterWallet(CWallet* pwalletIn)
95 {
96     {
97         LOCK(cs_setpwalletRegistered);
98         setpwalletRegistered.insert(pwalletIn);
99     }
100 }
101
102 void UnregisterWallet(CWallet* pwalletIn)
103 {
104     {
105         LOCK(cs_setpwalletRegistered);
106         setpwalletRegistered.erase(pwalletIn);
107     }
108 }
109
110 // check whether the passed transaction is from us
111 bool static IsFromMe(CTransaction& tx)
112 {
113     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
114         if (pwallet->IsFromMe(tx))
115             return true;
116     return false;
117 }
118
119 // get the wallet transaction with the given hash (if it exists)
120 bool static GetTransaction(const uint256& hashTx, CWalletTx& wtx)
121 {
122     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
123         if (pwallet->GetTransaction(hashTx,wtx))
124             return true;
125     return false;
126 }
127
128 // erases transaction with the given hash from all wallets
129 void static EraseFromWallets(uint256 hash)
130 {
131     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
132         pwallet->EraseFromWallet(hash);
133 }
134
135 // make sure all wallets know about the given transaction, in the given block
136 void SyncWithWallets(const CTransaction& tx, const CBlock* pblock, bool fUpdate, bool fConnect)
137 {
138     if (!fConnect)
139     {
140         // ppcoin: wallets need to refund inputs when disconnecting coinstake
141         if (tx.IsCoinStake())
142         {
143             BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
144                 if (pwallet->IsFromMe(tx))
145                     pwallet->DisableTransaction(tx);
146         }
147         return;
148     }
149
150     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
151         pwallet->AddToWalletIfInvolvingMe(tx, pblock, fUpdate);
152 }
153
154 // notify wallets about a new best chain
155 void static SetBestChain(const CBlockLocator& loc)
156 {
157     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
158         pwallet->SetBestChain(loc);
159 }
160
161 // notify wallets about an updated transaction
162 void static UpdatedTransaction(const uint256& hashTx)
163 {
164     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
165         pwallet->UpdatedTransaction(hashTx);
166 }
167
168 // dump all wallets
169 void static PrintWallets(const CBlock& block)
170 {
171     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
172         pwallet->PrintWallet(block);
173 }
174
175 // notify wallets about an incoming inventory (for request counts)
176 void static Inventory(const uint256& hash)
177 {
178     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
179         pwallet->Inventory(hash);
180 }
181
182 // ask wallets to resend their transactions
183 void ResendWalletTransactions()
184 {
185     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
186         pwallet->ResendWalletTransactions();
187 }
188
189
190
191
192
193
194
195 //////////////////////////////////////////////////////////////////////////////
196 //
197 // mapOrphanTransactions
198 //
199
200 bool AddOrphanTx(const CTransaction& tx)
201 {
202     uint256 hash = tx.GetHash();
203     if (mapOrphanTransactions.count(hash))
204         return false;
205
206     // Ignore big transactions, to avoid a
207     // send-big-orphans memory exhaustion attack. If a peer has a legitimate
208     // large transaction with a missing parent then we assume
209     // it will rebroadcast it later, after the parent transaction(s)
210     // have been mined or received.
211     // 10,000 orphans, each of which is at most 5,000 bytes big is
212     // at most 500 megabytes of orphans:
213
214     size_t nSize = tx.GetSerializeSize(SER_NETWORK, CTransaction::CURRENT_VERSION);
215
216     if (nSize > 5000)
217     {
218         printf("ignoring large orphan tx (size: %"PRIszu", hash: %s)\n", nSize, hash.ToString().substr(0,10).c_str());
219         return false;
220     }
221
222     mapOrphanTransactions[hash] = tx;
223     BOOST_FOREACH(const CTxIn& txin, tx.vin)
224         mapOrphanTransactionsByPrev[txin.prevout.hash].insert(hash);
225
226     printf("stored orphan tx %s (mapsz %"PRIszu")\n", hash.ToString().substr(0,10).c_str(),
227         mapOrphanTransactions.size());
228     return true;
229 }
230
231 void static EraseOrphanTx(uint256 hash)
232 {
233     if (!mapOrphanTransactions.count(hash))
234         return;
235     const CTransaction& tx = mapOrphanTransactions[hash];
236     BOOST_FOREACH(const CTxIn& txin, tx.vin)
237     {
238         mapOrphanTransactionsByPrev[txin.prevout.hash].erase(hash);
239         if (mapOrphanTransactionsByPrev[txin.prevout.hash].empty())
240             mapOrphanTransactionsByPrev.erase(txin.prevout.hash);
241     }
242     mapOrphanTransactions.erase(hash);
243 }
244
245 unsigned int LimitOrphanTxSize(unsigned int nMaxOrphans)
246 {
247     unsigned int nEvicted = 0;
248     while (mapOrphanTransactions.size() > nMaxOrphans)
249     {
250         // Evict a random orphan:
251         uint256 randomhash = GetRandHash();
252         map<uint256, CTransaction>::iterator it = mapOrphanTransactions.lower_bound(randomhash);
253         if (it == mapOrphanTransactions.end())
254             it = mapOrphanTransactions.begin();
255         EraseOrphanTx(it->first);
256         ++nEvicted;
257     }
258     return nEvicted;
259 }
260
261
262
263
264
265
266
267 //////////////////////////////////////////////////////////////////////////////
268 //
269 // CTransaction and CTxIndex
270 //
271
272 bool CTransaction::ReadFromDisk(CTxDB& txdb, COutPoint prevout, CTxIndex& txindexRet)
273 {
274     SetNull();
275     if (!txdb.ReadTxIndex(prevout.hash, txindexRet))
276         return false;
277     if (!ReadFromDisk(txindexRet.pos))
278         return false;
279     if (prevout.n >= vout.size())
280     {
281         SetNull();
282         return false;
283     }
284     return true;
285 }
286
287 bool CTransaction::ReadFromDisk(CTxDB& txdb, COutPoint prevout)
288 {
289     CTxIndex txindex;
290     return ReadFromDisk(txdb, prevout, txindex);
291 }
292
293 bool CTransaction::ReadFromDisk(COutPoint prevout)
294 {
295     CTxDB txdb("r");
296     CTxIndex txindex;
297     return ReadFromDisk(txdb, prevout, txindex);
298 }
299
300 bool CTransaction::IsStandard() const
301 {
302     if (nVersion > CTransaction::CURRENT_VERSION)
303         return false;
304
305     unsigned int nDataOut = 0;
306     txnouttype whichType;
307     BOOST_FOREACH(const CTxIn& txin, vin)
308     {
309         // Biggest 'standard' txin is a 3-signature 3-of-3 CHECKMULTISIG
310         // pay-to-script-hash, which is 3 ~80-byte signatures, 3
311         // ~65-byte public keys, plus a few script ops.
312         if (txin.scriptSig.size() > 500)
313             return false;
314         if (!txin.scriptSig.IsPushOnly())
315             return false;
316         if (!txin.scriptSig.HasCanonicalPushes()) {
317             return false;
318         }
319     }
320     BOOST_FOREACH(const CTxOut& txout, vout) {
321         if (!::IsStandard(txout.scriptPubKey, whichType)) {
322             return false;
323         }
324         if (whichType == TX_NULL_DATA)
325             nDataOut++;
326         else {
327             if (txout.nValue == 0) {
328                 return false;
329             }
330             if (!txout.scriptPubKey.HasCanonicalPushes()) {
331                 return false;
332             }
333         }
334     }
335
336     // only one OP_RETURN txout is permitted
337     if (nDataOut > 1) {
338         return false;
339     }
340
341     return true;
342 }
343
344 //
345 // Check transaction inputs, and make sure any
346 // pay-to-script-hash transactions are evaluating IsStandard scripts
347 //
348 // Why bother? To avoid denial-of-service attacks; an attacker
349 // can submit a standard HASH... OP_EQUAL transaction,
350 // which will get accepted into blocks. The redemption
351 // script can be anything; an attacker could use a very
352 // expensive-to-check-upon-redemption script like:
353 //   DUP CHECKSIG DROP ... repeated 100 times... OP_1
354 //
355 bool CTransaction::AreInputsStandard(const MapPrevTx& mapInputs) const
356 {
357     if (IsCoinBase())
358         return true; // Coinbases don't use vin normally
359
360     for (unsigned int i = 0; i < vin.size(); i++)
361     {
362         const CTxOut& prev = GetOutputFor(vin[i], mapInputs);
363
364         vector<vector<unsigned char> > vSolutions;
365         txnouttype whichType;
366         // get the scriptPubKey corresponding to this input:
367         const CScript& prevScript = prev.scriptPubKey;
368         if (!Solver(prevScript, whichType, vSolutions))
369             return false;
370         int nArgsExpected = ScriptSigArgsExpected(whichType, vSolutions);
371         if (nArgsExpected < 0)
372             return false;
373
374         // Transactions with extra stuff in their scriptSigs are
375         // non-standard. Note that this EvalScript() call will
376         // be quick, because if there are any operations
377         // beside "push data" in the scriptSig the
378         // IsStandard() call returns false
379         vector<vector<unsigned char> > stack;
380         if (!EvalScript(stack, vin[i].scriptSig, *this, i, false, 0))
381             return false;
382
383         if (whichType == TX_SCRIPTHASH)
384         {
385             if (stack.empty())
386                 return false;
387             CScript subscript(stack.back().begin(), stack.back().end());
388             vector<vector<unsigned char> > vSolutions2;
389             txnouttype whichType2;
390             if (!Solver(subscript, whichType2, vSolutions2))
391                 return false;
392             if (whichType2 == TX_SCRIPTHASH)
393                 return false;
394
395             int tmpExpected;
396             tmpExpected = ScriptSigArgsExpected(whichType2, vSolutions2);
397             if (tmpExpected < 0)
398                 return false;
399             nArgsExpected += tmpExpected;
400         }
401
402         if (stack.size() != (unsigned int)nArgsExpected)
403             return false;
404     }
405
406     return true;
407 }
408
409 unsigned int
410 CTransaction::GetLegacySigOpCount() const
411 {
412     unsigned int nSigOps = 0;
413     BOOST_FOREACH(const CTxIn& txin, vin)
414     {
415         nSigOps += txin.scriptSig.GetSigOpCount(false);
416     }
417     BOOST_FOREACH(const CTxOut& txout, vout)
418     {
419         nSigOps += txout.scriptPubKey.GetSigOpCount(false);
420     }
421     return nSigOps;
422 }
423
424
425 int CMerkleTx::SetMerkleBranch(const CBlock* pblock)
426 {
427     if (fClient)
428     {
429         if (hashBlock == 0)
430             return 0;
431     }
432     else
433     {
434         CBlock blockTmp;
435         if (pblock == NULL)
436         {
437             // Load the block this tx is in
438             CTxIndex txindex;
439             if (!CTxDB("r").ReadTxIndex(GetHash(), txindex))
440                 return 0;
441             if (!blockTmp.ReadFromDisk(txindex.pos.nFile, txindex.pos.nBlockPos))
442                 return 0;
443             pblock = &blockTmp;
444         }
445
446         // Update the tx's hashBlock
447         hashBlock = pblock->GetHash();
448
449         // Locate the transaction
450         for (nIndex = 0; nIndex < (int)pblock->vtx.size(); nIndex++)
451             if (pblock->vtx[nIndex] == *(CTransaction*)this)
452                 break;
453         if (nIndex == (int)pblock->vtx.size())
454         {
455             vMerkleBranch.clear();
456             nIndex = -1;
457             printf("ERROR: SetMerkleBranch() : couldn't find tx in block\n");
458             return 0;
459         }
460
461         // Fill in merkle branch
462         vMerkleBranch = pblock->GetMerkleBranch(nIndex);
463     }
464
465     // Is the tx in a block that's in the main chain
466     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashBlock);
467     if (mi == mapBlockIndex.end())
468         return 0;
469     CBlockIndex* pindex = (*mi).second;
470     if (!pindex || !pindex->IsInMainChain())
471         return 0;
472
473     return pindexBest->nHeight - pindex->nHeight + 1;
474 }
475
476
477
478
479
480
481
482 bool CTransaction::CheckTransaction() const
483 {
484     // Basic checks that don't depend on any context
485     if (vin.empty())
486         return DoS(10, error("CTransaction::CheckTransaction() : vin empty"));
487     if (vout.empty())
488         return DoS(10, error("CTransaction::CheckTransaction() : vout empty"));
489     // Size limits
490     if (::GetSerializeSize(*this, SER_NETWORK, PROTOCOL_VERSION) > MAX_BLOCK_SIZE)
491         return DoS(100, error("CTransaction::CheckTransaction() : size limits failed"));
492
493     // Check for negative or overflow output values
494     int64 nValueOut = 0;
495     for (unsigned int i = 0; i < vout.size(); i++)
496     {
497         const CTxOut& txout = vout[i];
498         if (txout.IsEmpty() && !IsCoinBase() && !IsCoinStake())
499             return DoS(100, error("CTransaction::CheckTransaction() : txout empty for user transaction"));
500
501         if (txout.nValue < 0)
502             return DoS(100, error("CTransaction::CheckTransaction() : txout.nValue is negative"));
503         if (txout.nValue > MAX_MONEY)
504             return DoS(100, error("CTransaction::CheckTransaction() : txout.nValue too high"));
505         nValueOut += txout.nValue;
506         if (!MoneyRange(nValueOut))
507             return DoS(100, error("CTransaction::CheckTransaction() : txout total out of range"));
508     }
509
510     // Check for duplicate inputs
511     set<COutPoint> vInOutPoints;
512     BOOST_FOREACH(const CTxIn& txin, vin)
513     {
514         if (vInOutPoints.count(txin.prevout))
515             return false;
516         vInOutPoints.insert(txin.prevout);
517     }
518
519     if (IsCoinBase())
520     {
521         if (vin[0].scriptSig.size() < 2 || vin[0].scriptSig.size() > 100)
522             return DoS(100, error("CTransaction::CheckTransaction() : coinbase script size is invalid"));
523     }
524     else
525     {
526         BOOST_FOREACH(const CTxIn& txin, vin)
527             if (txin.prevout.IsNull())
528                 return DoS(10, error("CTransaction::CheckTransaction() : prevout is null"));
529     }
530
531     return true;
532 }
533
534 int64 CTransaction::GetMinFee(unsigned int nBlockSize, bool fAllowFree, enum GetMinFee_mode mode, unsigned int nBytes) const
535 {
536     // Use new fees approach if we are on test network or 
537     //    switch date has been reached
538     bool fNewApproach = fTestNet || nTime > FEE_SWITCH_TIME;
539
540     int64 nMinTxFee = MIN_TX_FEE, nMinRelayTxFee = MIN_RELAY_TX_FEE;
541
542     if(!fNewApproach || IsCoinStake())
543     {
544         // Enforce 0.01 as minimum fee for old approach or coinstake
545         nMinTxFee = CENT;
546         nMinRelayTxFee = CENT;
547     }
548
549     // Base fee is either nMinTxFee or nMinRelayTxFee
550     int64 nBaseFee = (mode == GMF_RELAY) ? nMinRelayTxFee : nMinTxFee;
551
552     unsigned int nNewBlockSize = nBlockSize + nBytes;
553     int64 nMinFee = (1 + (int64)nBytes / 1000) * nBaseFee;
554
555     if (fNewApproach)
556     {
557         if (fAllowFree)
558         {
559             if (nBlockSize == 1)
560             {
561                 // Transactions under 1K are free
562                 if (nBytes < 1000)
563                     nMinFee = 0;
564             }
565             else
566             {
567                 // Free transaction area
568                 if (nNewBlockSize < 27000)
569                     nMinFee = 0;
570             }
571         }
572
573         // To limit dust spam, require additional MIN_TX_FEE/MIN_RELAY_TX_FEE for 
574         //    each non empty output which is less than 0.01
575         //
576         // It's safe to ignore empty outputs here, because these inputs are allowed
577         //     only for coinbase and coinstake transactions.
578         BOOST_FOREACH(const CTxOut& txout, vout)
579             if (txout.nValue < CENT && !txout.IsEmpty())
580                 nMinFee += nBaseFee;
581     }
582     else if (nMinFee < nBaseFee)
583     {
584         // To limit dust spam, require MIN_TX_FEE/MIN_RELAY_TX_FEE if 
585         //    any output is less than 0.01
586         BOOST_FOREACH(const CTxOut& txout, vout)
587             if (txout.nValue < CENT)
588                 nMinFee = nBaseFee;
589     }
590
591     // Raise the price as the block approaches full
592     if (nBlockSize != 1 && nNewBlockSize >= MAX_BLOCK_SIZE_GEN/2)
593     {
594         if (nNewBlockSize >= MAX_BLOCK_SIZE_GEN)
595             return MAX_MONEY;
596         nMinFee *= MAX_BLOCK_SIZE_GEN / (MAX_BLOCK_SIZE_GEN - nNewBlockSize);
597     }
598
599     if (!MoneyRange(nMinFee))
600         nMinFee = MAX_MONEY;
601
602     return nMinFee;
603 }
604
605
606 bool CTxMemPool::accept(CTxDB& txdb, CTransaction &tx, bool fCheckInputs,
607                         bool* pfMissingInputs)
608 {
609     if (pfMissingInputs)
610         *pfMissingInputs = false;
611
612     if (!tx.CheckTransaction())
613         return error("CTxMemPool::accept() : CheckTransaction failed");
614
615     // Coinbase is only valid in a block, not as a loose transaction
616     if (tx.IsCoinBase())
617         return tx.DoS(100, error("CTxMemPool::accept() : coinbase as individual tx"));
618
619     // ppcoin: coinstake is also only valid in a block, not as a loose transaction
620     if (tx.IsCoinStake())
621         return tx.DoS(100, error("CTxMemPool::accept() : coinstake as individual tx"));
622
623     // To help v0.1.5 clients who would see it as a negative number
624     if ((int64)tx.nLockTime > std::numeric_limits<int>::max())
625         return error("CTxMemPool::accept() : not accepting nLockTime beyond 2038 yet");
626
627     // Rather not work on nonstandard transactions (unless -testnet)
628     if (!fTestNet && !tx.IsStandard())
629         return error("CTxMemPool::accept() : nonstandard transaction type");
630
631     // Do we already have it?
632     uint256 hash = tx.GetHash();
633     {
634         LOCK(cs);
635         if (mapTx.count(hash))
636             return false;
637     }
638     if (fCheckInputs)
639         if (txdb.ContainsTx(hash))
640             return false;
641
642     // Check for conflicts with in-memory transactions
643     CTransaction* ptxOld = NULL;
644     for (unsigned int i = 0; i < tx.vin.size(); i++)
645     {
646         COutPoint outpoint = tx.vin[i].prevout;
647         if (mapNextTx.count(outpoint))
648         {
649             // Disable replacement feature for now
650             return false;
651
652             // Allow replacing with a newer version of the same transaction
653             if (i != 0)
654                 return false;
655             ptxOld = mapNextTx[outpoint].ptx;
656             if (ptxOld->IsFinal())
657                 return false;
658             if (!tx.IsNewerThan(*ptxOld))
659                 return false;
660             for (unsigned int i = 0; i < tx.vin.size(); i++)
661             {
662                 COutPoint outpoint = tx.vin[i].prevout;
663                 if (!mapNextTx.count(outpoint) || mapNextTx[outpoint].ptx != ptxOld)
664                     return false;
665             }
666             break;
667         }
668     }
669
670     if (fCheckInputs)
671     {
672         MapPrevTx mapInputs;
673         map<uint256, CTxIndex> mapUnused;
674         bool fInvalid = false;
675         if (!tx.FetchInputs(txdb, mapUnused, false, false, mapInputs, fInvalid))
676         {
677             if (fInvalid)
678                 return error("CTxMemPool::accept() : FetchInputs found invalid tx %s", hash.ToString().substr(0,10).c_str());
679             if (pfMissingInputs)
680                 *pfMissingInputs = true;
681             return false;
682         }
683
684         // Check for non-standard pay-to-script-hash in inputs
685         if (!tx.AreInputsStandard(mapInputs) && !fTestNet)
686             return error("CTxMemPool::accept() : nonstandard transaction input");
687
688         // Note: if you modify this code to accept non-standard transactions, then
689         // you should add code here to check that the transaction does a
690         // reasonable number of ECDSA signature verifications.
691
692         int64 nFees = tx.GetValueIn(mapInputs)-tx.GetValueOut();
693         unsigned int nSize = ::GetSerializeSize(tx, SER_NETWORK, PROTOCOL_VERSION);
694
695         // Don't accept it if it can't get into a block
696         int64 txMinFee = tx.GetMinFee(1000, true, GMF_RELAY, nSize);
697         if (nFees < txMinFee)
698             return error("CTxMemPool::accept() : not enough fees %s, %"PRI64d" < %"PRI64d,
699                          hash.ToString().c_str(),
700                          nFees, txMinFee);
701
702         // Continuously rate-limit free transactions
703         // This mitigates 'penny-flooding' -- sending thousands of free transactions just to
704         // be annoying or make others' transactions take longer to confirm.
705         if (nFees < MIN_RELAY_TX_FEE)
706         {
707             static CCriticalSection cs;
708             static double dFreeCount;
709             static int64 nLastTime;
710             int64 nNow = GetTime();
711
712             {
713                 LOCK(cs);
714                 // Use an exponentially decaying ~10-minute window:
715                 dFreeCount *= pow(1.0 - 1.0/600.0, (double)(nNow - nLastTime));
716                 nLastTime = nNow;
717                 // -limitfreerelay unit is thousand-bytes-per-minute
718                 // At default rate it would take over a month to fill 1GB
719                 if (dFreeCount > GetArg("-limitfreerelay", 15)*10*1000 && !IsFromMe(tx))
720                     return error("CTxMemPool::accept() : free transaction rejected by rate limiter");
721                 if (fDebug)
722                     printf("Rate limit dFreeCount: %g => %g\n", dFreeCount, dFreeCount+nSize);
723                 dFreeCount += nSize;
724             }
725         }
726
727         // Check against previous transactions
728         // This is done last to help prevent CPU exhaustion denial-of-service attacks.
729         if (!tx.ConnectInputs(txdb, mapInputs, mapUnused, CDiskTxPos(1,1,1), pindexBest, false, false, true, STANDARD_SCRIPT_VERIFY_FLAGS))
730         {
731             return error("CTxMemPool::accept() : ConnectInputs failed %s", hash.ToString().substr(0,10).c_str());
732         }
733     }
734
735     // Store transaction in memory
736     {
737         LOCK(cs);
738         if (ptxOld)
739         {
740             printf("CTxMemPool::accept() : replacing tx %s with new version\n", ptxOld->GetHash().ToString().c_str());
741             remove(*ptxOld);
742         }
743         addUnchecked(hash, tx);
744     }
745
746     ///// are we sure this is ok when loading transactions or restoring block txes
747     // If updated, erase old tx from wallet
748     if (ptxOld)
749         EraseFromWallets(ptxOld->GetHash());
750
751     printf("CTxMemPool::accept() : accepted %s (poolsz %"PRIszu")\n",
752            hash.ToString().substr(0,10).c_str(),
753            mapTx.size());
754     return true;
755 }
756
757 bool CTransaction::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs, bool* pfMissingInputs)
758 {
759     return mempool.accept(txdb, *this, fCheckInputs, pfMissingInputs);
760 }
761
762 bool CTxMemPool::addUnchecked(const uint256& hash, CTransaction &tx)
763 {
764     // Add to memory pool without checking anything.  Don't call this directly,
765     // call CTxMemPool::accept to properly check the transaction first.
766     {
767         mapTx[hash] = tx;
768         for (unsigned int i = 0; i < tx.vin.size(); i++)
769             mapNextTx[tx.vin[i].prevout] = CInPoint(&mapTx[hash], i);
770         nTransactionsUpdated++;
771     }
772     return true;
773 }
774
775
776 bool CTxMemPool::remove(CTransaction &tx)
777 {
778     // Remove transaction from memory pool
779     {
780         LOCK(cs);
781         uint256 hash = tx.GetHash();
782         if (mapTx.count(hash))
783         {
784             BOOST_FOREACH(const CTxIn& txin, tx.vin)
785                 mapNextTx.erase(txin.prevout);
786             mapTx.erase(hash);
787             nTransactionsUpdated++;
788         }
789     }
790     return true;
791 }
792
793 void CTxMemPool::clear()
794 {
795     LOCK(cs);
796     mapTx.clear();
797     mapNextTx.clear();
798     ++nTransactionsUpdated;
799 }
800
801 void CTxMemPool::queryHashes(std::vector<uint256>& vtxid)
802 {
803     vtxid.clear();
804
805     LOCK(cs);
806     vtxid.reserve(mapTx.size());
807     for (map<uint256, CTransaction>::iterator mi = mapTx.begin(); mi != mapTx.end(); ++mi)
808         vtxid.push_back((*mi).first);
809 }
810
811
812
813
814 int CMerkleTx::GetDepthInMainChain(CBlockIndex* &pindexRet) const
815 {
816     if (hashBlock == 0 || nIndex == -1)
817         return 0;
818
819     // Find the block it claims to be in
820     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashBlock);
821     if (mi == mapBlockIndex.end())
822         return 0;
823     CBlockIndex* pindex = (*mi).second;
824     if (!pindex || !pindex->IsInMainChain())
825         return 0;
826
827     // Make sure the merkle branch connects to this block
828     if (!fMerkleVerified)
829     {
830         if (CBlock::CheckMerkleBranch(GetHash(), vMerkleBranch, nIndex) != pindex->hashMerkleRoot)
831             return 0;
832         fMerkleVerified = true;
833     }
834
835     pindexRet = pindex;
836     return pindexBest->nHeight - pindex->nHeight + 1;
837 }
838
839
840 int CMerkleTx::GetBlocksToMaturity() const
841 {
842     if (!(IsCoinBase() || IsCoinStake()))
843         return 0;
844     return max(0, (nCoinbaseMaturity+20) - GetDepthInMainChain());
845 }
846
847
848 bool CMerkleTx::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs)
849 {
850     if (fClient)
851     {
852         if (!IsInMainChain() && !ClientConnectInputs())
853             return false;
854         return CTransaction::AcceptToMemoryPool(txdb, false);
855     }
856     else
857     {
858         return CTransaction::AcceptToMemoryPool(txdb, fCheckInputs);
859     }
860 }
861
862 bool CMerkleTx::AcceptToMemoryPool()
863 {
864     CTxDB txdb("r");
865     return AcceptToMemoryPool(txdb);
866 }
867
868
869
870 bool CWalletTx::AcceptWalletTransaction(CTxDB& txdb, bool fCheckInputs)
871 {
872
873     {
874         LOCK(mempool.cs);
875         // Add previous supporting transactions first
876         BOOST_FOREACH(CMerkleTx& tx, vtxPrev)
877         {
878             if (!(tx.IsCoinBase() || tx.IsCoinStake()))
879             {
880                 uint256 hash = tx.GetHash();
881                 if (!mempool.exists(hash) && !txdb.ContainsTx(hash))
882                     tx.AcceptToMemoryPool(txdb, fCheckInputs);
883             }
884         }
885         return AcceptToMemoryPool(txdb, fCheckInputs);
886     }
887     return false;
888 }
889
890 bool CWalletTx::AcceptWalletTransaction()
891 {
892     CTxDB txdb("r");
893     return AcceptWalletTransaction(txdb);
894 }
895
896 int CTxIndex::GetDepthInMainChain() const
897 {
898     // Read block header
899     CBlock block;
900     if (!block.ReadFromDisk(pos.nFile, pos.nBlockPos, false))
901         return 0;
902     // Find the block in the index
903     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(block.GetHash());
904     if (mi == mapBlockIndex.end())
905         return 0;
906     CBlockIndex* pindex = (*mi).second;
907     if (!pindex || !pindex->IsInMainChain())
908         return 0;
909     return 1 + nBestHeight - pindex->nHeight;
910 }
911
912 // Return transaction in tx, and if it was found inside a block, its hash is placed in hashBlock
913 bool GetTransaction(const uint256 &hash, CTransaction &tx, uint256 &hashBlock)
914 {
915     {
916         LOCK(cs_main);
917         {
918             LOCK(mempool.cs);
919             if (mempool.exists(hash))
920             {
921                 tx = mempool.lookup(hash);
922                 return true;
923             }
924         }
925         CTxDB txdb("r");
926         CTxIndex txindex;
927         if (tx.ReadFromDisk(txdb, COutPoint(hash, 0), txindex))
928         {
929             CBlock block;
930             if (block.ReadFromDisk(txindex.pos.nFile, txindex.pos.nBlockPos, false))
931                 hashBlock = block.GetHash();
932             return true;
933         }
934     }
935     return false;
936 }
937
938
939
940
941
942
943
944
945 //////////////////////////////////////////////////////////////////////////////
946 //
947 // CBlock and CBlockIndex
948 //
949
950 static CBlockIndex* pblockindexFBBHLast;
951 CBlockIndex* FindBlockByHeight(int nHeight)
952 {
953     CBlockIndex *pblockindex;
954     if (nHeight < nBestHeight / 2)
955         pblockindex = pindexGenesisBlock;
956     else
957         pblockindex = pindexBest;
958     if (pblockindexFBBHLast && abs(nHeight - pblockindex->nHeight) > abs(nHeight - pblockindexFBBHLast->nHeight))
959         pblockindex = pblockindexFBBHLast;
960     while (pblockindex->nHeight > nHeight)
961         pblockindex = pblockindex->pprev;
962     while (pblockindex->nHeight < nHeight)
963         pblockindex = pblockindex->pnext;
964     pblockindexFBBHLast = pblockindex;
965     return pblockindex;
966 }
967
968 bool CBlock::ReadFromDisk(const CBlockIndex* pindex, bool fReadTransactions)
969 {
970     if (!fReadTransactions)
971     {
972         *this = pindex->GetBlockHeader();
973         return true;
974     }
975     if (!ReadFromDisk(pindex->nFile, pindex->nBlockPos, fReadTransactions))
976         return false;
977     if (GetHash() != pindex->GetBlockHash())
978         return error("CBlock::ReadFromDisk() : GetHash() doesn't match index");
979     return true;
980 }
981
982 uint256 static GetOrphanRoot(const CBlock* pblock)
983 {
984     // Work back to the first block in the orphan chain
985     while (mapOrphanBlocks.count(pblock->hashPrevBlock))
986         pblock = mapOrphanBlocks[pblock->hashPrevBlock];
987     return pblock->GetHash();
988 }
989
990 // ppcoin: find block wanted by given orphan block
991 uint256 WantedByOrphan(const CBlock* pblockOrphan)
992 {
993     // Work back to the first block in the orphan chain
994     while (mapOrphanBlocks.count(pblockOrphan->hashPrevBlock))
995         pblockOrphan = mapOrphanBlocks[pblockOrphan->hashPrevBlock];
996     return pblockOrphan->hashPrevBlock;
997 }
998
999 // select stake target limit according to hard-coded conditions
1000 CBigNum inline GetProofOfStakeLimit(int nHeight, unsigned int nTime)
1001 {
1002     if(fTestNet) // separate proof of stake target limit for testnet
1003         return bnProofOfStakeLimit;
1004     if(nTime > TARGETS_SWITCH_TIME) // 27 bits since 20 July 2013
1005         return bnProofOfStakeLimit;
1006     if(nHeight + 1 > 15000) // 24 bits since block 15000
1007         return bnProofOfStakeLegacyLimit;
1008     if(nHeight + 1 > 14060) // 31 bits since block 14060 until 15000
1009         return bnProofOfStakeHardLimit;
1010
1011     return bnProofOfWorkLimit; // return bnProofOfWorkLimit of none matched
1012 }
1013
1014 // miner's coin base reward based on nBits
1015 int64 GetProofOfWorkReward(unsigned int nBits, int64 nFees)
1016 {
1017     CBigNum bnSubsidyLimit = MAX_MINT_PROOF_OF_WORK;
1018
1019     CBigNum bnTarget;
1020     bnTarget.SetCompact(nBits);
1021     CBigNum bnTargetLimit = bnProofOfWorkLimit;
1022     bnTargetLimit.SetCompact(bnTargetLimit.GetCompact());
1023
1024     // NovaCoin: subsidy is cut in half every 64x multiply of PoW difficulty
1025     // A reasonably continuous curve is used to avoid shock to market
1026     // (nSubsidyLimit / nSubsidy) ** 6 == bnProofOfWorkLimit / bnTarget
1027     //
1028     // Human readable form:
1029     //
1030     // nSubsidy = 100 / (diff ^ 1/6)
1031     CBigNum bnLowerBound = CENT;
1032     CBigNum bnUpperBound = bnSubsidyLimit;
1033     while (bnLowerBound + CENT <= bnUpperBound)
1034     {
1035         CBigNum bnMidValue = (bnLowerBound + bnUpperBound) / 2;
1036         if (fDebug && GetBoolArg("-printcreation"))
1037             printf("GetProofOfWorkReward() : lower=%"PRI64d" upper=%"PRI64d" mid=%"PRI64d"\n", bnLowerBound.getuint64(), bnUpperBound.getuint64(), bnMidValue.getuint64());
1038         if (bnMidValue * bnMidValue * bnMidValue * bnMidValue * bnMidValue * bnMidValue * bnTargetLimit > bnSubsidyLimit * bnSubsidyLimit * bnSubsidyLimit * bnSubsidyLimit * bnSubsidyLimit * bnSubsidyLimit * bnTarget)
1039             bnUpperBound = bnMidValue;
1040         else
1041             bnLowerBound = bnMidValue;
1042     }
1043
1044     int64 nSubsidy = bnUpperBound.getuint64();
1045
1046     nSubsidy = (nSubsidy / CENT) * CENT;
1047     if (fDebug && GetBoolArg("-printcreation"))
1048         printf("GetProofOfWorkReward() : create=%s nBits=0x%08x nSubsidy=%"PRI64d"\n", FormatMoney(nSubsidy).c_str(), nBits, nSubsidy);
1049
1050     return min(nSubsidy, MAX_MINT_PROOF_OF_WORK) + nFees;
1051 }
1052
1053 // miner's coin stake reward based on nBits and coin age spent (coin-days)
1054 int64 GetProofOfStakeReward(int64 nCoinAge, unsigned int nBits, unsigned int nTime, bool bCoinYearOnly)
1055 {
1056     int64 nRewardCoinYear, nSubsidy, nSubsidyLimit = 10 * COIN;
1057
1058     if(fTestNet || nTime > STAKE_SWITCH_TIME)
1059     {
1060         // Stage 2 of emission process is PoS-based. It will be active on mainNet since 20 Jun 2013.
1061
1062         CBigNum bnRewardCoinYearLimit = MAX_MINT_PROOF_OF_STAKE; // Base stake mint rate, 100% year interest
1063         CBigNum bnTarget;
1064         bnTarget.SetCompact(nBits);
1065         CBigNum bnTargetLimit = GetProofOfStakeLimit(0, nTime);
1066         bnTargetLimit.SetCompact(bnTargetLimit.GetCompact());
1067
1068         // NovaCoin: A reasonably continuous curve is used to avoid shock to market
1069
1070         CBigNum bnLowerBound = 1 * CENT, // Lower interest bound is 1% per year
1071             bnUpperBound = bnRewardCoinYearLimit, // Upper interest bound is 100% per year
1072             bnMidPart, bnRewardPart;
1073
1074         while (bnLowerBound + CENT <= bnUpperBound)
1075         {
1076             CBigNum bnMidValue = (bnLowerBound + bnUpperBound) / 2;
1077             if (fDebug && GetBoolArg("-printcreation"))
1078                 printf("GetProofOfStakeReward() : lower=%"PRI64d" upper=%"PRI64d" mid=%"PRI64d"\n", bnLowerBound.getuint64(), bnUpperBound.getuint64(), bnMidValue.getuint64());
1079
1080             if(!fTestNet && nTime < STAKECURVE_SWITCH_TIME)
1081             {
1082                 //
1083                 // Until 20 Oct 2013: reward for coin-year is cut in half every 64x multiply of PoS difficulty
1084                 //
1085                 // (nRewardCoinYearLimit / nRewardCoinYear) ** 6 == bnProofOfStakeLimit / bnTarget
1086                 //
1087                 // Human readable form: nRewardCoinYear = 1 / (posdiff ^ 1/6)
1088                 //
1089
1090                 bnMidPart = bnMidValue * bnMidValue * bnMidValue * bnMidValue * bnMidValue * bnMidValue;
1091                 bnRewardPart = bnRewardCoinYearLimit * bnRewardCoinYearLimit * bnRewardCoinYearLimit * bnRewardCoinYearLimit * bnRewardCoinYearLimit * bnRewardCoinYearLimit;
1092             }
1093             else
1094             {
1095                 //
1096                 // Since 20 Oct 2013: reward for coin-year is cut in half every 8x multiply of PoS difficulty
1097                 //
1098                 // (nRewardCoinYearLimit / nRewardCoinYear) ** 3 == bnProofOfStakeLimit / bnTarget
1099                 //
1100                 // Human readable form: nRewardCoinYear = 1 / (posdiff ^ 1/3)
1101                 //
1102
1103                 bnMidPart = bnMidValue * bnMidValue * bnMidValue;
1104                 bnRewardPart = bnRewardCoinYearLimit * bnRewardCoinYearLimit * bnRewardCoinYearLimit;
1105             }
1106
1107             if (bnMidPart * bnTargetLimit > bnRewardPart * bnTarget)
1108                 bnUpperBound = bnMidValue;
1109             else
1110                 bnLowerBound = bnMidValue;
1111         }
1112
1113         nRewardCoinYear = bnUpperBound.getuint64();
1114         nRewardCoinYear = min((nRewardCoinYear / CENT) * CENT, MAX_MINT_PROOF_OF_STAKE);
1115     }
1116     else
1117     {
1118         // Old creation amount per coin-year, 5% fixed stake mint rate
1119         nRewardCoinYear = 5 * CENT;
1120     }
1121
1122     if(bCoinYearOnly)
1123         return nRewardCoinYear;
1124
1125     nSubsidy = nCoinAge * nRewardCoinYear * 33 / (365 * 33 + 8);
1126
1127     // Set reasonable reward limit for large inputs since 20 Oct 2013
1128     //
1129     // This will stimulate large holders to use smaller inputs, that's good for the network protection
1130     if(fTestNet || STAKECURVE_SWITCH_TIME < nTime)
1131     {
1132         if (fDebug && GetBoolArg("-printcreation") && nSubsidyLimit < nSubsidy)
1133             printf("GetProofOfStakeReward(): %s is greater than %s, coinstake reward will be truncated\n", FormatMoney(nSubsidy).c_str(), FormatMoney(nSubsidyLimit).c_str());
1134
1135         nSubsidy = min(nSubsidy, nSubsidyLimit);
1136     }
1137
1138     if (fDebug && GetBoolArg("-printcreation"))
1139         printf("GetProofOfStakeReward(): create=%s nCoinAge=%"PRI64d" nBits=%d\n", FormatMoney(nSubsidy).c_str(), nCoinAge, nBits);
1140     return nSubsidy;
1141 }
1142
1143 static const int64 nTargetTimespan = 7 * 24 * 60 * 60;  // one week
1144
1145 // get proof of work blocks max spacing according to hard-coded conditions
1146 int64 inline GetTargetSpacingWorkMax(int nHeight, unsigned int nTime)
1147 {
1148     if(nTime > TARGETS_SWITCH_TIME)
1149         return 3 * nStakeTargetSpacing; // 30 minutes on mainNet since 20 Jul 2013 00:00:00
1150
1151     if(fTestNet)
1152         return 3 * nStakeTargetSpacing; // 15 minutes on testNet
1153
1154     return 12 * nStakeTargetSpacing; // 2 hours otherwise
1155 }
1156
1157 //
1158 // maximum nBits value could possible be required nTime after
1159 //
1160 unsigned int ComputeMaxBits(CBigNum bnTargetLimit, unsigned int nBase, int64 nTime)
1161 {
1162     CBigNum bnResult;
1163     bnResult.SetCompact(nBase);
1164     bnResult *= 2;
1165     while (nTime > 0 && bnResult < bnTargetLimit)
1166     {
1167         // Maximum 200% adjustment per day...
1168         bnResult *= 2;
1169         nTime -= 24 * 60 * 60;
1170     }
1171     if (bnResult > bnTargetLimit)
1172         bnResult = bnTargetLimit;
1173     return bnResult.GetCompact();
1174 }
1175
1176 //
1177 // minimum amount of work that could possibly be required nTime after
1178 // minimum proof-of-work required was nBase
1179 //
1180 unsigned int ComputeMinWork(unsigned int nBase, int64 nTime)
1181 {
1182     return ComputeMaxBits(bnProofOfWorkLimit, nBase, nTime);
1183 }
1184
1185 //
1186 // minimum amount of stake that could possibly be required nTime after
1187 // minimum proof-of-stake required was nBase
1188 //
1189 unsigned int ComputeMinStake(unsigned int nBase, int64 nTime, unsigned int nBlockTime)
1190 {
1191     return ComputeMaxBits(GetProofOfStakeLimit(0, nBlockTime), nBase, nTime);
1192 }
1193
1194
1195 // ppcoin: find last block index up to pindex
1196 const CBlockIndex* GetLastBlockIndex(const CBlockIndex* pindex, bool fProofOfStake)
1197 {
1198     while (pindex && pindex->pprev && (pindex->IsProofOfStake() != fProofOfStake))
1199         pindex = pindex->pprev;
1200     return pindex;
1201 }
1202
1203 unsigned int GetNextTargetRequired(const CBlockIndex* pindexLast, bool fProofOfStake)
1204 {
1205     CBigNum bnTargetLimit = !fProofOfStake ? bnProofOfWorkLimit : GetProofOfStakeLimit(pindexLast->nHeight, pindexLast->nTime);
1206
1207     if (pindexLast == NULL)
1208         return bnTargetLimit.GetCompact(); // genesis block
1209
1210     const CBlockIndex* pindexPrev = GetLastBlockIndex(pindexLast, fProofOfStake);
1211     if (pindexPrev->pprev == NULL)
1212         return bnTargetLimit.GetCompact(); // first block
1213     const CBlockIndex* pindexPrevPrev = GetLastBlockIndex(pindexPrev->pprev, fProofOfStake);
1214     if (pindexPrevPrev->pprev == NULL)
1215         return bnTargetLimit.GetCompact(); // second block
1216
1217     int64 nActualSpacing = pindexPrev->GetBlockTime() - pindexPrevPrev->GetBlockTime();
1218
1219     // ppcoin: target change every block
1220     // ppcoin: retarget with exponential moving toward target spacing
1221     CBigNum bnNew;
1222     bnNew.SetCompact(pindexPrev->nBits);
1223     int64 nTargetSpacing = fProofOfStake? nStakeTargetSpacing : min(GetTargetSpacingWorkMax(pindexLast->nHeight, pindexLast->nTime), (int64) nStakeTargetSpacing * (1 + pindexLast->nHeight - pindexPrev->nHeight));
1224     int64 nInterval = nTargetTimespan / nTargetSpacing;
1225     bnNew *= ((nInterval - 1) * nTargetSpacing + nActualSpacing + nActualSpacing);
1226     bnNew /= ((nInterval + 1) * nTargetSpacing);
1227
1228     if (bnNew > bnTargetLimit)
1229         bnNew = bnTargetLimit;
1230
1231     return bnNew.GetCompact();
1232 }
1233
1234 bool CheckProofOfWork(uint256 hash, unsigned int nBits)
1235 {
1236     CBigNum bnTarget;
1237     bnTarget.SetCompact(nBits);
1238
1239     // Check range
1240     if (bnTarget <= 0 || bnTarget > bnProofOfWorkLimit)
1241         return error("CheckProofOfWork() : nBits below minimum work");
1242
1243     // Check proof of work matches claimed amount
1244     if (hash > bnTarget.getuint256())
1245         return error("CheckProofOfWork() : hash doesn't match nBits");
1246
1247     return true;
1248 }
1249
1250 // Return maximum amount of blocks that other nodes claim to have
1251 int GetNumBlocksOfPeers()
1252 {
1253     return std::max(cPeerBlockCounts.median(), Checkpoints::GetTotalBlocksEstimate());
1254 }
1255
1256 bool IsInitialBlockDownload()
1257 {
1258     if (pindexBest == NULL || nBestHeight < Checkpoints::GetTotalBlocksEstimate())
1259         return true;
1260     static int64 nLastUpdate;
1261     static CBlockIndex* pindexLastBest;
1262     if (pindexBest != pindexLastBest)
1263     {
1264         pindexLastBest = pindexBest;
1265         nLastUpdate = GetTime();
1266     }
1267     return (GetTime() - nLastUpdate < 10 &&
1268             pindexBest->GetBlockTime() < GetTime() - 24 * 60 * 60);
1269 }
1270
1271 void static InvalidChainFound(CBlockIndex* pindexNew)
1272 {
1273     if (pindexNew->nChainTrust > nBestInvalidTrust)
1274     {
1275         nBestInvalidTrust = pindexNew->nChainTrust;
1276         CTxDB().WriteBestInvalidTrust(CBigNum(nBestInvalidTrust));
1277         uiInterface.NotifyBlocksChanged();
1278     }
1279
1280     uint256 nBestInvalidBlockTrust = pindexNew->nChainTrust - pindexNew->pprev->nChainTrust;
1281     uint256 nBestBlockTrust = pindexBest->nHeight != 0 ? (pindexBest->nChainTrust - pindexBest->pprev->nChainTrust) : pindexBest->nChainTrust;
1282
1283     printf("InvalidChainFound: invalid block=%s  height=%d  trust=%s  blocktrust=%"PRI64d"  date=%s\n",
1284       pindexNew->GetBlockHash().ToString().substr(0,20).c_str(), pindexNew->nHeight,
1285       CBigNum(pindexNew->nChainTrust).ToString().c_str(), nBestInvalidBlockTrust.Get64(),
1286       DateTimeStrFormat("%x %H:%M:%S", pindexNew->GetBlockTime()).c_str());
1287     printf("InvalidChainFound:  current best=%s  height=%d  trust=%s  blocktrust=%"PRI64d"  date=%s\n",
1288       hashBestChain.ToString().substr(0,20).c_str(), nBestHeight,
1289       CBigNum(pindexBest->nChainTrust).ToString().c_str(),
1290       nBestBlockTrust.Get64(),
1291       DateTimeStrFormat("%x %H:%M:%S", pindexBest->GetBlockTime()).c_str());
1292 }
1293
1294
1295 void CBlock::UpdateTime(const CBlockIndex* pindexPrev)
1296 {
1297     nTime = max(GetBlockTime(), GetAdjustedTime());
1298 }
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310 bool CTransaction::DisconnectInputs(CTxDB& txdb)
1311 {
1312     // Relinquish previous transactions' spent pointers
1313     if (!IsCoinBase())
1314     {
1315         BOOST_FOREACH(const CTxIn& txin, vin)
1316         {
1317             COutPoint prevout = txin.prevout;
1318
1319             // Get prev txindex from disk
1320             CTxIndex txindex;
1321             if (!txdb.ReadTxIndex(prevout.hash, txindex))
1322                 return error("DisconnectInputs() : ReadTxIndex failed");
1323
1324             if (prevout.n >= txindex.vSpent.size())
1325                 return error("DisconnectInputs() : prevout.n out of range");
1326
1327             // Mark outpoint as not spent
1328             txindex.vSpent[prevout.n].SetNull();
1329
1330             // Write back
1331             if (!txdb.UpdateTxIndex(prevout.hash, txindex))
1332                 return error("DisconnectInputs() : UpdateTxIndex failed");
1333         }
1334     }
1335
1336     // Remove transaction from index
1337     // This can fail if a duplicate of this transaction was in a chain that got
1338     // reorganized away. This is only possible if this transaction was completely
1339     // spent, so erasing it would be a no-op anyway.
1340     txdb.EraseTxIndex(*this);
1341
1342     return true;
1343 }
1344
1345
1346 bool CTransaction::FetchInputs(CTxDB& txdb, const map<uint256, CTxIndex>& mapTestPool,
1347                                bool fBlock, bool fMiner, MapPrevTx& inputsRet, bool& fInvalid)
1348 {
1349     // FetchInputs can return false either because we just haven't seen some inputs
1350     // (in which case the transaction should be stored as an orphan)
1351     // or because the transaction is malformed (in which case the transaction should
1352     // be dropped).  If tx is definitely invalid, fInvalid will be set to true.
1353     fInvalid = false;
1354
1355     if (IsCoinBase())
1356         return true; // Coinbase transactions have no inputs to fetch.
1357
1358     for (unsigned int i = 0; i < vin.size(); i++)
1359     {
1360         COutPoint prevout = vin[i].prevout;
1361         if (inputsRet.count(prevout.hash))
1362             continue; // Got it already
1363
1364         // Read txindex
1365         CTxIndex& txindex = inputsRet[prevout.hash].first;
1366         bool fFound = true;
1367         if ((fBlock || fMiner) && mapTestPool.count(prevout.hash))
1368         {
1369             // Get txindex from current proposed changes
1370             txindex = mapTestPool.find(prevout.hash)->second;
1371         }
1372         else
1373         {
1374             // Read txindex from txdb
1375             fFound = txdb.ReadTxIndex(prevout.hash, txindex);
1376         }
1377         if (!fFound && (fBlock || fMiner))
1378             return fMiner ? false : error("FetchInputs() : %s prev tx %s index entry not found", GetHash().ToString().substr(0,10).c_str(),  prevout.hash.ToString().substr(0,10).c_str());
1379
1380         // Read txPrev
1381         CTransaction& txPrev = inputsRet[prevout.hash].second;
1382         if (!fFound || txindex.pos == CDiskTxPos(1,1,1))
1383         {
1384             // Get prev tx from single transactions in memory
1385             {
1386                 LOCK(mempool.cs);
1387                 if (!mempool.exists(prevout.hash))
1388                     return error("FetchInputs() : %s mempool Tx prev not found %s", GetHash().ToString().substr(0,10).c_str(),  prevout.hash.ToString().substr(0,10).c_str());
1389                 txPrev = mempool.lookup(prevout.hash);
1390             }
1391             if (!fFound)
1392                 txindex.vSpent.resize(txPrev.vout.size());
1393         }
1394         else
1395         {
1396             // Get prev tx from disk
1397             if (!txPrev.ReadFromDisk(txindex.pos))
1398                 return error("FetchInputs() : %s ReadFromDisk prev tx %s failed", GetHash().ToString().substr(0,10).c_str(),  prevout.hash.ToString().substr(0,10).c_str());
1399         }
1400     }
1401
1402     // Make sure all prevout.n indexes are valid:
1403     for (unsigned int i = 0; i < vin.size(); i++)
1404     {
1405         const COutPoint prevout = vin[i].prevout;
1406         assert(inputsRet.count(prevout.hash) != 0);
1407         const CTxIndex& txindex = inputsRet[prevout.hash].first;
1408         const CTransaction& txPrev = inputsRet[prevout.hash].second;
1409         if (prevout.n >= txPrev.vout.size() || prevout.n >= txindex.vSpent.size())
1410         {
1411             // Revisit this if/when transaction replacement is implemented and allows
1412             // adding inputs:
1413             fInvalid = true;
1414             return DoS(100, error("FetchInputs() : %s prevout.n out of range %d %"PRIszu" %"PRIszu" 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()));
1415         }
1416     }
1417
1418     return true;
1419 }
1420
1421 const CTxOut& CTransaction::GetOutputFor(const CTxIn& input, const MapPrevTx& inputs) const
1422 {
1423     MapPrevTx::const_iterator mi = inputs.find(input.prevout.hash);
1424     if (mi == inputs.end())
1425         throw std::runtime_error("CTransaction::GetOutputFor() : prevout.hash not found");
1426
1427     const CTransaction& txPrev = (mi->second).second;
1428     if (input.prevout.n >= txPrev.vout.size())
1429         throw std::runtime_error("CTransaction::GetOutputFor() : prevout.n out of range");
1430
1431     return txPrev.vout[input.prevout.n];
1432 }
1433
1434 int64 CTransaction::GetValueIn(const MapPrevTx& inputs) const
1435 {
1436     if (IsCoinBase())
1437         return 0;
1438
1439     int64 nResult = 0;
1440     for (unsigned int i = 0; i < vin.size(); i++)
1441     {
1442         nResult += GetOutputFor(vin[i], inputs).nValue;
1443     }
1444     return nResult;
1445
1446 }
1447
1448 unsigned int CTransaction::GetP2SHSigOpCount(const MapPrevTx& inputs) const
1449 {
1450     if (IsCoinBase())
1451         return 0;
1452
1453     unsigned int nSigOps = 0;
1454     for (unsigned int i = 0; i < vin.size(); i++)
1455     {
1456         const CTxOut& prevout = GetOutputFor(vin[i], inputs);
1457         if (prevout.scriptPubKey.IsPayToScriptHash())
1458             nSigOps += prevout.scriptPubKey.GetSigOpCount(vin[i].scriptSig);
1459     }
1460     return nSigOps;
1461 }
1462
1463 bool CScriptCheck::operator()() const {
1464     const CScript &scriptSig = ptxTo->vin[nIn].scriptSig;
1465     if (!VerifyScript(scriptSig, scriptPubKey, *ptxTo, nIn, nFlags, nHashType))
1466         return error("CScriptCheck() : %s VerifySignature failed", ptxTo->GetHash().ToString().substr(0,10).c_str());
1467     return true;
1468 }
1469
1470 bool VerifySignature(const CTransaction& txFrom, const CTransaction& txTo, unsigned int nIn, unsigned int flags, int nHashType)
1471 {
1472     return CScriptCheck(txFrom, txTo, nIn, flags, nHashType)();
1473 }
1474
1475 bool CTransaction::ConnectInputs(CTxDB& txdb, MapPrevTx inputs, map<uint256, CTxIndex>& mapTestPool, const CDiskTxPos& posThisTx,
1476     const CBlockIndex* pindexBlock, bool fBlock, bool fMiner, bool fScriptChecks, unsigned int flags, std::vector<CScriptCheck> *pvChecks)
1477 {
1478     // Take over previous transactions' spent pointers
1479     // fBlock is true when this is called from AcceptBlock when a new best-block is added to the blockchain
1480     // fMiner is true when called from the internal bitcoin miner
1481     // ... both are false when called from CTransaction::AcceptToMemoryPool
1482
1483     if (!IsCoinBase())
1484     {
1485         int64 nValueIn = 0;
1486         int64 nFees = 0;
1487         for (unsigned int i = 0; i < vin.size(); i++)
1488         {
1489             COutPoint prevout = vin[i].prevout;
1490             assert(inputs.count(prevout.hash) > 0);
1491             CTxIndex& txindex = inputs[prevout.hash].first;
1492             CTransaction& txPrev = inputs[prevout.hash].second;
1493
1494             if (prevout.n >= txPrev.vout.size() || prevout.n >= txindex.vSpent.size())
1495                 return DoS(100, error("ConnectInputs() : %s prevout.n out of range %d %"PRIszu" %"PRIszu" 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()));
1496
1497             // If prev is coinbase or coinstake, check that it's matured
1498             if (txPrev.IsCoinBase() || txPrev.IsCoinStake())
1499                 for (const CBlockIndex* pindex = pindexBlock; pindex && pindexBlock->nHeight - pindex->nHeight < nCoinbaseMaturity; pindex = pindex->pprev)
1500                     if (pindex->nBlockPos == txindex.pos.nBlockPos && pindex->nFile == txindex.pos.nFile)
1501                         return error("ConnectInputs() : tried to spend %s at depth %d", txPrev.IsCoinBase() ? "coinbase" : "coinstake", pindexBlock->nHeight - pindex->nHeight);
1502
1503             // ppcoin: check transaction timestamp
1504             if (txPrev.nTime > nTime)
1505                 return DoS(100, error("ConnectInputs() : transaction timestamp earlier than input transaction"));
1506
1507             // Check for negative or overflow input values
1508             nValueIn += txPrev.vout[prevout.n].nValue;
1509             if (!MoneyRange(txPrev.vout[prevout.n].nValue) || !MoneyRange(nValueIn))
1510                 return DoS(100, error("ConnectInputs() : txin values out of range"));
1511
1512         }
1513
1514         if (pvChecks)
1515             pvChecks->reserve(vin.size());
1516
1517         // The first loop above does all the inexpensive checks.
1518         // Only if ALL inputs pass do we perform expensive ECDSA signature checks.
1519         // Helps prevent CPU exhaustion attacks.
1520         for (unsigned int i = 0; i < vin.size(); i++)
1521         {
1522             COutPoint prevout = vin[i].prevout;
1523             assert(inputs.count(prevout.hash) > 0);
1524             CTxIndex& txindex = inputs[prevout.hash].first;
1525             CTransaction& txPrev = inputs[prevout.hash].second;
1526
1527             // Check for conflicts (double-spend)
1528             // This doesn't trigger the DoS code on purpose; if it did, it would make it easier
1529             // for an attacker to attempt to split the network.
1530             if (!txindex.vSpent[prevout.n].IsNull())
1531                 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());
1532
1533             // Skip ECDSA signature verification when connecting blocks (fBlock=true)
1534             // before the last blockchain checkpoint. This is safe because block merkle hashes are
1535             // still computed and checked, and any change will be caught at the next checkpoint.
1536             if (fScriptChecks)
1537             {
1538                 // Verify signature
1539                 CScriptCheck check(txPrev, *this, i, flags, 0);
1540                 if (pvChecks)
1541                 {
1542                     pvChecks->push_back(CScriptCheck());
1543                     check.swap(pvChecks->back());
1544                 }
1545                 else if (!check())
1546                 {
1547                     if (flags & STANDARD_NOT_MANDATORY_VERIFY_FLAGS)
1548                     {
1549                         CScriptCheck check(txPrev, *this, i, flags & ~STANDARD_NOT_MANDATORY_VERIFY_FLAGS, 0);
1550                         if (!check())
1551                             return error("ConnectInputs() : %s STANDARD_NOT_MANDATORY_VERIFY_FLAGS VerifySignature failed", GetHash().ToString().substr(0,10).c_str());
1552                     }
1553
1554                     return DoS(100,error("ConnectInputs() : %s STANDARD_MANDATORY_VERIFY_FLAGS VerifySignature failed", GetHash().ToString().substr(0,10).c_str()));
1555                 }
1556
1557 /*
1558                 if (!VerifySignature(txPrev, *this, i, flags, 0))
1559                 {
1560                     if (flags & STANDARD_NOT_MANDATORY_VERIFY_FLAGS)
1561                     {
1562                         if (VerifySignature(txPrev, *this, i, flags & ~STANDARD_NOT_MANDATORY_VERIFY_FLAGS, 0))
1563                             return error("ConnectInputs() : %s STANDARD_NOT_MANDATORY_VERIFY_FLAGS VerifySignature failed", GetHash().ToString().substr(0,10).c_str());
1564                     }
1565                     return DoS(100,error("ConnectInputs() : %s STANDARD_MANDATORY_VERIFY_FLAGS VerifySignature failed", GetHash().ToString().substr(0,10).c_str()));
1566                 }
1567 */
1568             }
1569
1570             // Mark outpoints as spent
1571             txindex.vSpent[prevout.n] = posThisTx;
1572
1573             // Write back
1574             if (fBlock || fMiner)
1575             {
1576                 mapTestPool[prevout.hash] = txindex;
1577             }
1578         }
1579
1580         if (IsCoinStake())
1581         {
1582             // ppcoin: coin stake tx earns reward instead of paying fee
1583             uint64 nCoinAge;
1584             if (!GetCoinAge(txdb, nCoinAge))
1585                 return error("ConnectInputs() : %s unable to get coin age for coinstake", GetHash().ToString().substr(0,10).c_str());
1586
1587             unsigned int nTxSize = (nTime > VALIDATION_SWITCH_TIME || fTestNet) ? GetSerializeSize(SER_NETWORK, PROTOCOL_VERSION) : 0;
1588
1589             int64 nReward = GetValueOut() - nValueIn;
1590             int64 nCalculatedReward = GetProofOfStakeReward(nCoinAge, pindexBlock->nBits, nTime) - GetMinFee(1, false, GMF_BLOCK, nTxSize) + CENT;
1591
1592             if (nReward > nCalculatedReward)
1593                 return DoS(100, error("ConnectInputs() : coinstake pays too much(actual=%"PRI64d" vs calculated=%"PRI64d")", nReward, nCalculatedReward));
1594         }
1595         else
1596         {
1597             if (nValueIn < GetValueOut())
1598                 return DoS(100, error("ConnectInputs() : %s value in < value out", GetHash().ToString().substr(0,10).c_str()));
1599
1600             // Tally transaction fees
1601             int64 nTxFee = nValueIn - GetValueOut();
1602             if (nTxFee < 0)
1603                 return DoS(100, error("ConnectInputs() : %s nTxFee < 0", GetHash().ToString().substr(0,10).c_str()));
1604
1605             nFees += nTxFee;
1606             if (!MoneyRange(nFees))
1607                 return DoS(100, error("ConnectInputs() : nFees out of range"));
1608         }
1609     }
1610
1611     return true;
1612 }
1613
1614
1615 bool CTransaction::ClientConnectInputs()
1616 {
1617     if (IsCoinBase())
1618         return false;
1619
1620     // Take over previous transactions' spent pointers
1621     {
1622         LOCK(mempool.cs);
1623         int64 nValueIn = 0;
1624         for (unsigned int i = 0; i < vin.size(); i++)
1625         {
1626             // Get prev tx from single transactions in memory
1627             COutPoint prevout = vin[i].prevout;
1628             if (!mempool.exists(prevout.hash))
1629                 return false;
1630             CTransaction& txPrev = mempool.lookup(prevout.hash);
1631
1632             if (prevout.n >= txPrev.vout.size())
1633                 return false;
1634
1635             // Verify signature
1636             if (!VerifySignature(txPrev, *this, i, SCRIPT_VERIFY_NOCACHE | SCRIPT_VERIFY_P2SH, 0))
1637                 return error("ClientConnectInputs() : VerifySignature failed");
1638
1639             ///// this is redundant with the mempool.mapNextTx stuff,
1640             ///// not sure which I want to get rid of
1641             ///// this has to go away now that posNext is gone
1642             // // Check for conflicts
1643             // if (!txPrev.vout[prevout.n].posNext.IsNull())
1644             //     return error("ConnectInputs() : prev tx already used");
1645             //
1646             // // Flag outpoints as used
1647             // txPrev.vout[prevout.n].posNext = posThisTx;
1648
1649             nValueIn += txPrev.vout[prevout.n].nValue;
1650
1651             if (!MoneyRange(txPrev.vout[prevout.n].nValue) || !MoneyRange(nValueIn))
1652                 return error("ClientConnectInputs() : txin values out of range");
1653         }
1654         if (GetValueOut() > nValueIn)
1655             return false;
1656     }
1657
1658     return true;
1659 }
1660
1661
1662
1663
1664 bool CBlock::DisconnectBlock(CTxDB& txdb, CBlockIndex* pindex)
1665 {
1666     // Disconnect in reverse order
1667     for (int i = vtx.size()-1; i >= 0; i--)
1668         if (!vtx[i].DisconnectInputs(txdb))
1669             return false;
1670
1671     // Update block index on disk without changing it in memory.
1672     // The memory index structure will be changed after the db commits.
1673     if (pindex->pprev)
1674     {
1675         CDiskBlockIndex blockindexPrev(pindex->pprev);
1676         blockindexPrev.hashNext = 0;
1677         if (!txdb.WriteBlockIndex(blockindexPrev))
1678             return error("DisconnectBlock() : WriteBlockIndex failed");
1679     }
1680
1681     // ppcoin: clean up wallet after disconnecting coinstake
1682     BOOST_FOREACH(CTransaction& tx, vtx)
1683         SyncWithWallets(tx, this, false, false);
1684
1685     return true;
1686 }
1687
1688 static CCheckQueue<CScriptCheck> scriptcheckqueue(128);
1689
1690 void ThreadScriptCheck(void*) {
1691     vnThreadsRunning[THREAD_SCRIPTCHECK]++;
1692     RenameThread("novacoin-scriptch");
1693     scriptcheckqueue.Thread();
1694     vnThreadsRunning[THREAD_SCRIPTCHECK]--;
1695 }
1696
1697 void ThreadScriptCheckQuit() {
1698     scriptcheckqueue.Quit();
1699 }
1700
1701 bool CBlock::ConnectBlock(CTxDB& txdb, CBlockIndex* pindex, bool fJustCheck)
1702 {
1703     // Check it again in case a previous version let a bad block in, but skip BlockSig checking
1704     if (!CheckBlock(!fJustCheck, !fJustCheck, false))
1705         return false;
1706
1707     bool fProtocol048 = fTestNet || VALIDATION_SWITCH_TIME < nTime;
1708
1709     // Do not allow blocks that contain transactions which 'overwrite' older transactions,
1710     // unless those are already completely spent.
1711     // If such overwrites are allowed, coinbases and transactions depending upon those
1712     // can be duplicated to remove the ability to spend the first instance -- even after
1713     // being sent to another address.
1714     // See BIP30 and http://r6.ca/blog/20120206T005236Z.html for more information.
1715     // This logic is not necessary for memory pool transactions, as AcceptToMemoryPool
1716     // already refuses previously-known transaction ids entirely.
1717     // This rule was originally applied all blocks whose timestamp was after March 15, 2012, 0:00 UTC.
1718     // Now that the whole chain is irreversibly beyond that time it is applied to all blocks except the
1719     // two in the chain that violate it. This prevents exploiting the issue against nodes in their
1720     // initial block download.
1721     bool fEnforceBIP30 = true; // Always active in NovaCoin
1722     bool fScriptChecks = pindex->nHeight >= Checkpoints::GetTotalBlocksEstimate();
1723
1724     //// issue here: it doesn't know the version
1725     unsigned int nTxPos;
1726     if (fJustCheck)
1727         // FetchInputs treats CDiskTxPos(1,1,1) as a special "refer to memorypool" indicator
1728         // Since we're just checking the block and not actually connecting it, it might not (and probably shouldn't) be on the disk to get the transaction from
1729         nTxPos = 1;
1730     else
1731         nTxPos = pindex->nBlockPos + ::GetSerializeSize(CBlock(), SER_DISK, CLIENT_VERSION) - (2 * GetSizeOfCompactSize(0)) + GetSizeOfCompactSize(vtx.size());
1732
1733     map<uint256, CTxIndex> mapQueuedChanges;
1734     CCheckQueueControl<CScriptCheck> control(fScriptChecks && nScriptCheckThreads ? &scriptcheckqueue : NULL);
1735
1736     int64 nFees = 0;
1737     int64 nValueIn = 0;
1738     int64 nValueOut = 0;
1739     unsigned int nSigOps = 0;
1740     BOOST_FOREACH(CTransaction& tx, vtx)
1741     {
1742         uint256 hashTx = tx.GetHash();
1743
1744         if (fEnforceBIP30) {
1745             CTxIndex txindexOld;
1746             if (txdb.ReadTxIndex(hashTx, txindexOld)) {
1747                 BOOST_FOREACH(CDiskTxPos &pos, txindexOld.vSpent)
1748                     if (pos.IsNull())
1749                         return false;
1750             }
1751         }
1752
1753         nSigOps += tx.GetLegacySigOpCount();
1754         if (nSigOps > MAX_BLOCK_SIGOPS)
1755             return DoS(100, error("ConnectBlock() : too many sigops"));
1756
1757         CDiskTxPos posThisTx(pindex->nFile, pindex->nBlockPos, nTxPos);
1758         if (!fJustCheck)
1759             nTxPos += ::GetSerializeSize(tx, SER_DISK, CLIENT_VERSION);
1760
1761         MapPrevTx mapInputs;
1762         if (tx.IsCoinBase())
1763             nValueOut += tx.GetValueOut();
1764         else
1765         {
1766             bool fInvalid;
1767             if (!tx.FetchInputs(txdb, mapQueuedChanges, true, false, mapInputs, fInvalid))
1768                 return false;
1769
1770             // Add in sigops done by pay-to-script-hash inputs;
1771             // this is to prevent a "rogue miner" from creating
1772             // an incredibly-expensive-to-validate block.
1773             nSigOps += tx.GetP2SHSigOpCount(mapInputs);
1774             if (nSigOps > MAX_BLOCK_SIGOPS)
1775                 return DoS(100, error("ConnectBlock() : too many sigops"));
1776
1777             int64 nTxValueIn = tx.GetValueIn(mapInputs);
1778             int64 nTxValueOut = tx.GetValueOut();
1779             nValueIn += nTxValueIn;
1780             nValueOut += nTxValueOut;
1781             if (!tx.IsCoinStake())
1782                 nFees += nTxValueIn - nTxValueOut;
1783
1784             std::vector<CScriptCheck> vChecks;
1785             if (!tx.ConnectInputs(txdb, mapInputs, mapQueuedChanges, posThisTx, pindex, true, false, fScriptChecks, SCRIPT_VERIFY_NOCACHE | SCRIPT_VERIFY_P2SH, nScriptCheckThreads ? &vChecks : NULL))
1786                 return false;
1787             control.Add(vChecks);
1788         }
1789
1790         mapQueuedChanges[hashTx] = CTxIndex(posThisTx, tx.vout.size());
1791     }
1792
1793     if (!control.Wait())
1794         return DoS(100, false);
1795
1796     if (IsProofOfWork())
1797     {
1798         int64 nBlockReward = GetProofOfWorkReward(nBits, fProtocol048 ? nFees : 0);
1799
1800         // Check coinbase reward
1801         if (vtx[0].GetValueOut() > nBlockReward)
1802             return error("CheckBlock() : coinbase reward exceeded (actual=%"PRI64d" vs calculated=%"PRI64d")",
1803                    vtx[0].GetValueOut(),
1804                    nBlockReward);
1805     }
1806
1807     // track money supply and mint amount info
1808     pindex->nMint = nValueOut - nValueIn + nFees;
1809     pindex->nMoneySupply = (pindex->pprev? pindex->pprev->nMoneySupply : 0) + nValueOut - nValueIn;
1810     if (!txdb.WriteBlockIndex(CDiskBlockIndex(pindex)))
1811         return error("Connect() : WriteBlockIndex for pindex failed");
1812
1813     // fees are not collected by proof-of-stake miners
1814     // fees are destroyed to compensate the entire network
1815     if (fProtocol048 && fDebug && IsProofOfStake() && GetBoolArg("-printcreation"))
1816         printf("ConnectBlock() : destroy=%s nFees=%"PRI64d"\n", FormatMoney(nFees).c_str(), nFees);
1817
1818     if (fJustCheck)
1819         return true;
1820
1821     // Write queued txindex changes
1822     for (map<uint256, CTxIndex>::iterator mi = mapQueuedChanges.begin(); mi != mapQueuedChanges.end(); ++mi)
1823     {
1824         if (!txdb.UpdateTxIndex((*mi).first, (*mi).second))
1825             return error("ConnectBlock() : UpdateTxIndex failed");
1826     }
1827
1828     // Update block index on disk without changing it in memory.
1829     // The memory index structure will be changed after the db commits.
1830     if (pindex->pprev)
1831     {
1832         CDiskBlockIndex blockindexPrev(pindex->pprev);
1833         blockindexPrev.hashNext = pindex->GetBlockHash();
1834         if (!txdb.WriteBlockIndex(blockindexPrev))
1835             return error("ConnectBlock() : WriteBlockIndex failed");
1836     }
1837
1838     // Watch for transactions paying to me
1839     BOOST_FOREACH(CTransaction& tx, vtx)
1840         SyncWithWallets(tx, this, true);
1841
1842     return true;
1843 }
1844
1845 bool static Reorganize(CTxDB& txdb, CBlockIndex* pindexNew)
1846 {
1847     printf("REORGANIZE\n");
1848
1849     // Find the fork
1850     CBlockIndex* pfork = pindexBest;
1851     CBlockIndex* plonger = pindexNew;
1852     while (pfork != plonger)
1853     {
1854         while (plonger->nHeight > pfork->nHeight)
1855             if (!(plonger = plonger->pprev))
1856                 return error("Reorganize() : plonger->pprev is null");
1857         if (pfork == plonger)
1858             break;
1859         if (!(pfork = pfork->pprev))
1860             return error("Reorganize() : pfork->pprev is null");
1861     }
1862
1863     // List of what to disconnect
1864     vector<CBlockIndex*> vDisconnect;
1865     for (CBlockIndex* pindex = pindexBest; pindex != pfork; pindex = pindex->pprev)
1866         vDisconnect.push_back(pindex);
1867
1868     // List of what to connect
1869     vector<CBlockIndex*> vConnect;
1870     for (CBlockIndex* pindex = pindexNew; pindex != pfork; pindex = pindex->pprev)
1871         vConnect.push_back(pindex);
1872     reverse(vConnect.begin(), vConnect.end());
1873
1874     printf("REORGANIZE: Disconnect %"PRIszu" blocks; %s..%s\n", vDisconnect.size(), pfork->GetBlockHash().ToString().substr(0,20).c_str(), pindexBest->GetBlockHash().ToString().substr(0,20).c_str());
1875     printf("REORGANIZE: Connect %"PRIszu" blocks; %s..%s\n", vConnect.size(), pfork->GetBlockHash().ToString().substr(0,20).c_str(), pindexNew->GetBlockHash().ToString().substr(0,20).c_str());
1876
1877     // Disconnect shorter branch
1878     vector<CTransaction> vResurrect;
1879     BOOST_FOREACH(CBlockIndex* pindex, vDisconnect)
1880     {
1881         CBlock block;
1882         if (!block.ReadFromDisk(pindex))
1883             return error("Reorganize() : ReadFromDisk for disconnect failed");
1884         if (!block.DisconnectBlock(txdb, pindex))
1885             return error("Reorganize() : DisconnectBlock %s failed", pindex->GetBlockHash().ToString().substr(0,20).c_str());
1886
1887         // Queue memory transactions to resurrect
1888         BOOST_FOREACH(const CTransaction& tx, block.vtx)
1889             if (!(tx.IsCoinBase() || tx.IsCoinStake()))
1890                 vResurrect.push_back(tx);
1891     }
1892
1893     // Connect longer branch
1894     vector<CTransaction> vDelete;
1895     for (unsigned int i = 0; i < vConnect.size(); i++)
1896     {
1897         CBlockIndex* pindex = vConnect[i];
1898         CBlock block;
1899         if (!block.ReadFromDisk(pindex))
1900             return error("Reorganize() : ReadFromDisk for connect failed");
1901         if (!block.ConnectBlock(txdb, pindex))
1902         {
1903             // Invalid block
1904             return error("Reorganize() : ConnectBlock %s failed", pindex->GetBlockHash().ToString().substr(0,20).c_str());
1905         }
1906
1907         // Queue memory transactions to delete
1908         BOOST_FOREACH(const CTransaction& tx, block.vtx)
1909             vDelete.push_back(tx);
1910     }
1911     if (!txdb.WriteHashBestChain(pindexNew->GetBlockHash()))
1912         return error("Reorganize() : WriteHashBestChain failed");
1913
1914     // Make sure it's successfully written to disk before changing memory structure
1915     if (!txdb.TxnCommit())
1916         return error("Reorganize() : TxnCommit failed");
1917
1918     // Disconnect shorter branch
1919     BOOST_FOREACH(CBlockIndex* pindex, vDisconnect)
1920         if (pindex->pprev)
1921             pindex->pprev->pnext = NULL;
1922
1923     // Connect longer branch
1924     BOOST_FOREACH(CBlockIndex* pindex, vConnect)
1925         if (pindex->pprev)
1926             pindex->pprev->pnext = pindex;
1927
1928     // Resurrect memory transactions that were in the disconnected branch
1929     BOOST_FOREACH(CTransaction& tx, vResurrect)
1930         tx.AcceptToMemoryPool(txdb, false);
1931
1932     // Delete redundant memory transactions that are in the connected branch
1933     BOOST_FOREACH(CTransaction& tx, vDelete)
1934         mempool.remove(tx);
1935
1936     printf("REORGANIZE: done\n");
1937
1938     return true;
1939 }
1940
1941
1942 // Called from inside SetBestChain: attaches a block to the new best chain being built
1943 bool CBlock::SetBestChainInner(CTxDB& txdb, CBlockIndex *pindexNew)
1944 {
1945     uint256 hash = GetHash();
1946
1947     // Adding to current best branch
1948     if (!ConnectBlock(txdb, pindexNew) || !txdb.WriteHashBestChain(hash))
1949     {
1950         txdb.TxnAbort();
1951         InvalidChainFound(pindexNew);
1952         return false;
1953     }
1954     if (!txdb.TxnCommit())
1955         return error("SetBestChain() : TxnCommit failed");
1956
1957     // Add to current best branch
1958     pindexNew->pprev->pnext = pindexNew;
1959
1960     // Delete redundant memory transactions
1961     BOOST_FOREACH(CTransaction& tx, vtx)
1962         mempool.remove(tx);
1963
1964     return true;
1965 }
1966
1967 bool CBlock::SetBestChain(CTxDB& txdb, CBlockIndex* pindexNew)
1968 {
1969     uint256 hash = GetHash();
1970
1971     if (!txdb.TxnBegin())
1972         return error("SetBestChain() : TxnBegin failed");
1973
1974     if (pindexGenesisBlock == NULL && hash == (!fTestNet ? hashGenesisBlock : hashGenesisBlockTestNet))
1975     {
1976         txdb.WriteHashBestChain(hash);
1977         if (!txdb.TxnCommit())
1978             return error("SetBestChain() : TxnCommit failed");
1979         pindexGenesisBlock = pindexNew;
1980     }
1981     else if (hashPrevBlock == hashBestChain)
1982     {
1983         if (!SetBestChainInner(txdb, pindexNew))
1984             return error("SetBestChain() : SetBestChainInner failed");
1985     }
1986     else
1987     {
1988         // the first block in the new chain that will cause it to become the new best chain
1989         CBlockIndex *pindexIntermediate = pindexNew;
1990
1991         // list of blocks that need to be connected afterwards
1992         std::vector<CBlockIndex*> vpindexSecondary;
1993
1994         // Reorganize is costly in terms of db load, as it works in a single db transaction.
1995         // Try to limit how much needs to be done inside
1996         while (pindexIntermediate->pprev && pindexIntermediate->pprev->nChainTrust > pindexBest->nChainTrust)
1997         {
1998             vpindexSecondary.push_back(pindexIntermediate);
1999             pindexIntermediate = pindexIntermediate->pprev;
2000         }
2001
2002         if (!vpindexSecondary.empty())
2003             printf("Postponing %"PRIszu" reconnects\n", vpindexSecondary.size());
2004
2005         // Switch to new best branch
2006         if (!Reorganize(txdb, pindexIntermediate))
2007         {
2008             txdb.TxnAbort();
2009             InvalidChainFound(pindexNew);
2010             return error("SetBestChain() : Reorganize failed");
2011         }
2012
2013         // Connect further blocks
2014         BOOST_REVERSE_FOREACH(CBlockIndex *pindex, vpindexSecondary)
2015         {
2016             CBlock block;
2017             if (!block.ReadFromDisk(pindex))
2018             {
2019                 printf("SetBestChain() : ReadFromDisk failed\n");
2020                 break;
2021             }
2022             if (!txdb.TxnBegin()) {
2023                 printf("SetBestChain() : TxnBegin 2 failed\n");
2024                 break;
2025             }
2026             // errors now are not fatal, we still did a reorganisation to a new chain in a valid way
2027             if (!block.SetBestChainInner(txdb, pindex))
2028                 break;
2029         }
2030     }
2031
2032     // Update best block in wallet (so we can detect restored wallets)
2033     bool fIsInitialDownload = IsInitialBlockDownload();
2034     if (!fIsInitialDownload)
2035     {
2036         const CBlockLocator locator(pindexNew);
2037         ::SetBestChain(locator);
2038     }
2039
2040     // New best block
2041     hashBestChain = hash;
2042     pindexBest = pindexNew;
2043     pblockindexFBBHLast = NULL;
2044     nBestHeight = pindexBest->nHeight;
2045     nBestChainTrust = pindexNew->nChainTrust;
2046     nTimeBestReceived = GetTime();
2047     nTransactionsUpdated++;
2048
2049     uint256 nBestBlockTrust = pindexBest->nHeight != 0 ? (pindexBest->nChainTrust - pindexBest->pprev->nChainTrust) : pindexBest->nChainTrust;
2050
2051     printf("SetBestChain: new best=%s  height=%d  trust=%s  blocktrust=%"PRI64d"  date=%s\n",
2052       hashBestChain.ToString().substr(0,20).c_str(), nBestHeight,
2053       CBigNum(nBestChainTrust).ToString().c_str(),
2054       nBestBlockTrust.Get64(),
2055       DateTimeStrFormat("%x %H:%M:%S", pindexBest->GetBlockTime()).c_str());
2056
2057     // Check the version of the last 100 blocks to see if we need to upgrade:
2058     if (!fIsInitialDownload)
2059     {
2060         int nUpgraded = 0;
2061         const CBlockIndex* pindex = pindexBest;
2062         for (int i = 0; i < 100 && pindex != NULL; i++)
2063         {
2064             if (pindex->nVersion > CBlock::CURRENT_VERSION)
2065                 ++nUpgraded;
2066             pindex = pindex->pprev;
2067         }
2068         if (nUpgraded > 0)
2069             printf("SetBestChain: %d of last 100 blocks above version %d\n", nUpgraded, CBlock::CURRENT_VERSION);
2070         if (nUpgraded > 100/2)
2071             // strMiscWarning is read by GetWarnings(), called by Qt and the JSON-RPC code to warn the user:
2072             strMiscWarning = _("Warning: This version is obsolete, upgrade required!");
2073     }
2074
2075     std::string strCmd = GetArg("-blocknotify", "");
2076
2077     if (!fIsInitialDownload && !strCmd.empty())
2078     {
2079         boost::replace_all(strCmd, "%s", hashBestChain.GetHex());
2080         boost::thread t(runCommand, strCmd); // thread runs free
2081     }
2082
2083     return true;
2084 }
2085
2086 // ppcoin: total coin age spent in transaction, in the unit of coin-days.
2087 // Only those coins meeting minimum age requirement counts. As those
2088 // transactions not in main chain are not currently indexed so we
2089 // might not find out about their coin age. Older transactions are 
2090 // guaranteed to be in main chain by sync-checkpoint. This rule is
2091 // introduced to help nodes establish a consistent view of the coin
2092 // age (trust score) of competing branches.
2093 bool CTransaction::GetCoinAge(CTxDB& txdb, uint64& nCoinAge) const
2094 {
2095     CBigNum bnCentSecond = 0;  // coin age in the unit of cent-seconds
2096     nCoinAge = 0;
2097
2098     if (IsCoinBase())
2099         return true;
2100
2101     BOOST_FOREACH(const CTxIn& txin, vin)
2102     {
2103         // First try finding the previous transaction in database
2104         CTransaction txPrev;
2105         CTxIndex txindex;
2106         if (!txPrev.ReadFromDisk(txdb, txin.prevout, txindex))
2107             continue;  // previous transaction not in main chain
2108         if (nTime < txPrev.nTime)
2109             return false;  // Transaction timestamp violation
2110
2111         // Read block header
2112         CBlock block;
2113         if (!block.ReadFromDisk(txindex.pos.nFile, txindex.pos.nBlockPos, false))
2114             return false; // unable to read block of previous transaction
2115         if (block.GetBlockTime() + nStakeMinAge > nTime)
2116             continue; // only count coins meeting min age requirement
2117
2118         int64 nValueIn = txPrev.vout[txin.prevout.n].nValue;
2119         bnCentSecond += CBigNum(nValueIn) * (nTime-txPrev.nTime) / CENT;
2120
2121         if (fDebug && GetBoolArg("-printcoinage"))
2122             printf("coin age nValueIn=%"PRI64d" nTimeDiff=%d bnCentSecond=%s\n", nValueIn, nTime - txPrev.nTime, bnCentSecond.ToString().c_str());
2123     }
2124
2125     CBigNum bnCoinDay = bnCentSecond * CENT / COIN / (24 * 60 * 60);
2126     if (fDebug && GetBoolArg("-printcoinage"))
2127         printf("coin age bnCoinDay=%s\n", bnCoinDay.ToString().c_str());
2128     nCoinAge = bnCoinDay.getuint64();
2129     return true;
2130 }
2131
2132 // ppcoin: total coin age spent in block, in the unit of coin-days.
2133 bool CBlock::GetCoinAge(uint64& nCoinAge) const
2134 {
2135     nCoinAge = 0;
2136
2137     CTxDB txdb("r");
2138     BOOST_FOREACH(const CTransaction& tx, vtx)
2139     {
2140         uint64 nTxCoinAge;
2141         if (tx.GetCoinAge(txdb, nTxCoinAge))
2142             nCoinAge += nTxCoinAge;
2143         else
2144             return false;
2145     }
2146
2147     if (nCoinAge == 0) // block coin age minimum 1 coin-day
2148         nCoinAge = 1;
2149     if (fDebug && GetBoolArg("-printcoinage"))
2150         printf("block coin age total nCoinDays=%"PRI64d"\n", nCoinAge);
2151     return true;
2152 }
2153
2154 bool CBlock::AddToBlockIndex(unsigned int nFile, unsigned int nBlockPos)
2155 {
2156     // Check for duplicate
2157     uint256 hash = GetHash();
2158     if (mapBlockIndex.count(hash))
2159         return error("AddToBlockIndex() : %s already exists", hash.ToString().substr(0,20).c_str());
2160
2161     // Construct new block index object
2162     CBlockIndex* pindexNew = new CBlockIndex(nFile, nBlockPos, *this);
2163     if (!pindexNew)
2164         return error("AddToBlockIndex() : new CBlockIndex failed");
2165     pindexNew->phashBlock = &hash;
2166     map<uint256, CBlockIndex*>::iterator miPrev = mapBlockIndex.find(hashPrevBlock);
2167     if (miPrev != mapBlockIndex.end())
2168     {
2169         pindexNew->pprev = (*miPrev).second;
2170         pindexNew->nHeight = pindexNew->pprev->nHeight + 1;
2171     }
2172
2173     // ppcoin: compute chain trust score
2174     pindexNew->nChainTrust = (pindexNew->pprev ? pindexNew->pprev->nChainTrust : 0) + pindexNew->GetBlockTrust();
2175
2176     // ppcoin: compute stake entropy bit for stake modifier
2177     if (!pindexNew->SetStakeEntropyBit(GetStakeEntropyBit(pindexNew->nTime)))
2178         return error("AddToBlockIndex() : SetStakeEntropyBit() failed");
2179
2180     // ppcoin: record proof-of-stake hash value
2181     if (pindexNew->IsProofOfStake())
2182     {
2183         if (!mapProofOfStake.count(hash))
2184             return error("AddToBlockIndex() : hashProofOfStake not found in map");
2185         pindexNew->hashProofOfStake = mapProofOfStake[hash];
2186     }
2187
2188     // ppcoin: compute stake modifier
2189     uint64 nStakeModifier = 0;
2190     bool fGeneratedStakeModifier = false;
2191     if (!ComputeNextStakeModifier(pindexNew, nStakeModifier, fGeneratedStakeModifier))
2192         return error("AddToBlockIndex() : ComputeNextStakeModifier() failed");
2193     pindexNew->SetStakeModifier(nStakeModifier, fGeneratedStakeModifier);
2194     pindexNew->nStakeModifierChecksum = GetStakeModifierChecksum(pindexNew);
2195     if (!CheckStakeModifierCheckpoints(pindexNew->nHeight, pindexNew->nStakeModifierChecksum))
2196         return error("AddToBlockIndex() : Rejected by stake modifier checkpoint height=%d, modifier=0x%016"PRI64x, pindexNew->nHeight, nStakeModifier);
2197
2198     // Add to mapBlockIndex
2199     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.insert(make_pair(hash, pindexNew)).first;
2200     if (pindexNew->IsProofOfStake())
2201         setStakeSeen.insert(make_pair(pindexNew->prevoutStake, pindexNew->nStakeTime));
2202     pindexNew->phashBlock = &((*mi).first);
2203
2204     // Write to disk block index
2205     CTxDB txdb;
2206     if (!txdb.TxnBegin())
2207         return false;
2208     txdb.WriteBlockIndex(CDiskBlockIndex(pindexNew));
2209     if (!txdb.TxnCommit())
2210         return false;
2211
2212     // New best
2213     if (pindexNew->nChainTrust > nBestChainTrust)
2214         if (!SetBestChain(txdb, pindexNew))
2215             return false;
2216
2217     if (pindexNew == pindexBest)
2218     {
2219         // Notify UI to display prev block's coinbase if it was ours
2220         static uint256 hashPrevBestCoinBase;
2221         UpdatedTransaction(hashPrevBestCoinBase);
2222         hashPrevBestCoinBase = vtx[0].GetHash();
2223     }
2224
2225     uiInterface.NotifyBlocksChanged();
2226     return true;
2227 }
2228
2229
2230
2231
2232 bool CBlock::CheckBlock(bool fCheckPOW, bool fCheckMerkleRoot, bool fCheckSig) const
2233 {
2234     // These are checks that are independent of context
2235     // that can be verified before saving an orphan block.
2236
2237     // Size limits
2238     if (vtx.empty() || vtx.size() > MAX_BLOCK_SIZE || ::GetSerializeSize(*this, SER_NETWORK, PROTOCOL_VERSION) > MAX_BLOCK_SIZE)
2239         return DoS(100, error("CheckBlock() : size limits failed"));
2240
2241     bool fProtocol048 = fTestNet || VALIDATION_SWITCH_TIME < nTime;
2242
2243     // Check proof of work matches claimed amount
2244     if (fCheckPOW && IsProofOfWork() && !CheckProofOfWork(GetHash(), nBits))
2245         return DoS(50, error("CheckBlock() : proof of work failed"));
2246
2247     // Check timestamp
2248     if (GetBlockTime() > FutureDrift(GetAdjustedTime()))
2249         return error("CheckBlock() : block timestamp too far in the future");
2250
2251     // First transaction must be coinbase, the rest must not be
2252     if (vtx.empty() || !vtx[0].IsCoinBase())
2253         return DoS(100, error("CheckBlock() : first tx is not coinbase"));
2254
2255     if (!fProtocol048)
2256     {
2257         // Check coinbase timestamp
2258         if (GetBlockTime() < (int64)vtx[0].nTime)
2259             return DoS(100, error("CheckBlock() : coinbase timestamp violation"));
2260     }
2261     else
2262     {
2263         // Check coinbase timestamp
2264         if (GetBlockTime() < PastDrift((int64)vtx[0].nTime))
2265             return DoS(50, error("CheckBlock() : coinbase timestamp is too late"));
2266     }
2267
2268     for (unsigned int i = 1; i < vtx.size(); i++)
2269     {
2270         if (vtx[i].IsCoinBase())
2271             return DoS(100, error("CheckBlock() : more than one coinbase"));
2272
2273         // Check transaction timestamp
2274         if (GetBlockTime() < (int64)vtx[i].nTime)
2275             return DoS(50, error("CheckBlock() : block timestamp earlier than transaction timestamp"));
2276     }
2277
2278     if (IsProofOfStake())
2279     {
2280         if (fProtocol048)
2281         {
2282             if (nNonce != 0)
2283                 return DoS(100, error("CheckBlock() : non-zero nonce in proof-of-stake block"));
2284         }
2285
2286         // Coinbase output should be empty if proof-of-stake block
2287         if (vtx[0].vout.size() != 1 || !vtx[0].vout[0].IsEmpty())
2288             return DoS(100, error("CheckBlock() : coinbase output not empty for proof-of-stake block"));
2289
2290         // Second transaction must be coinstake, the rest must not be
2291         if (vtx.empty() || !vtx[1].IsCoinStake())
2292             return DoS(100, error("CheckBlock() : second tx is not coinstake"));
2293         for (unsigned int i = 2; i < vtx.size(); i++)
2294             if (vtx[i].IsCoinStake())
2295                 return DoS(100, error("CheckBlock() : more than one coinstake"));
2296
2297         // Check coinstake timestamp
2298         if (GetBlockTime() != (int64)vtx[1].nTime)
2299             return DoS(50, error("CheckBlock() : coinstake timestamp violation nTimeBlock=%"PRI64d" nTimeTx=%u", GetBlockTime(), vtx[1].nTime));
2300
2301         // NovaCoin: check proof-of-stake block signature
2302         if (fCheckSig && !CheckBlockSignature(true))
2303             return DoS(100, error("CheckBlock() : bad proof-of-stake block signature"));
2304     }
2305     else
2306     {
2307         // Should we check proof-of-work block signature or not?
2308         //
2309         // * Always skip on TestNet
2310         // * Perform checking for the first 9689 blocks
2311         // * Perform checking since last checkpoint until 20 Sep 2013 (will be removed after)
2312
2313         if(!fTestNet && fCheckSig)
2314         {
2315             bool checkEntropySig = (GetBlockTime() < ENTROPY_SWITCH_TIME);
2316
2317             // NovaCoin: check proof-of-work block signature
2318             if (checkEntropySig && !CheckBlockSignature(false))
2319                 return DoS(100, error("CheckBlock() : bad proof-of-work block signature"));
2320         }
2321     }
2322
2323     // Check transactions
2324     BOOST_FOREACH(const CTransaction& tx, vtx)
2325     {
2326         if (!tx.CheckTransaction())
2327             return DoS(tx.nDoS, error("CheckBlock() : CheckTransaction failed"));
2328     }
2329
2330     // Check for duplicate txids. This is caught by ConnectInputs(),
2331     // but catching it earlier avoids a potential DoS attack:
2332     set<uint256> uniqueTx;
2333     BOOST_FOREACH(const CTransaction& tx, vtx)
2334     {
2335         uniqueTx.insert(tx.GetHash());
2336     }
2337     if (uniqueTx.size() != vtx.size())
2338         return DoS(100, error("CheckBlock() : duplicate transaction"));
2339
2340     unsigned int nSigOps = 0;
2341     BOOST_FOREACH(const CTransaction& tx, vtx)
2342     {
2343         nSigOps += tx.GetLegacySigOpCount();
2344     }
2345     if (nSigOps > MAX_BLOCK_SIGOPS)
2346         return DoS(100, error("CheckBlock() : out-of-bounds SigOpCount"));
2347
2348     // Check merkle root
2349     if (fCheckMerkleRoot && hashMerkleRoot != BuildMerkleTree())
2350         return DoS(100, error("CheckBlock() : hashMerkleRoot mismatch"));
2351
2352
2353     return true;
2354 }
2355
2356 bool CBlock::AcceptBlock()
2357 {
2358     // Check for duplicate
2359     uint256 hash = GetHash();
2360     if (mapBlockIndex.count(hash))
2361         return error("AcceptBlock() : block already in mapBlockIndex");
2362
2363     // Get prev block index
2364     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashPrevBlock);
2365     if (mi == mapBlockIndex.end())
2366         return DoS(10, error("AcceptBlock() : prev block not found"));
2367     CBlockIndex* pindexPrev = (*mi).second;
2368     int nHeight = pindexPrev->nHeight+1;
2369
2370     // Check proof-of-work or proof-of-stake
2371     if (nBits != GetNextTargetRequired(pindexPrev, IsProofOfStake()))
2372         return DoS(100, error("AcceptBlock() : incorrect %s", IsProofOfWork() ? "proof-of-work" : "proof-of-stake"));
2373
2374     // Check timestamp against prev
2375     if (GetBlockTime() <= pindexPrev->GetMedianTimePast() || FutureDrift(GetBlockTime()) < pindexPrev->GetBlockTime())
2376         return error("AcceptBlock() : block's timestamp is too early");
2377
2378     // Check that all transactions are finalized
2379     BOOST_FOREACH(const CTransaction& tx, vtx)
2380         if (!tx.IsFinal(nHeight, GetBlockTime()))
2381             return DoS(10, error("AcceptBlock() : contains a non-final transaction"));
2382
2383     // Check that the block chain matches the known block chain up to a checkpoint
2384     if (!Checkpoints::CheckHardened(nHeight, hash))
2385         return DoS(100, error("AcceptBlock() : rejected by hardened checkpoint lock-in at %d", nHeight));
2386
2387     bool cpSatisfies = Checkpoints::CheckSync(hash, pindexPrev);
2388
2389     // Check that the block satisfies synchronized checkpoint
2390     if (CheckpointsMode == Checkpoints::STRICT && !cpSatisfies)
2391         return error("AcceptBlock() : rejected by synchronized checkpoint");
2392
2393     if (CheckpointsMode == Checkpoints::ADVISORY && !cpSatisfies)
2394         strMiscWarning = _("WARNING: syncronized checkpoint violation detected, but skipped!");
2395
2396     // Enforce rule that the coinbase starts with serialized block height
2397     CScript expect = CScript() << nHeight;
2398     if (vtx[0].vin[0].scriptSig.size() < expect.size() ||
2399         !std::equal(expect.begin(), expect.end(), vtx[0].vin[0].scriptSig.begin()))
2400         return DoS(100, error("AcceptBlock() : block height mismatch in coinbase"));
2401
2402     // Write block to history file
2403     if (!CheckDiskSpace(::GetSerializeSize(*this, SER_DISK, CLIENT_VERSION)))
2404         return error("AcceptBlock() : out of disk space");
2405     unsigned int nFile = -1;
2406     unsigned int nBlockPos = 0;
2407     if (!WriteToDisk(nFile, nBlockPos))
2408         return error("AcceptBlock() : WriteToDisk failed");
2409     if (!AddToBlockIndex(nFile, nBlockPos))
2410         return error("AcceptBlock() : AddToBlockIndex failed");
2411
2412     // Relay inventory, but don't relay old inventory during initial block download
2413     int nBlockEstimate = Checkpoints::GetTotalBlocksEstimate();
2414     if (hashBestChain == hash)
2415     {
2416         LOCK(cs_vNodes);
2417         BOOST_FOREACH(CNode* pnode, vNodes)
2418             if (nBestHeight > (pnode->nStartingHeight != -1 ? pnode->nStartingHeight - 2000 : nBlockEstimate))
2419                 pnode->PushInventory(CInv(MSG_BLOCK, hash));
2420     }
2421
2422     // ppcoin: check pending sync-checkpoint
2423     Checkpoints::AcceptPendingSyncCheckpoint();
2424
2425     return true;
2426 }
2427
2428 uint256 CBlockIndex::GetBlockTrust() const
2429 {
2430     CBigNum bnTarget;
2431     bnTarget.SetCompact(nBits);
2432
2433     if (bnTarget <= 0)
2434         return 0;
2435
2436     /* Old protocol */
2437     if (!fTestNet && GetBlockTime() < CHAINCHECKS_SWITCH_TIME)
2438         return (IsProofOfStake()? ((CBigNum(1)<<256) / (bnTarget+1)).getuint256() : 1);
2439
2440     /* New protocol */
2441
2442     // Calculate work amount for block
2443     uint256 nPoWTrust = (CBigNum(nPoWBase) / (bnTarget+1)).getuint256();
2444
2445     // Set nPowTrust to 1 if we are checking PoS block or PoW difficulty is too low
2446     nPoWTrust = (IsProofOfStake() || nPoWTrust < 1) ? 1 : nPoWTrust;
2447
2448     // Return nPoWTrust for the first 12 blocks
2449     if (pprev == NULL || pprev->nHeight < 12)
2450         return nPoWTrust;
2451
2452     const CBlockIndex* currentIndex = pprev;
2453
2454     if(IsProofOfStake())
2455     {
2456         CBigNum bnNewTrust = (CBigNum(1)<<256) / (bnTarget+1);
2457
2458         // Return 1/3 of score if parent block is not the PoW block
2459         if (!pprev->IsProofOfWork())
2460             return (bnNewTrust / 3).getuint256();
2461
2462         int nPoWCount = 0;
2463
2464         // Check last 12 blocks type
2465         while (pprev->nHeight - currentIndex->nHeight < 12)
2466         {
2467             if (currentIndex->IsProofOfWork())
2468                 nPoWCount++;
2469             currentIndex = currentIndex->pprev;
2470         }
2471
2472         // Return 1/3 of score if less than 3 PoW blocks found
2473         if (nPoWCount < 3)
2474             return (bnNewTrust / 3).getuint256();
2475
2476         return bnNewTrust.getuint256();
2477     }
2478     else
2479     {
2480         CBigNum bnLastBlockTrust = CBigNum(pprev->nChainTrust - pprev->pprev->nChainTrust);
2481
2482         // Return nPoWTrust + 2/3 of previous block score if two parent blocks are not PoS blocks
2483         if (!(pprev->IsProofOfStake() && pprev->pprev->IsProofOfStake()))
2484             return nPoWTrust + (2 * bnLastBlockTrust / 3).getuint256();
2485
2486         int nPoSCount = 0;
2487
2488         // Check last 12 blocks type
2489         while (pprev->nHeight - currentIndex->nHeight < 12)
2490         {
2491             if (currentIndex->IsProofOfStake())
2492                 nPoSCount++;
2493             currentIndex = currentIndex->pprev;
2494         }
2495
2496         // Return nPoWTrust + 2/3 of previous block score if less than 7 PoS blocks found
2497         if (nPoSCount < 7)
2498             return nPoWTrust + (2 * bnLastBlockTrust / 3).getuint256();
2499
2500         bnTarget.SetCompact(pprev->nBits);
2501
2502         if (bnTarget <= 0)
2503             return 0;
2504
2505         CBigNum bnNewTrust = (CBigNum(1)<<256) / (bnTarget+1);
2506
2507         // Return nPoWTrust + full trust score for previous block nBits
2508         return nPoWTrust + bnNewTrust.getuint256();
2509     }
2510 }
2511
2512 bool CBlockIndex::IsSuperMajority(int minVersion, const CBlockIndex* pstart, unsigned int nRequired, unsigned int nToCheck)
2513 {
2514     unsigned int nFound = 0;
2515     for (unsigned int i = 0; i < nToCheck && nFound < nRequired && pstart != NULL; i++)
2516     {
2517         if (pstart->nVersion >= minVersion)
2518             ++nFound;
2519         pstart = pstart->pprev;
2520     }
2521     return (nFound >= nRequired);
2522 }
2523
2524 bool ProcessBlock(CNode* pfrom, CBlock* pblock)
2525 {
2526     // Check for duplicate
2527     uint256 hash = pblock->GetHash();
2528     if (mapBlockIndex.count(hash))
2529         return error("ProcessBlock() : already have block %d %s", mapBlockIndex[hash]->nHeight, hash.ToString().substr(0,20).c_str());
2530     if (mapOrphanBlocks.count(hash))
2531         return error("ProcessBlock() : already have block (orphan) %s", hash.ToString().substr(0,20).c_str());
2532
2533     // ppcoin: check proof-of-stake
2534     // Limited duplicity on stake: prevents block flood attack
2535     // Duplicate stake allowed only when there is orphan child block
2536     if (pblock->IsProofOfStake() && setStakeSeen.count(pblock->GetProofOfStake()) && !mapOrphanBlocksByPrev.count(hash) && !Checkpoints::WantedByPendingSyncCheckpoint(hash))
2537         return error("ProcessBlock() : duplicate proof-of-stake (%s, %d) for block %s", pblock->GetProofOfStake().first.ToString().c_str(), pblock->GetProofOfStake().second, hash.ToString().c_str());
2538
2539     // Preliminary checks
2540     if (!pblock->CheckBlock())
2541         return error("ProcessBlock() : CheckBlock FAILED");
2542
2543     // ppcoin: verify hash target and signature of coinstake tx
2544     if (pblock->IsProofOfStake())
2545     {
2546         uint256 hashProofOfStake = 0, targetProofOfStake = 0;
2547         if (!CheckProofOfStake(pblock->vtx[1], pblock->nBits, hashProofOfStake, targetProofOfStake))
2548         {
2549             printf("WARNING: ProcessBlock(): check proof-of-stake failed for block %s\n", hash.ToString().c_str());
2550             return false; // do not error here as we expect this during initial block download
2551         }
2552         if (!mapProofOfStake.count(hash)) // add to mapProofOfStake
2553             mapProofOfStake.insert(make_pair(hash, hashProofOfStake));
2554     }
2555
2556     CBlockIndex* pcheckpoint = Checkpoints::GetLastSyncCheckpoint();
2557     if (pcheckpoint && pblock->hashPrevBlock != hashBestChain && !Checkpoints::WantedByPendingSyncCheckpoint(hash))
2558     {
2559         // Extra checks to prevent "fill up memory by spamming with bogus blocks"
2560         int64 deltaTime = pblock->GetBlockTime() - pcheckpoint->nTime;
2561         CBigNum bnNewBlock;
2562         bnNewBlock.SetCompact(pblock->nBits);
2563         CBigNum bnRequired;
2564
2565         if (pblock->IsProofOfStake())
2566             bnRequired.SetCompact(ComputeMinStake(GetLastBlockIndex(pcheckpoint, true)->nBits, deltaTime, pblock->nTime));
2567         else
2568             bnRequired.SetCompact(ComputeMinWork(GetLastBlockIndex(pcheckpoint, false)->nBits, deltaTime));
2569
2570         if (bnNewBlock > bnRequired)
2571         {
2572             if (pfrom)
2573                 pfrom->Misbehaving(100);
2574             return error("ProcessBlock() : block with too little %s", pblock->IsProofOfStake()? "proof-of-stake" : "proof-of-work");
2575         }
2576     }
2577
2578     // ppcoin: ask for pending sync-checkpoint if any
2579     if (!IsInitialBlockDownload())
2580         Checkpoints::AskForPendingSyncCheckpoint(pfrom);
2581
2582     // If don't already have its previous block, shunt it off to holding area until we get it
2583     if (!mapBlockIndex.count(pblock->hashPrevBlock))
2584     {
2585         printf("ProcessBlock: ORPHAN BLOCK, prev=%s\n", pblock->hashPrevBlock.ToString().substr(0,20).c_str());
2586         CBlock* pblock2 = new CBlock(*pblock);
2587         // ppcoin: check proof-of-stake
2588         if (pblock2->IsProofOfStake())
2589         {
2590             // Limited duplicity on stake: prevents block flood attack
2591             // Duplicate stake allowed only when there is orphan child block
2592             if (setStakeSeenOrphan.count(pblock2->GetProofOfStake()) && !mapOrphanBlocksByPrev.count(hash) && !Checkpoints::WantedByPendingSyncCheckpoint(hash))
2593                 return error("ProcessBlock() : duplicate proof-of-stake (%s, %d) for orphan block %s", pblock2->GetProofOfStake().first.ToString().c_str(), pblock2->GetProofOfStake().second, hash.ToString().c_str());
2594             else
2595                 setStakeSeenOrphan.insert(pblock2->GetProofOfStake());
2596         }
2597         mapOrphanBlocks.insert(make_pair(hash, pblock2));
2598         mapOrphanBlocksByPrev.insert(make_pair(pblock2->hashPrevBlock, pblock2));
2599
2600         // Ask this guy to fill in what we're missing
2601         if (pfrom)
2602         {
2603             pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(pblock2));
2604             // ppcoin: getblocks may not obtain the ancestor block rejected
2605             // earlier by duplicate-stake check so we ask for it again directly
2606             if (!IsInitialBlockDownload())
2607                 pfrom->AskFor(CInv(MSG_BLOCK, WantedByOrphan(pblock2)));
2608         }
2609         return true;
2610     }
2611
2612     // Store to disk
2613     if (!pblock->AcceptBlock())
2614         return error("ProcessBlock() : AcceptBlock FAILED");
2615
2616     // Recursively process any orphan blocks that depended on this one
2617     vector<uint256> vWorkQueue;
2618     vWorkQueue.push_back(hash);
2619     for (unsigned int i = 0; i < vWorkQueue.size(); i++)
2620     {
2621         uint256 hashPrev = vWorkQueue[i];
2622         for (multimap<uint256, CBlock*>::iterator mi = mapOrphanBlocksByPrev.lower_bound(hashPrev);
2623              mi != mapOrphanBlocksByPrev.upper_bound(hashPrev);
2624              ++mi)
2625         {
2626             CBlock* pblockOrphan = (*mi).second;
2627             if (pblockOrphan->AcceptBlock())
2628                 vWorkQueue.push_back(pblockOrphan->GetHash());
2629             mapOrphanBlocks.erase(pblockOrphan->GetHash());
2630             setStakeSeenOrphan.erase(pblockOrphan->GetProofOfStake());
2631             delete pblockOrphan;
2632         }
2633         mapOrphanBlocksByPrev.erase(hashPrev);
2634     }
2635
2636     printf("ProcessBlock: ACCEPTED\n");
2637
2638     // ppcoin: if responsible for sync-checkpoint send it
2639     if (pfrom && !CSyncCheckpoint::strMasterPrivKey.empty())
2640         Checkpoints::SendSyncCheckpoint(Checkpoints::AutoSelectSyncCheckpoint());
2641
2642     return true;
2643 }
2644
2645 // novacoin: attempt to generate suitable proof-of-stake
2646 bool CBlock::SignBlock(CWallet& wallet)
2647 {
2648     // if we are trying to sign
2649     //    something except proof-of-stake block template
2650     if (!vtx[0].vout[0].IsEmpty())
2651         return false;
2652
2653     // if we are trying to sign
2654     //    a complete proof-of-stake block
2655     if (IsProofOfStake())
2656         return true;
2657
2658     static int64 nLastCoinStakeSearchTime = GetAdjustedTime(); // startup timestamp
2659
2660     CKey key;
2661     CTransaction txCoinStake;
2662     int64 nSearchTime = txCoinStake.nTime; // search to current time
2663
2664     if (nSearchTime > nLastCoinStakeSearchTime)
2665     {
2666         if (wallet.CreateCoinStake(wallet, nBits, nSearchTime-nLastCoinStakeSearchTime, txCoinStake, key))
2667         {
2668             if (txCoinStake.nTime >= max(pindexBest->GetMedianTimePast()+1, PastDrift(pindexBest->GetBlockTime())))
2669             {
2670                 // make sure coinstake would meet timestamp protocol
2671                 //    as it would be the same as the block timestamp
2672                 vtx[0].nTime = nTime = txCoinStake.nTime;
2673                 nTime = max(pindexBest->GetMedianTimePast()+1, GetMaxTransactionTime());
2674                 nTime = max(GetBlockTime(), PastDrift(pindexBest->GetBlockTime()));
2675
2676                 // we have to make sure that we have no future timestamps in
2677                 //    our transactions set
2678                 for (vector<CTransaction>::iterator it = vtx.begin(); it != vtx.end();)
2679                     if (it->nTime > nTime) { it = vtx.erase(it); } else { ++it; }
2680
2681                 vtx.insert(vtx.begin() + 1, txCoinStake);
2682                 hashMerkleRoot = BuildMerkleTree();
2683
2684                 // append a signature to our block
2685                 return key.Sign(GetHash(), vchBlockSig);
2686             }
2687         }
2688         nLastCoinStakeSearchInterval = nSearchTime - nLastCoinStakeSearchTime;
2689         nLastCoinStakeSearchTime = nSearchTime;
2690     }
2691
2692     return false;
2693 }
2694
2695 // ppcoin: check block signature
2696 bool CBlock::CheckBlockSignature(bool fProofOfStake) const
2697 {
2698     if (GetHash() == (!fTestNet ? hashGenesisBlock : hashGenesisBlockTestNet))
2699         return vchBlockSig.empty();
2700
2701     vector<valtype> vSolutions;
2702     txnouttype whichType;
2703
2704     if(fProofOfStake)
2705     {
2706         const CTxOut& txout = vtx[1].vout[1];
2707
2708         if (!Solver(txout.scriptPubKey, whichType, vSolutions))
2709             return false;
2710         if (whichType == TX_PUBKEY)
2711         {
2712             valtype& vchPubKey = vSolutions[0];
2713             CKey key;
2714             if (!key.SetPubKey(vchPubKey))
2715                 return false;
2716             if (vchBlockSig.empty())
2717                 return false;
2718             return key.Verify(GetHash(), vchBlockSig);
2719         }
2720     }
2721     else
2722     {
2723         for(unsigned int i = 0; i < vtx[0].vout.size(); i++)
2724         {
2725             const CTxOut& txout = vtx[0].vout[i];
2726
2727             if (!Solver(txout.scriptPubKey, whichType, vSolutions))
2728                 return false;
2729
2730             if (whichType == TX_PUBKEY)
2731             {
2732                 // Verify
2733                 valtype& vchPubKey = vSolutions[0];
2734                 CKey key;
2735                 if (!key.SetPubKey(vchPubKey))
2736                     continue;
2737                 if (vchBlockSig.empty())
2738                     continue;
2739                 if(!key.Verify(GetHash(), vchBlockSig))
2740                     continue;
2741
2742                 return true;
2743             }
2744         }
2745     }
2746     return false;
2747 }
2748
2749 bool CheckDiskSpace(uint64 nAdditionalBytes)
2750 {
2751     uint64 nFreeBytesAvailable = filesystem::space(GetDataDir()).available;
2752
2753     // Check for nMinDiskSpace bytes (currently 50MB)
2754     if (nFreeBytesAvailable < nMinDiskSpace + nAdditionalBytes)
2755     {
2756         fShutdown = true;
2757         string strMessage = _("Warning: Disk space is low!");
2758         strMiscWarning = strMessage;
2759         printf("*** %s\n", strMessage.c_str());
2760         uiInterface.ThreadSafeMessageBox(strMessage, "NovaCoin", CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION | CClientUIInterface::MODAL);
2761         StartShutdown();
2762         return false;
2763     }
2764     return true;
2765 }
2766
2767 static filesystem::path BlockFilePath(unsigned int nFile)
2768 {
2769     string strBlockFn = strprintf("blk%04u.dat", nFile);
2770     return GetDataDir() / strBlockFn;
2771 }
2772
2773 FILE* OpenBlockFile(unsigned int nFile, unsigned int nBlockPos, const char* pszMode)
2774 {
2775     if ((nFile < 1) || (nFile == (unsigned int) -1))
2776         return NULL;
2777     FILE* file = fopen(BlockFilePath(nFile).string().c_str(), pszMode);
2778     if (!file)
2779         return NULL;
2780     if (nBlockPos != 0 && !strchr(pszMode, 'a') && !strchr(pszMode, 'w'))
2781     {
2782         if (fseek(file, nBlockPos, SEEK_SET) != 0)
2783         {
2784             fclose(file);
2785             return NULL;
2786         }
2787     }
2788     return file;
2789 }
2790
2791 static unsigned int nCurrentBlockFile = 1;
2792
2793 FILE* AppendBlockFile(unsigned int& nFileRet)
2794 {
2795     nFileRet = 0;
2796     while (true)
2797     {
2798         FILE* file = OpenBlockFile(nCurrentBlockFile, 0, "ab");
2799         if (!file)
2800             return NULL;
2801         if (fseek(file, 0, SEEK_END) != 0)
2802             return NULL;
2803         // FAT32 file size max 4GB, fseek and ftell max 2GB, so we must stay under 2GB
2804         if (ftell(file) < (long)(0x7F000000 - MAX_SIZE))
2805         {
2806             nFileRet = nCurrentBlockFile;
2807             return file;
2808         }
2809         fclose(file);
2810         nCurrentBlockFile++;
2811     }
2812 }
2813
2814 bool LoadBlockIndex(bool fAllowNew)
2815 {
2816     CBigNum bnTrustedModulus;
2817
2818     if (fTestNet)
2819     {
2820         pchMessageStart[0] = 0xcd;
2821         pchMessageStart[1] = 0xf2;
2822         pchMessageStart[2] = 0xc0;
2823         pchMessageStart[3] = 0xef;
2824
2825         bnTrustedModulus.SetHex("f0d14cf72623dacfe738d0892b599be0f31052239cddd95a3f25101c801dc990453b38c9434efe3f372db39a32c2bb44cbaea72d62c8931fa785b0ec44531308df3e46069be5573e49bb29f4d479bfc3d162f57a5965db03810be7636da265bfced9c01a6b0296c77910ebdc8016f70174f0f18a57b3b971ac43a934c6aedbc5c866764a3622b5b7e3f9832b8b3f133c849dbcc0396588abcd1e41048555746e4823fb8aba5b3d23692c6857fccce733d6bb6ec1d5ea0afafecea14a0f6f798b6b27f77dc989c557795cc39a0940ef6bb29a7fc84135193a55bcfc2f01dd73efad1b69f45a55198bd0e6bef4d338e452f6a420f1ae2b1167b923f76633ab6e55");
2826         bnProofOfWorkLimit = bnProofOfWorkLimitTestNet; // 16 bits PoW target limit for testnet
2827         nStakeMinAge = 2 * 60 * 60; // test net min age is 2 hours
2828         nModifierInterval = 20 * 60; // test modifier interval is 20 minutes
2829         nCoinbaseMaturity = 10; // test maturity is 10 blocks
2830         nStakeTargetSpacing = 5 * 60; // test block spacing is 5 minutes
2831     }
2832     else
2833     {
2834         bnTrustedModulus.SetHex("d01f952e1090a5a72a3eda261083256596ccc192935ae1454c2bafd03b09e6ed11811be9f3a69f5783bbbced8c6a0c56621f42c2d19087416facf2f13cc7ed7159d1c5253119612b8449f0c7f54248e382d30ecab1928dbf075c5425dcaee1a819aa13550e0f3227b8c685b14e0eae094d65d8a610a6f49fff8145259d1187e4c6a472fa5868b2b67f957cb74b787f4311dbc13c97a2ca13acdb876ff506ebecbb904548c267d68868e07a32cd9ed461fbc2f920e9940e7788fed2e4817f274df5839c2196c80abe5c486df39795186d7bc86314ae1e8342f3c884b158b4b05b4302754bf351477d35370bad6639b2195d30006b77bf3dbb28b848fd9ecff5662bf39dde0c974e83af51b0d3d642d43834827b8c3b189065514636b8f2a59c42ba9b4fc4975d4827a5d89617a3873e4b377b4d559ad165748632bd928439cfbc5a8ef49bc2220e0b15fb0aa302367d5e99e379a961c1bc8cf89825da5525e3c8f14d7d8acca2fa9c133a2176ae69874d8b1d38b26b9c694e211018005a97b40848681b9dd38feb2de141626fb82591aad20dc629b2b6421cef1227809551a0e4e943ab99841939877f18f2d9c0addc93cf672e26b02ed94da3e6d329e8ac8f3736eebbf37bb1a21e5aadf04ee8e3b542f876aa88b2adf2608bd86329b7f7a56fd0dc1c40b48188731d11082aea360c62a0840c2db3dad7178fd7e359317ae081");
2835     }
2836
2837     // Set up the Zerocoin Params object
2838     ZCParams = new libzerocoin::Params(bnTrustedModulus);
2839
2840     //
2841     // Load block index
2842     //
2843     CTxDB txdb("cr+");
2844     if (!txdb.LoadBlockIndex())
2845         return false;
2846
2847     //
2848     // Init with genesis block
2849     //
2850     if (mapBlockIndex.empty())
2851     {
2852         if (!fAllowNew)
2853             return false;
2854
2855         // Genesis block
2856
2857         // MainNet:
2858
2859         //CBlock(hash=00000a060336cbb72fe969666d337b87198b1add2abaa59cca226820b32933a4, ver=1, hashPrevBlock=0000000000000000000000000000000000000000000000000000000000000000, hashMerkleRoot=4cb33b3b6a861dcbc685d3e614a9cafb945738d6833f182855679f2fad02057b, nTime=1360105017, nBits=1e0fffff, nNonce=1575379, vtx=1, vchBlockSig=)
2860         //  Coinbase(hash=4cb33b3b6a, nTime=1360105017, ver=1, vin.size=1, vout.size=1, nLockTime=0)
2861         //    CTxIn(COutPoint(0000000000, 4294967295), coinbase 04ffff001d020f274468747470733a2f2f626974636f696e74616c6b2e6f72672f696e6465782e7068703f746f7069633d3133343137392e6d736731353032313936236d736731353032313936)
2862         //    CTxOut(empty)
2863         //  vMerkleTree: 4cb33b3b6a
2864
2865         // TestNet:
2866
2867         //CBlock(hash=0000c763e402f2436da9ed36c7286f62c3f6e5dbafce9ff289bd43d7459327eb, ver=1, hashPrevBlock=0000000000000000000000000000000000000000000000000000000000000000, hashMerkleRoot=4cb33b3b6a861dcbc685d3e614a9cafb945738d6833f182855679f2fad02057b, nTime=1360105017, nBits=1f00ffff, nNonce=46534, vtx=1, vchBlockSig=)
2868         //  Coinbase(hash=4cb33b3b6a, nTime=1360105017, ver=1, vin.size=1, vout.size=1, nLockTime=0)
2869         //    CTxIn(COutPoint(0000000000, 4294967295), coinbase 04ffff001d020f274468747470733a2f2f626974636f696e74616c6b2e6f72672f696e6465782e7068703f746f7069633d3133343137392e6d736731353032313936236d736731353032313936)
2870         //    CTxOut(empty)
2871         //  vMerkleTree: 4cb33b3b6a
2872
2873         const char* pszTimestamp = "https://bitcointalk.org/index.php?topic=134179.msg1502196#msg1502196";
2874         CTransaction txNew;
2875         txNew.nTime = 1360105017;
2876         txNew.vin.resize(1);
2877         txNew.vout.resize(1);
2878         txNew.vin[0].scriptSig = CScript() << 486604799 << CBigNum(9999) << vector<unsigned char>((const unsigned char*)pszTimestamp, (const unsigned char*)pszTimestamp + strlen(pszTimestamp));
2879         txNew.vout[0].SetEmpty();
2880         CBlock block;
2881         block.vtx.push_back(txNew);
2882         block.hashPrevBlock = 0;
2883         block.hashMerkleRoot = block.BuildMerkleTree();
2884         block.nVersion = 1;
2885         block.nTime    = 1360105017;
2886         block.nBits    = bnProofOfWorkLimit.GetCompact();
2887         block.nNonce   = !fTestNet ? 1575379 : 46534;
2888
2889         //// debug print
2890         assert(block.hashMerkleRoot == uint256("0x4cb33b3b6a861dcbc685d3e614a9cafb945738d6833f182855679f2fad02057b"));
2891         block.print();
2892         assert(block.GetHash() == (!fTestNet ? hashGenesisBlock : hashGenesisBlockTestNet));
2893         assert(block.CheckBlock());
2894
2895         // Start new block file
2896         unsigned int nFile;
2897         unsigned int nBlockPos;
2898         if (!block.WriteToDisk(nFile, nBlockPos))
2899             return error("LoadBlockIndex() : writing genesis block to disk failed");
2900         if (!block.AddToBlockIndex(nFile, nBlockPos))
2901             return error("LoadBlockIndex() : genesis block not accepted");
2902
2903         // initialize synchronized checkpoint
2904         if (!Checkpoints::WriteSyncCheckpoint((!fTestNet ? hashGenesisBlock : hashGenesisBlockTestNet)))
2905             return error("LoadBlockIndex() : failed to init sync checkpoint");
2906
2907         // upgrade time set to zero if txdb initialized
2908         {
2909             if (!txdb.WriteModifierUpgradeTime(0))
2910                 return error("LoadBlockIndex() : failed to init upgrade info");
2911             printf(" Upgrade Info: ModifierUpgradeTime txdb initialization\n");
2912         }
2913     }
2914
2915     string strPubKey = "";
2916
2917     // if checkpoint master key changed must reset sync-checkpoint
2918     if (!txdb.ReadCheckpointPubKey(strPubKey) || strPubKey != CSyncCheckpoint::strMasterPubKey)
2919     {
2920         // write checkpoint master key to db
2921         txdb.TxnBegin();
2922         if (!txdb.WriteCheckpointPubKey(CSyncCheckpoint::strMasterPubKey))
2923             return error("LoadBlockIndex() : failed to write new checkpoint master key to db");
2924         if (!txdb.TxnCommit())
2925             return error("LoadBlockIndex() : failed to commit new checkpoint master key to db");
2926         if ((!fTestNet) && !Checkpoints::ResetSyncCheckpoint())
2927             return error("LoadBlockIndex() : failed to reset sync-checkpoint");
2928     }
2929
2930     // upgrade time set to zero if blocktreedb initialized
2931     if (txdb.ReadModifierUpgradeTime(nModifierUpgradeTime))
2932     {
2933         if (nModifierUpgradeTime)
2934             printf(" Upgrade Info: blocktreedb upgrade detected at timestamp %d\n", nModifierUpgradeTime);
2935         else
2936             printf(" Upgrade Info: no blocktreedb upgrade detected.\n");
2937     }
2938     else
2939     {
2940         nModifierUpgradeTime = GetTime();
2941         printf(" Upgrade Info: upgrading blocktreedb at timestamp %u\n", nModifierUpgradeTime);
2942         if (!txdb.WriteModifierUpgradeTime(nModifierUpgradeTime))
2943             return error("LoadBlockIndex() : failed to write upgrade info");
2944     }
2945
2946
2947     return true;
2948 }
2949
2950
2951
2952 void PrintBlockTree()
2953 {
2954     // pre-compute tree structure
2955     map<CBlockIndex*, vector<CBlockIndex*> > mapNext;
2956     for (map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi)
2957     {
2958         CBlockIndex* pindex = (*mi).second;
2959         mapNext[pindex->pprev].push_back(pindex);
2960         // test
2961         //while (rand() % 3 == 0)
2962         //    mapNext[pindex->pprev].push_back(pindex);
2963     }
2964
2965     vector<pair<int, CBlockIndex*> > vStack;
2966     vStack.push_back(make_pair(0, pindexGenesisBlock));
2967
2968     int nPrevCol = 0;
2969     while (!vStack.empty())
2970     {
2971         int nCol = vStack.back().first;
2972         CBlockIndex* pindex = vStack.back().second;
2973         vStack.pop_back();
2974
2975         // print split or gap
2976         if (nCol > nPrevCol)
2977         {
2978             for (int i = 0; i < nCol-1; i++)
2979                 printf("| ");
2980             printf("|\\\n");
2981         }
2982         else if (nCol < nPrevCol)
2983         {
2984             for (int i = 0; i < nCol; i++)
2985                 printf("| ");
2986             printf("|\n");
2987        }
2988         nPrevCol = nCol;
2989
2990         // print columns
2991         for (int i = 0; i < nCol; i++)
2992             printf("| ");
2993
2994         // print item
2995         CBlock block;
2996         block.ReadFromDisk(pindex);
2997         printf("%d (%u,%u) %s  %08x  %s  mint %7s  tx %"PRIszu"",
2998             pindex->nHeight,
2999             pindex->nFile,
3000             pindex->nBlockPos,
3001             block.GetHash().ToString().c_str(),
3002             block.nBits,
3003             DateTimeStrFormat("%x %H:%M:%S", block.GetBlockTime()).c_str(),
3004             FormatMoney(pindex->nMint).c_str(),
3005             block.vtx.size());
3006
3007         PrintWallets(block);
3008
3009         // put the main time-chain first
3010         vector<CBlockIndex*>& vNext = mapNext[pindex];
3011         for (unsigned int i = 0; i < vNext.size(); i++)
3012         {
3013             if (vNext[i]->pnext)
3014             {
3015                 swap(vNext[0], vNext[i]);
3016                 break;
3017             }
3018         }
3019
3020         // iterate children
3021         for (unsigned int i = 0; i < vNext.size(); i++)
3022             vStack.push_back(make_pair(nCol+i, vNext[i]));
3023     }
3024 }
3025
3026 bool LoadExternalBlockFile(FILE* fileIn)
3027 {
3028     int64 nStart = GetTimeMillis();
3029
3030     int nLoaded = 0;
3031     {
3032         LOCK(cs_main);
3033         try {
3034             CAutoFile blkdat(fileIn, SER_DISK, CLIENT_VERSION);
3035             unsigned int nPos = 0;
3036             while (nPos != (unsigned int)-1 && blkdat.good() && !fRequestShutdown)
3037             {
3038                 unsigned char pchData[65536];
3039                 do {
3040                     fseek(blkdat, nPos, SEEK_SET);
3041                     int nRead = fread(pchData, 1, sizeof(pchData), blkdat);
3042                     if (nRead <= 8)
3043                     {
3044                         nPos = (unsigned int)-1;
3045                         break;
3046                     }
3047                     void* nFind = memchr(pchData, pchMessageStart[0], nRead+1-sizeof(pchMessageStart));
3048                     if (nFind)
3049                     {
3050                         if (memcmp(nFind, pchMessageStart, sizeof(pchMessageStart))==0)
3051                         {
3052                             nPos += ((unsigned char*)nFind - pchData) + sizeof(pchMessageStart);
3053                             break;
3054                         }
3055                         nPos += ((unsigned char*)nFind - pchData) + 1;
3056                     }
3057                     else
3058                         nPos += sizeof(pchData) - sizeof(pchMessageStart) + 1;
3059                 } while(!fRequestShutdown);
3060                 if (nPos == (unsigned int)-1)
3061                     break;
3062                 fseek(blkdat, nPos, SEEK_SET);
3063                 unsigned int nSize;
3064                 blkdat >> nSize;
3065                 if (nSize > 0 && nSize <= MAX_BLOCK_SIZE)
3066                 {
3067                     CBlock block;
3068                     blkdat >> block;
3069                     if (ProcessBlock(NULL,&block))
3070                     {
3071                         nLoaded++;
3072                         nPos += 4 + nSize;
3073                     }
3074                 }
3075             }
3076         }
3077         catch (std::exception &e) {
3078             printf("%s() : Deserialize or I/O error caught during load\n",
3079                    __PRETTY_FUNCTION__);
3080         }
3081     }
3082     printf("Loaded %i blocks from external file in %"PRI64d"ms\n", nLoaded, GetTimeMillis() - nStart);
3083     return nLoaded > 0;
3084 }
3085
3086 //////////////////////////////////////////////////////////////////////////////
3087 //
3088 // CAlert
3089 //
3090
3091 extern map<uint256, CAlert> mapAlerts;
3092 extern CCriticalSection cs_mapAlerts;
3093
3094 string GetWarnings(string strFor)
3095 {
3096     int nPriority = 0;
3097     string strStatusBar;
3098     string strRPC;
3099
3100     if (GetBoolArg("-testsafemode"))
3101         strRPC = "test";
3102
3103     // Misc warnings like out of disk space and clock is wrong
3104     if (strMiscWarning != "")
3105     {
3106         nPriority = 1000;
3107         strStatusBar = strMiscWarning;
3108     }
3109
3110     // if detected unmet upgrade requirement enter safe mode
3111     // Note: Modifier upgrade requires blockchain redownload if past protocol switch
3112     if (IsFixedModifierInterval(nModifierUpgradeTime + 60*60*24)) // 1 day margin
3113     {
3114         nPriority = 5000;
3115         strStatusBar = strRPC = "WARNING: Blockchain redownload required approaching or past v.0.4.4.6u4 upgrade deadline.";
3116     }
3117
3118     // if detected invalid checkpoint enter safe mode
3119     if (Checkpoints::hashInvalidCheckpoint != 0)
3120     {
3121         nPriority = 3000;
3122         strStatusBar = strRPC = _("WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers.");
3123     }
3124
3125     // Alerts
3126     {
3127         LOCK(cs_mapAlerts);
3128         BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
3129         {
3130             const CAlert& alert = item.second;
3131             if (alert.AppliesToMe() && alert.nPriority > nPriority)
3132             {
3133                 nPriority = alert.nPriority;
3134                 strStatusBar = alert.strStatusBar;
3135                 if (nPriority > 1000)
3136                     strRPC = strStatusBar;
3137             }
3138         }
3139     }
3140
3141     if (strFor == "statusbar")
3142         return strStatusBar;
3143     else if (strFor == "rpc")
3144         return strRPC;
3145     assert(!"GetWarnings() : invalid parameter");
3146     return "error";
3147 }
3148
3149
3150
3151
3152
3153
3154
3155
3156 //////////////////////////////////////////////////////////////////////////////
3157 //
3158 // Messages
3159 //
3160
3161
3162 bool static AlreadyHave(CTxDB& txdb, const CInv& inv)
3163 {
3164     switch (inv.type)
3165     {
3166     case MSG_TX:
3167         {
3168         bool txInMap = false;
3169             {
3170             LOCK(mempool.cs);
3171             txInMap = (mempool.exists(inv.hash));
3172             }
3173         return txInMap ||
3174                mapOrphanTransactions.count(inv.hash) ||
3175                txdb.ContainsTx(inv.hash);
3176         }
3177
3178     case MSG_BLOCK:
3179         return mapBlockIndex.count(inv.hash) ||
3180                mapOrphanBlocks.count(inv.hash);
3181     }
3182     // Don't know what it is, just say we already got one
3183     return true;
3184 }
3185
3186
3187
3188
3189 // The message start string is designed to be unlikely to occur in normal data.
3190 // The characters are rarely used upper ASCII, not valid as UTF-8, and produce
3191 // a large 4-byte int at any alignment.
3192 unsigned char pchMessageStart[4] = { 0xe4, 0xe8, 0xe9, 0xe5 };
3193
3194 bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
3195 {
3196     static map<CService, CPubKey> mapReuseKey;
3197     RandAddSeedPerfmon();
3198     if (fDebug)
3199         printf("received: %s (%"PRIszu" bytes)\n", strCommand.c_str(), vRecv.size());
3200     if (mapArgs.count("-dropmessagestest") && GetRand(atoi(mapArgs["-dropmessagestest"])) == 0)
3201     {
3202         printf("dropmessagestest DROPPING RECV MESSAGE\n");
3203         return true;
3204     }
3205
3206     if (strCommand == "version")
3207     {
3208         // Each connection can only send one version message
3209         if (pfrom->nVersion != 0)
3210         {
3211             pfrom->Misbehaving(1);
3212             return false;
3213         }
3214
3215         int64 nTime;
3216         CAddress addrMe;
3217         CAddress addrFrom;
3218         uint64 nNonce = 1;
3219         vRecv >> pfrom->nVersion >> pfrom->nServices >> nTime >> addrMe;
3220         if (pfrom->nVersion < MIN_PROTO_VERSION)
3221         {
3222             // Since February 20, 2012, the protocol is initiated at version 209,
3223             // and earlier versions are no longer supported
3224             printf("partner %s using obsolete version %i; disconnecting\n", pfrom->addr.ToString().c_str(), pfrom->nVersion);
3225             pfrom->fDisconnect = true;
3226             return false;
3227         }
3228
3229         if (pfrom->nVersion == 10300)
3230             pfrom->nVersion = 300;
3231         if (!vRecv.empty())
3232             vRecv >> addrFrom >> nNonce;
3233         if (!vRecv.empty())
3234             vRecv >> pfrom->strSubVer;
3235         if (!vRecv.empty())
3236             vRecv >> pfrom->nStartingHeight;
3237
3238         if (pfrom->fInbound && addrMe.IsRoutable())
3239         {
3240             pfrom->addrLocal = addrMe;
3241             SeenLocal(addrMe);
3242         }
3243
3244         // Disconnect if we connected to ourself
3245         if (nNonce == nLocalHostNonce && nNonce > 1)
3246         {
3247             printf("connected to self at %s, disconnecting\n", pfrom->addr.ToString().c_str());
3248             pfrom->fDisconnect = true;
3249             return true;
3250         }
3251
3252         if (pfrom->nVersion < 60010)
3253         {
3254             printf("partner %s using a buggy client %d, disconnecting\n", pfrom->addr.ToString().c_str(), pfrom->nVersion);
3255             pfrom->fDisconnect = true;
3256             return true;
3257         }
3258
3259         // record my external IP reported by peer
3260         if (addrFrom.IsRoutable() && addrMe.IsRoutable())
3261             addrSeenByPeer = addrMe;
3262
3263         // Be shy and don't send version until we hear
3264         if (pfrom->fInbound)
3265             pfrom->PushVersion();
3266
3267         pfrom->fClient = !(pfrom->nServices & NODE_NETWORK);
3268
3269         AddTimeData(pfrom->addr, nTime);
3270
3271         // Change version
3272         pfrom->PushMessage("verack");
3273         pfrom->vSend.SetVersion(min(pfrom->nVersion, PROTOCOL_VERSION));
3274
3275         if (!pfrom->fInbound)
3276         {
3277             // Advertise our address
3278             if (!fNoListen && !IsInitialBlockDownload())
3279             {
3280                 CAddress addr = GetLocalAddress(&pfrom->addr);
3281                 if (addr.IsRoutable())
3282                     pfrom->PushAddress(addr);
3283             }
3284
3285             // Get recent addresses
3286             if (pfrom->fOneShot || pfrom->nVersion >= CADDR_TIME_VERSION || addrman.size() < 1000)
3287             {
3288                 pfrom->PushMessage("getaddr");
3289                 pfrom->fGetAddr = true;
3290             }
3291             addrman.Good(pfrom->addr);
3292         } else {
3293             if (((CNetAddr)pfrom->addr) == (CNetAddr)addrFrom)
3294             {
3295                 addrman.Add(addrFrom, addrFrom);
3296                 addrman.Good(addrFrom);
3297             }
3298         }
3299
3300         // Ask the first connected node for block updates
3301         static int nAskedForBlocks = 0;
3302         if (!pfrom->fClient && !pfrom->fOneShot &&
3303             (pfrom->nStartingHeight > (nBestHeight - 144)) &&
3304             (pfrom->nVersion < NOBLKS_VERSION_START ||
3305              pfrom->nVersion >= NOBLKS_VERSION_END) &&
3306              (nAskedForBlocks < 1 || vNodes.size() <= 1))
3307         {
3308             nAskedForBlocks++;
3309             pfrom->PushGetBlocks(pindexBest, uint256(0));
3310         }
3311
3312         // Relay alerts
3313         {
3314             LOCK(cs_mapAlerts);
3315             BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
3316                 item.second.RelayTo(pfrom);
3317         }
3318
3319         // Relay sync-checkpoint
3320         {
3321             LOCK(Checkpoints::cs_hashSyncCheckpoint);
3322             if (!Checkpoints::checkpointMessage.IsNull())
3323                 Checkpoints::checkpointMessage.RelayTo(pfrom);
3324         }
3325
3326         pfrom->fSuccessfullyConnected = true;
3327
3328         printf("receive version message: version %d, blocks=%d, us=%s, them=%s, peer=%s\n", pfrom->nVersion, pfrom->nStartingHeight, addrMe.ToString().c_str(), addrFrom.ToString().c_str(), pfrom->addr.ToString().c_str());
3329
3330         cPeerBlockCounts.input(pfrom->nStartingHeight);
3331
3332         // ppcoin: ask for pending sync-checkpoint if any
3333         if (!IsInitialBlockDownload())
3334             Checkpoints::AskForPendingSyncCheckpoint(pfrom);
3335     }
3336
3337
3338     else if (pfrom->nVersion == 0)
3339     {
3340         // Must have a version message before anything else
3341         pfrom->Misbehaving(1);
3342         return false;
3343     }
3344
3345
3346     else if (strCommand == "verack")
3347     {
3348         pfrom->vRecv.SetVersion(min(pfrom->nVersion, PROTOCOL_VERSION));
3349     }
3350
3351
3352     else if (strCommand == "addr")
3353     {
3354         vector<CAddress> vAddr;
3355         vRecv >> vAddr;
3356
3357         // Don't want addr from older versions unless seeding
3358         if (pfrom->nVersion < CADDR_TIME_VERSION && addrman.size() > 1000)
3359             return true;
3360         if (vAddr.size() > 1000)
3361         {
3362             pfrom->Misbehaving(20);
3363             return error("message addr size() = %"PRIszu"", vAddr.size());
3364         }
3365
3366         // Store the new addresses
3367         vector<CAddress> vAddrOk;
3368         int64 nNow = GetAdjustedTime();
3369         int64 nSince = nNow - 10 * 60;
3370         BOOST_FOREACH(CAddress& addr, vAddr)
3371         {
3372             if (fShutdown)
3373                 return true;
3374             if (addr.nTime <= 100000000 || addr.nTime > nNow + 10 * 60)
3375                 addr.nTime = nNow - 5 * 24 * 60 * 60;
3376             pfrom->AddAddressKnown(addr);
3377             bool fReachable = IsReachable(addr);
3378             if (addr.nTime > nSince && !pfrom->fGetAddr && vAddr.size() <= 10 && addr.IsRoutable())
3379             {
3380                 // Relay to a limited number of other nodes
3381                 {
3382                     LOCK(cs_vNodes);
3383                     // Use deterministic randomness to send to the same nodes for 24 hours
3384                     // at a time so the setAddrKnowns of the chosen nodes prevent repeats
3385                     static uint256 hashSalt;
3386                     if (hashSalt == 0)
3387                         hashSalt = GetRandHash();
3388                     uint64 hashAddr = addr.GetHash();
3389                     uint256 hashRand = hashSalt ^ (hashAddr<<32) ^ ((GetTime()+hashAddr)/(24*60*60));
3390                     hashRand = Hash(BEGIN(hashRand), END(hashRand));
3391                     multimap<uint256, CNode*> mapMix;
3392                     BOOST_FOREACH(CNode* pnode, vNodes)
3393                     {
3394                         if (pnode->nVersion < CADDR_TIME_VERSION)
3395                             continue;
3396                         unsigned int nPointer;
3397                         memcpy(&nPointer, &pnode, sizeof(nPointer));
3398                         uint256 hashKey = hashRand ^ nPointer;
3399                         hashKey = Hash(BEGIN(hashKey), END(hashKey));
3400                         mapMix.insert(make_pair(hashKey, pnode));
3401                     }
3402                     int nRelayNodes = fReachable ? 2 : 1; // limited relaying of addresses outside our network(s)
3403                     for (multimap<uint256, CNode*>::iterator mi = mapMix.begin(); mi != mapMix.end() && nRelayNodes-- > 0; ++mi)
3404                         ((*mi).second)->PushAddress(addr);
3405                 }
3406             }
3407             // Do not store addresses outside our network
3408             if (fReachable)
3409                 vAddrOk.push_back(addr);
3410         }
3411         addrman.Add(vAddrOk, pfrom->addr, 2 * 60 * 60);
3412         if (vAddr.size() < 1000)
3413             pfrom->fGetAddr = false;
3414         if (pfrom->fOneShot)
3415             pfrom->fDisconnect = true;
3416     }
3417
3418     else if (strCommand == "inv")
3419     {
3420         vector<CInv> vInv;
3421         vRecv >> vInv;
3422         if (vInv.size() > MAX_INV_SZ)
3423         {
3424             pfrom->Misbehaving(20);
3425             return error("message inv size() = %"PRIszu"", vInv.size());
3426         }
3427
3428         // find last block in inv vector
3429         unsigned int nLastBlock = (unsigned int)(-1);
3430         for (unsigned int nInv = 0; nInv < vInv.size(); nInv++) {
3431             if (vInv[vInv.size() - 1 - nInv].type == MSG_BLOCK) {
3432                 nLastBlock = vInv.size() - 1 - nInv;
3433                 break;
3434             }
3435         }
3436         CTxDB txdb("r");
3437         for (unsigned int nInv = 0; nInv < vInv.size(); nInv++)
3438         {
3439             const CInv &inv = vInv[nInv];
3440
3441             if (fShutdown)
3442                 return true;
3443             pfrom->AddInventoryKnown(inv);
3444
3445             bool fAlreadyHave = AlreadyHave(txdb, inv);
3446             if (fDebug)
3447                 printf("  got inventory: %s  %s\n", inv.ToString().c_str(), fAlreadyHave ? "have" : "new");
3448
3449             if (!fAlreadyHave)
3450                 pfrom->AskFor(inv);
3451             else if (inv.type == MSG_BLOCK && mapOrphanBlocks.count(inv.hash)) {
3452                 pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(mapOrphanBlocks[inv.hash]));
3453             } else if (nInv == nLastBlock) {
3454                 // In case we are on a very long side-chain, it is possible that we already have
3455                 // the last block in an inv bundle sent in response to getblocks. Try to detect
3456                 // this situation and push another getblocks to continue.
3457                 pfrom->PushGetBlocks(mapBlockIndex[inv.hash], uint256(0));
3458                 if (fDebug)
3459                     printf("force request: %s\n", inv.ToString().c_str());
3460             }
3461
3462             // Track requests for our stuff
3463             Inventory(inv.hash);
3464         }
3465     }
3466
3467
3468     else if (strCommand == "getdata")
3469     {
3470         vector<CInv> vInv;
3471         vRecv >> vInv;
3472         if (vInv.size() > MAX_INV_SZ)
3473         {
3474             pfrom->Misbehaving(20);
3475             return error("message getdata size() = %"PRIszu"", vInv.size());
3476         }
3477
3478         if (fDebugNet || (vInv.size() != 1))
3479             printf("received getdata (%"PRIszu" invsz)\n", vInv.size());
3480
3481         BOOST_FOREACH(const CInv& inv, vInv)
3482         {
3483             if (fShutdown)
3484                 return true;
3485             if (fDebugNet || (vInv.size() == 1))
3486                 printf("received getdata for: %s\n", inv.ToString().c_str());
3487
3488             if (inv.type == MSG_BLOCK)
3489             {
3490                 // Send block from disk
3491                 map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(inv.hash);
3492                 if (mi != mapBlockIndex.end())
3493                 {
3494                     CBlock block;
3495                     block.ReadFromDisk((*mi).second);
3496                     pfrom->PushMessage("block", block);
3497
3498                     // Trigger them to send a getblocks request for the next batch of inventory
3499                     if (inv.hash == pfrom->hashContinue)
3500                     {
3501                         // ppcoin: send latest proof-of-work block to allow the
3502                         // download node to accept as orphan (proof-of-stake 
3503                         // block might be rejected by stake connection check)
3504                         vector<CInv> vInv;
3505                         vInv.push_back(CInv(MSG_BLOCK, GetLastBlockIndex(pindexBest, false)->GetBlockHash()));
3506                         pfrom->PushMessage("inv", vInv);
3507                         pfrom->hashContinue = 0;
3508                     }
3509                 }
3510             }
3511             else if (inv.IsKnownType())
3512             {
3513                 // Send stream from relay memory
3514                 bool pushed = false;
3515                 {
3516                     LOCK(cs_mapRelay);
3517                     map<CInv, CDataStream>::iterator mi = mapRelay.find(inv);
3518                     if (mi != mapRelay.end()) {
3519                         pfrom->PushMessage(inv.GetCommand(), (*mi).second);
3520                         pushed = true;
3521                     }
3522                 }
3523                 if (!pushed && inv.type == MSG_TX) {
3524                     LOCK(mempool.cs);
3525                     if (mempool.exists(inv.hash)) {
3526                         CTransaction tx = mempool.lookup(inv.hash);
3527                         CDataStream ss(SER_NETWORK, PROTOCOL_VERSION);
3528                         ss.reserve(1000);
3529                         ss << tx;
3530                         pfrom->PushMessage("tx", ss);
3531                     }
3532                 }
3533             }
3534
3535             // Track requests for our stuff
3536             Inventory(inv.hash);
3537         }
3538     }
3539
3540
3541     else if (strCommand == "getblocks")
3542     {
3543         CBlockLocator locator;
3544         uint256 hashStop;
3545         vRecv >> locator >> hashStop;
3546
3547         // Find the last block the caller has in the main chain
3548         CBlockIndex* pindex = locator.GetBlockIndex();
3549
3550         // Send the rest of the chain
3551         if (pindex)
3552             pindex = pindex->pnext;
3553         int nLimit = 500;
3554         printf("getblocks %d to %s limit %d\n", (pindex ? pindex->nHeight : -1), hashStop.ToString().substr(0,20).c_str(), nLimit);
3555         for (; pindex; pindex = pindex->pnext)
3556         {
3557             if (pindex->GetBlockHash() == hashStop)
3558             {
3559                 printf("  getblocks stopping at %d %s\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str());
3560                 // ppcoin: tell downloading node about the latest block if it's
3561                 // without risk being rejected due to stake connection check
3562                 if (hashStop != hashBestChain && pindex->GetBlockTime() + nStakeMinAge > pindexBest->GetBlockTime())
3563                     pfrom->PushInventory(CInv(MSG_BLOCK, hashBestChain));
3564                 break;
3565             }
3566             pfrom->PushInventory(CInv(MSG_BLOCK, pindex->GetBlockHash()));
3567             if (--nLimit <= 0)
3568             {
3569                 // When this block is requested, we'll send an inv that'll make them
3570                 // getblocks the next batch of inventory.
3571                 printf("  getblocks stopping at limit %d %s\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str());
3572                 pfrom->hashContinue = pindex->GetBlockHash();
3573                 break;
3574             }
3575         }
3576     }
3577     else if (strCommand == "checkpoint")
3578     {
3579         CSyncCheckpoint checkpoint;
3580         vRecv >> checkpoint;
3581
3582         if (checkpoint.ProcessSyncCheckpoint(pfrom))
3583         {
3584             // Relay
3585             pfrom->hashCheckpointKnown = checkpoint.hashCheckpoint;
3586             LOCK(cs_vNodes);
3587             BOOST_FOREACH(CNode* pnode, vNodes)
3588                 checkpoint.RelayTo(pnode);
3589         }
3590     }
3591
3592     else if (strCommand == "getheaders")
3593     {
3594         CBlockLocator locator;
3595         uint256 hashStop;
3596         vRecv >> locator >> hashStop;
3597
3598         CBlockIndex* pindex = NULL;
3599         if (locator.IsNull())
3600         {
3601             // If locator is null, return the hashStop block
3602             map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashStop);
3603             if (mi == mapBlockIndex.end())
3604                 return true;
3605             pindex = (*mi).second;
3606         }
3607         else
3608         {
3609             // Find the last block the caller has in the main chain
3610             pindex = locator.GetBlockIndex();
3611             if (pindex)
3612                 pindex = pindex->pnext;
3613         }
3614
3615         vector<CBlock> vHeaders;
3616         int nLimit = 2000;
3617         printf("getheaders %d to %s\n", (pindex ? pindex->nHeight : -1), hashStop.ToString().substr(0,20).c_str());
3618         for (; pindex; pindex = pindex->pnext)
3619         {
3620             vHeaders.push_back(pindex->GetBlockHeader());
3621             if (--nLimit <= 0 || pindex->GetBlockHash() == hashStop)
3622                 break;
3623         }
3624         pfrom->PushMessage("headers", vHeaders);
3625     }
3626
3627
3628     else if (strCommand == "tx")
3629     {
3630         vector<uint256> vWorkQueue;
3631         vector<uint256> vEraseQueue;
3632         CDataStream vMsg(vRecv);
3633         CTxDB txdb("r");
3634         CTransaction tx;
3635         vRecv >> tx;
3636
3637         CInv inv(MSG_TX, tx.GetHash());
3638         pfrom->AddInventoryKnown(inv);
3639
3640         bool fMissingInputs = false;
3641         if (tx.AcceptToMemoryPool(txdb, true, &fMissingInputs))
3642         {
3643             SyncWithWallets(tx, NULL, true);
3644             RelayTransaction(tx, inv.hash);
3645             mapAlreadyAskedFor.erase(inv);
3646             vWorkQueue.push_back(inv.hash);
3647             vEraseQueue.push_back(inv.hash);
3648
3649             // Recursively process any orphan transactions that depended on this one
3650             for (unsigned int i = 0; i < vWorkQueue.size(); i++)
3651             {
3652                 uint256 hashPrev = vWorkQueue[i];
3653                 for (set<uint256>::iterator mi = mapOrphanTransactionsByPrev[hashPrev].begin();
3654                      mi != mapOrphanTransactionsByPrev[hashPrev].end();
3655                      ++mi)
3656                 {
3657                     const uint256& orphanTxHash = *mi;
3658                     CTransaction& orphanTx = mapOrphanTransactions[orphanTxHash];
3659                     bool fMissingInputs2 = false;
3660
3661                     if (orphanTx.AcceptToMemoryPool(txdb, true, &fMissingInputs2))
3662                     {
3663                         printf("   accepted orphan tx %s\n", orphanTxHash.ToString().substr(0,10).c_str());
3664                         SyncWithWallets(tx, NULL, true);
3665                         RelayTransaction(orphanTx, orphanTxHash);
3666                         mapAlreadyAskedFor.erase(CInv(MSG_TX, orphanTxHash));
3667                         vWorkQueue.push_back(orphanTxHash);
3668                         vEraseQueue.push_back(orphanTxHash);
3669                     }
3670                     else if (!fMissingInputs2)
3671                     {
3672                         // invalid orphan
3673                         vEraseQueue.push_back(orphanTxHash);
3674                         printf("   removed invalid orphan tx %s\n", orphanTxHash.ToString().substr(0,10).c_str());
3675                     }
3676                 }
3677             }
3678
3679             BOOST_FOREACH(uint256 hash, vEraseQueue)
3680                 EraseOrphanTx(hash);
3681         }
3682         else if (fMissingInputs)
3683         {
3684             AddOrphanTx(tx);
3685
3686             // DoS prevention: do not allow mapOrphanTransactions to grow unbounded
3687             unsigned int nEvicted = LimitOrphanTxSize(MAX_ORPHAN_TRANSACTIONS);
3688             if (nEvicted > 0)
3689                 printf("mapOrphan overflow, removed %u tx\n", nEvicted);
3690         }
3691         if (tx.nDoS) pfrom->Misbehaving(tx.nDoS);
3692     }
3693
3694
3695     else if (strCommand == "block")
3696     {
3697         CBlock block;
3698         vRecv >> block;
3699         uint256 hashBlock = block.GetHash();
3700
3701         printf("received block %s\n", hashBlock.ToString().substr(0,20).c_str());
3702         // block.print();
3703
3704         CInv inv(MSG_BLOCK, hashBlock);
3705         pfrom->AddInventoryKnown(inv);
3706
3707         if (ProcessBlock(pfrom, &block))
3708             mapAlreadyAskedFor.erase(inv);
3709         if (block.nDoS) pfrom->Misbehaving(block.nDoS);
3710     }
3711
3712
3713     else if (strCommand == "getaddr")
3714     {
3715         // Don't return addresses older than nCutOff timestamp
3716         int64 nCutOff = GetTime() - (nNodeLifespan * 24 * 60 * 60);
3717         pfrom->vAddrToSend.clear();
3718         vector<CAddress> vAddr = addrman.GetAddr();
3719         BOOST_FOREACH(const CAddress &addr, vAddr)
3720             if(addr.nTime > nCutOff)
3721                 pfrom->PushAddress(addr);
3722     }
3723
3724
3725     else if (strCommand == "mempool")
3726     {
3727         std::vector<uint256> vtxid;
3728         mempool.queryHashes(vtxid);
3729         vector<CInv> vInv;
3730         for (unsigned int i = 0; i < vtxid.size(); i++) {
3731             CInv inv(MSG_TX, vtxid[i]);
3732             vInv.push_back(inv);
3733             if (i == (MAX_INV_SZ - 1))
3734                     break;
3735         }
3736         if (vInv.size() > 0)
3737             pfrom->PushMessage("inv", vInv);
3738     }
3739
3740
3741     else if (strCommand == "checkorder")
3742     {
3743         uint256 hashReply;
3744         vRecv >> hashReply;
3745
3746         if (!GetBoolArg("-allowreceivebyip"))
3747         {
3748             pfrom->PushMessage("reply", hashReply, (int)2, string(""));
3749             return true;
3750         }
3751
3752         CWalletTx order;
3753         vRecv >> order;
3754
3755         /// we have a chance to check the order here
3756
3757         // Keep giving the same key to the same ip until they use it
3758         if (!mapReuseKey.count(pfrom->addr))
3759             pwalletMain->GetKeyFromPool(mapReuseKey[pfrom->addr], true);
3760
3761         // Send back approval of order and pubkey to use
3762         CScript scriptPubKey;
3763         scriptPubKey << mapReuseKey[pfrom->addr] << OP_CHECKSIG;
3764         pfrom->PushMessage("reply", hashReply, (int)0, scriptPubKey);
3765     }
3766
3767
3768     else if (strCommand == "reply")
3769     {
3770         uint256 hashReply;
3771         vRecv >> hashReply;
3772
3773         CRequestTracker tracker;
3774         {
3775             LOCK(pfrom->cs_mapRequests);
3776             map<uint256, CRequestTracker>::iterator mi = pfrom->mapRequests.find(hashReply);
3777             if (mi != pfrom->mapRequests.end())
3778             {
3779                 tracker = (*mi).second;
3780                 pfrom->mapRequests.erase(mi);
3781             }
3782         }
3783         if (!tracker.IsNull())
3784             tracker.fn(tracker.param1, vRecv);
3785     }
3786
3787
3788     else if (strCommand == "ping")
3789     {
3790         if (pfrom->nVersion > BIP0031_VERSION)
3791         {
3792             uint64 nonce = 0;
3793             vRecv >> nonce;
3794             // Echo the message back with the nonce. This allows for two useful features:
3795             //
3796             // 1) A remote node can quickly check if the connection is operational
3797             // 2) Remote nodes can measure the latency of the network thread. If this node
3798             //    is overloaded it won't respond to pings quickly and the remote node can
3799             //    avoid sending us more work, like chain download requests.
3800             //
3801             // The nonce stops the remote getting confused between different pings: without
3802             // it, if the remote node sends a ping once per second and this node takes 5
3803             // seconds to respond to each, the 5th ping the remote sends would appear to
3804             // return very quickly.
3805             pfrom->PushMessage("pong", nonce);
3806         }
3807     }
3808
3809
3810     else if (strCommand == "alert")
3811     {
3812         CAlert alert;
3813         vRecv >> alert;
3814
3815         uint256 alertHash = alert.GetHash();
3816         if (pfrom->setKnown.count(alertHash) == 0)
3817         {
3818             if (alert.ProcessAlert())
3819             {
3820                 // Relay
3821                 pfrom->setKnown.insert(alertHash);
3822                 {
3823                     LOCK(cs_vNodes);
3824                     BOOST_FOREACH(CNode* pnode, vNodes)
3825                         alert.RelayTo(pnode);
3826                 }
3827             }
3828             else {
3829                 // Small DoS penalty so peers that send us lots of
3830                 // duplicate/expired/invalid-signature/whatever alerts
3831                 // eventually get banned.
3832                 // This isn't a Misbehaving(100) (immediate ban) because the
3833                 // peer might be an older or different implementation with
3834                 // a different signature key, etc.
3835                 pfrom->Misbehaving(10);
3836             }
3837         }
3838     }
3839
3840
3841     else
3842     {
3843         // Ignore unknown commands for extensibility
3844     }
3845
3846
3847     // Update the last seen time for this node's address
3848     if (pfrom->fNetworkNode)
3849         if (strCommand == "version" || strCommand == "addr" || strCommand == "inv" || strCommand == "getdata" || strCommand == "ping")
3850             AddressCurrentlyConnected(pfrom->addr);
3851
3852
3853     return true;
3854 }
3855
3856 bool ProcessMessages(CNode* pfrom)
3857 {
3858     CDataStream& vRecv = pfrom->vRecv;
3859     if (vRecv.empty())
3860         return true;
3861     //if (fDebug)
3862     //    printf("ProcessMessages(%u bytes)\n", vRecv.size());
3863
3864     //
3865     // Message format
3866     //  (4) message start
3867     //  (12) command
3868     //  (4) size
3869     //  (4) checksum
3870     //  (x) data
3871     //
3872
3873     while (true)
3874     {
3875         // Don't bother if send buffer is too full to respond anyway
3876         if (pfrom->vSend.size() >= SendBufferSize())
3877             break;
3878
3879         // Scan for message start
3880         CDataStream::iterator pstart = search(vRecv.begin(), vRecv.end(), BEGIN(pchMessageStart), END(pchMessageStart));
3881         int nHeaderSize = vRecv.GetSerializeSize(CMessageHeader());
3882         if (vRecv.end() - pstart < nHeaderSize)
3883         {
3884             if ((int)vRecv.size() > nHeaderSize)
3885             {
3886                 printf("\n\nPROCESSMESSAGE MESSAGESTART NOT FOUND\n\n");
3887                 vRecv.erase(vRecv.begin(), vRecv.end() - nHeaderSize);
3888             }
3889             break;
3890         }
3891         if (pstart - vRecv.begin() > 0)
3892             printf("\n\nPROCESSMESSAGE SKIPPED %"PRIpdd" BYTES\n\n", pstart - vRecv.begin());
3893         vRecv.erase(vRecv.begin(), pstart);
3894
3895         // Read header
3896         vector<char> vHeaderSave(vRecv.begin(), vRecv.begin() + nHeaderSize);
3897         CMessageHeader hdr;
3898         vRecv >> hdr;
3899         if (!hdr.IsValid())
3900         {
3901             printf("\n\nPROCESSMESSAGE: ERRORS IN HEADER %s\n\n\n", hdr.GetCommand().c_str());
3902             continue;
3903         }
3904         string strCommand = hdr.GetCommand();
3905
3906         // Message size
3907         unsigned int nMessageSize = hdr.nMessageSize;
3908         if (nMessageSize > MAX_SIZE)
3909         {
3910             printf("ProcessMessages(%s, %u bytes) : nMessageSize > MAX_SIZE\n", strCommand.c_str(), nMessageSize);
3911             continue;
3912         }
3913         if (nMessageSize > vRecv.size())
3914         {
3915             // Rewind and wait for rest of message
3916             vRecv.insert(vRecv.begin(), vHeaderSave.begin(), vHeaderSave.end());
3917             break;
3918         }
3919
3920         // Checksum
3921         uint256 hash = Hash(vRecv.begin(), vRecv.begin() + nMessageSize);
3922         unsigned int nChecksum = 0;
3923         memcpy(&nChecksum, &hash, sizeof(nChecksum));
3924         if (nChecksum != hdr.nChecksum)
3925         {
3926             printf("ProcessMessages(%s, %u bytes) : CHECKSUM ERROR nChecksum=%08x hdr.nChecksum=%08x\n",
3927                strCommand.c_str(), nMessageSize, nChecksum, hdr.nChecksum);
3928             continue;
3929         }
3930
3931         // Copy message to its own buffer
3932         CDataStream vMsg(vRecv.begin(), vRecv.begin() + nMessageSize, vRecv.nType, vRecv.nVersion);
3933         vRecv.ignore(nMessageSize);
3934
3935         // Process message
3936         bool fRet = false;
3937         try
3938         {
3939             {
3940                 LOCK(cs_main);
3941                 fRet = ProcessMessage(pfrom, strCommand, vMsg);
3942             }
3943             if (fShutdown)
3944                 return true;
3945         }
3946         catch (std::ios_base::failure& e)
3947         {
3948             if (strstr(e.what(), "end of data"))
3949             {
3950                 // Allow exceptions from under-length message on vRecv
3951                 printf("ProcessMessages(%s, %u bytes) : Exception '%s' caught, normally caused by a message being shorter than its stated length\n", strCommand.c_str(), nMessageSize, e.what());
3952             }
3953             else if (strstr(e.what(), "size too large"))
3954             {
3955                 // Allow exceptions from over-long size
3956                 printf("ProcessMessages(%s, %u bytes) : Exception '%s' caught\n", strCommand.c_str(), nMessageSize, e.what());
3957             }
3958             else
3959             {
3960                 PrintExceptionContinue(&e, "ProcessMessages()");
3961             }
3962         }
3963         catch (std::exception& e) {
3964             PrintExceptionContinue(&e, "ProcessMessages()");
3965         } catch (...) {
3966             PrintExceptionContinue(NULL, "ProcessMessages()");
3967         }
3968
3969         if (!fRet)
3970             printf("ProcessMessage(%s, %u bytes) FAILED\n", strCommand.c_str(), nMessageSize);
3971     }
3972
3973     vRecv.Compact();
3974     return true;
3975 }
3976
3977
3978 bool SendMessages(CNode* pto, bool fSendTrickle)
3979 {
3980     TRY_LOCK(cs_main, lockMain);
3981     if (lockMain) {
3982         // Don't send anything until we get their version message
3983         if (pto->nVersion == 0)
3984             return true;
3985
3986         // Keep-alive ping. We send a nonce of zero because we don't use it anywhere
3987         // right now.
3988         if (pto->nLastSend && GetTime() - pto->nLastSend > 30 * 60 && pto->vSend.empty()) {
3989             uint64 nonce = 0;
3990             if (pto->nVersion > BIP0031_VERSION)
3991                 pto->PushMessage("ping", nonce);
3992             else
3993                 pto->PushMessage("ping");
3994         }
3995
3996         // Resend wallet transactions that haven't gotten in a block yet
3997         ResendWalletTransactions();
3998
3999         // Address refresh broadcast
4000         static int64 nLastRebroadcast;
4001         if (!IsInitialBlockDownload() && (GetTime() - nLastRebroadcast > 24 * 60 * 60))
4002         {
4003             {
4004                 LOCK(cs_vNodes);
4005                 BOOST_FOREACH(CNode* pnode, vNodes)
4006                 {
4007                     // Periodically clear setAddrKnown to allow refresh broadcasts
4008                     if (nLastRebroadcast)
4009                         pnode->setAddrKnown.clear();
4010
4011                     // Rebroadcast our address
4012                     if (!fNoListen)
4013                     {
4014                         CAddress addr = GetLocalAddress(&pnode->addr);
4015                         if (addr.IsRoutable())
4016                             pnode->PushAddress(addr);
4017                     }
4018                 }
4019             }
4020             nLastRebroadcast = GetTime();
4021         }
4022
4023         //
4024         // Message: addr
4025         //
4026         if (fSendTrickle)
4027         {
4028             vector<CAddress> vAddr;
4029             vAddr.reserve(pto->vAddrToSend.size());
4030             BOOST_FOREACH(const CAddress& addr, pto->vAddrToSend)
4031             {
4032                 // returns true if wasn't already contained in the set
4033                 if (pto->setAddrKnown.insert(addr).second)
4034                 {
4035                     vAddr.push_back(addr);
4036                     // receiver rejects addr messages larger than 1000
4037                     if (vAddr.size() >= 1000)
4038                     {
4039                         pto->PushMessage("addr", vAddr);
4040                         vAddr.clear();
4041                     }
4042                 }
4043             }
4044             pto->vAddrToSend.clear();
4045             if (!vAddr.empty())
4046                 pto->PushMessage("addr", vAddr);
4047         }
4048
4049
4050         //
4051         // Message: inventory
4052         //
4053         vector<CInv> vInv;
4054         vector<CInv> vInvWait;
4055         {
4056             LOCK(pto->cs_inventory);
4057             vInv.reserve(pto->vInventoryToSend.size());
4058             vInvWait.reserve(pto->vInventoryToSend.size());
4059             BOOST_FOREACH(const CInv& inv, pto->vInventoryToSend)
4060             {
4061                 if (pto->setInventoryKnown.count(inv))
4062                     continue;
4063
4064                 // trickle out tx inv to protect privacy
4065                 if (inv.type == MSG_TX && !fSendTrickle)
4066                 {
4067                     // 1/4 of tx invs blast to all immediately
4068                     static uint256 hashSalt;
4069                     if (hashSalt == 0)
4070                         hashSalt = GetRandHash();
4071                     uint256 hashRand = inv.hash ^ hashSalt;
4072                     hashRand = Hash(BEGIN(hashRand), END(hashRand));
4073                     bool fTrickleWait = ((hashRand & 3) != 0);
4074
4075                     // always trickle our own transactions
4076                     if (!fTrickleWait)
4077                     {
4078                         CWalletTx wtx;
4079                         if (GetTransaction(inv.hash, wtx))
4080                             if (wtx.fFromMe)
4081                                 fTrickleWait = true;
4082                     }
4083
4084                     if (fTrickleWait)
4085                     {
4086                         vInvWait.push_back(inv);
4087                         continue;
4088                     }
4089                 }
4090
4091                 // returns true if wasn't already contained in the set
4092                 if (pto->setInventoryKnown.insert(inv).second)
4093                 {
4094                     vInv.push_back(inv);
4095                     if (vInv.size() >= 1000)
4096                     {
4097                         pto->PushMessage("inv", vInv);
4098                         vInv.clear();
4099                     }
4100                 }
4101             }
4102             pto->vInventoryToSend = vInvWait;
4103         }
4104         if (!vInv.empty())
4105             pto->PushMessage("inv", vInv);
4106
4107
4108         //
4109         // Message: getdata
4110         //
4111         vector<CInv> vGetData;
4112         int64 nNow = GetTime() * 1000000;
4113         CTxDB txdb("r");
4114         while (!pto->mapAskFor.empty() && (*pto->mapAskFor.begin()).first <= nNow)
4115         {
4116             const CInv& inv = (*pto->mapAskFor.begin()).second;
4117             if (!AlreadyHave(txdb, inv))
4118             {
4119                 if (fDebugNet)
4120                     printf("sending getdata: %s\n", inv.ToString().c_str());
4121                 vGetData.push_back(inv);
4122                 if (vGetData.size() >= 1000)
4123                 {
4124                     pto->PushMessage("getdata", vGetData);
4125                     vGetData.clear();
4126                 }
4127                 mapAlreadyAskedFor[inv] = nNow;
4128             }
4129             pto->mapAskFor.erase(pto->mapAskFor.begin());
4130         }
4131         if (!vGetData.empty())
4132             pto->PushMessage("getdata", vGetData);
4133
4134     }
4135     return true;
4136 }