Extended signature format checkings.
[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, VALIDATION_SWITCH_TIME < tx.nTime ? STRICT_FLAGS : SOFT_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 & STRICT_FLAGS)
1548                     {
1549                         // Don't trigger DoS code in case of STRICT_FLAGS caused failure.
1550                         CScriptCheck check(txPrev, *this, i, flags & ~STRICT_FLAGS, 0);
1551                         if (check())
1552                             return error("ConnectInputs() : %s strict VerifySignature failed", GetHash().ToString().substr(0,10).c_str());
1553                     }
1554                     return DoS(100,error("ConnectInputs() : %s VerifySignature failed", GetHash().ToString().substr(0,10).c_str()));
1555                 }
1556             }
1557
1558             // Mark outpoints as spent
1559             txindex.vSpent[prevout.n] = posThisTx;
1560
1561             // Write back
1562             if (fBlock || fMiner)
1563             {
1564                 mapTestPool[prevout.hash] = txindex;
1565             }
1566         }
1567
1568         if (IsCoinStake())
1569         {
1570             // ppcoin: coin stake tx earns reward instead of paying fee
1571             uint64 nCoinAge;
1572             if (!GetCoinAge(txdb, nCoinAge))
1573                 return error("ConnectInputs() : %s unable to get coin age for coinstake", GetHash().ToString().substr(0,10).c_str());
1574
1575             unsigned int nTxSize = (nTime > VALIDATION_SWITCH_TIME || fTestNet) ? GetSerializeSize(SER_NETWORK, PROTOCOL_VERSION) : 0;
1576
1577             int64 nReward = GetValueOut() - nValueIn;
1578             int64 nCalculatedReward = GetProofOfStakeReward(nCoinAge, pindexBlock->nBits, nTime) - GetMinFee(1, false, GMF_BLOCK, nTxSize) + CENT;
1579
1580             if (nReward > nCalculatedReward)
1581                 return DoS(100, error("ConnectInputs() : coinstake pays too much(actual=%"PRI64d" vs calculated=%"PRI64d")", nReward, nCalculatedReward));
1582         }
1583         else
1584         {
1585             if (nValueIn < GetValueOut())
1586                 return DoS(100, error("ConnectInputs() : %s value in < value out", GetHash().ToString().substr(0,10).c_str()));
1587
1588             // Tally transaction fees
1589             int64 nTxFee = nValueIn - GetValueOut();
1590             if (nTxFee < 0)
1591                 return DoS(100, error("ConnectInputs() : %s nTxFee < 0", GetHash().ToString().substr(0,10).c_str()));
1592
1593             nFees += nTxFee;
1594             if (!MoneyRange(nFees))
1595                 return DoS(100, error("ConnectInputs() : nFees out of range"));
1596         }
1597     }
1598
1599     return true;
1600 }
1601
1602
1603 bool CTransaction::ClientConnectInputs()
1604 {
1605     if (IsCoinBase())
1606         return false;
1607
1608     // Take over previous transactions' spent pointers
1609     {
1610         LOCK(mempool.cs);
1611         int64 nValueIn = 0;
1612         for (unsigned int i = 0; i < vin.size(); i++)
1613         {
1614             // Get prev tx from single transactions in memory
1615             COutPoint prevout = vin[i].prevout;
1616             if (!mempool.exists(prevout.hash))
1617                 return false;
1618             CTransaction& txPrev = mempool.lookup(prevout.hash);
1619
1620             if (prevout.n >= txPrev.vout.size())
1621                 return false;
1622
1623             // Verify signature
1624             if (!VerifySignature(txPrev, *this, i, SCRIPT_VERIFY_NOCACHE | SCRIPT_VERIFY_P2SH, 0))
1625                 return error("ClientConnectInputs() : VerifySignature failed");
1626
1627             ///// this is redundant with the mempool.mapNextTx stuff,
1628             ///// not sure which I want to get rid of
1629             ///// this has to go away now that posNext is gone
1630             // // Check for conflicts
1631             // if (!txPrev.vout[prevout.n].posNext.IsNull())
1632             //     return error("ConnectInputs() : prev tx already used");
1633             //
1634             // // Flag outpoints as used
1635             // txPrev.vout[prevout.n].posNext = posThisTx;
1636
1637             nValueIn += txPrev.vout[prevout.n].nValue;
1638
1639             if (!MoneyRange(txPrev.vout[prevout.n].nValue) || !MoneyRange(nValueIn))
1640                 return error("ClientConnectInputs() : txin values out of range");
1641         }
1642         if (GetValueOut() > nValueIn)
1643             return false;
1644     }
1645
1646     return true;
1647 }
1648
1649
1650
1651
1652 bool CBlock::DisconnectBlock(CTxDB& txdb, CBlockIndex* pindex)
1653 {
1654     // Disconnect in reverse order
1655     for (int i = vtx.size()-1; i >= 0; i--)
1656         if (!vtx[i].DisconnectInputs(txdb))
1657             return false;
1658
1659     // Update block index on disk without changing it in memory.
1660     // The memory index structure will be changed after the db commits.
1661     if (pindex->pprev)
1662     {
1663         CDiskBlockIndex blockindexPrev(pindex->pprev);
1664         blockindexPrev.hashNext = 0;
1665         if (!txdb.WriteBlockIndex(blockindexPrev))
1666             return error("DisconnectBlock() : WriteBlockIndex failed");
1667     }
1668
1669     // ppcoin: clean up wallet after disconnecting coinstake
1670     BOOST_FOREACH(CTransaction& tx, vtx)
1671         SyncWithWallets(tx, this, false, false);
1672
1673     return true;
1674 }
1675
1676 static CCheckQueue<CScriptCheck> scriptcheckqueue(128);
1677
1678 void ThreadScriptCheck(void*) {
1679     vnThreadsRunning[THREAD_SCRIPTCHECK]++;
1680     RenameThread("novacoin-scriptch");
1681     scriptcheckqueue.Thread();
1682     vnThreadsRunning[THREAD_SCRIPTCHECK]--;
1683 }
1684
1685 void ThreadScriptCheckQuit() {
1686     scriptcheckqueue.Quit();
1687 }
1688
1689 bool CBlock::ConnectBlock(CTxDB& txdb, CBlockIndex* pindex, bool fJustCheck)
1690 {
1691     // Check it again in case a previous version let a bad block in, but skip BlockSig checking
1692     if (!CheckBlock(!fJustCheck, !fJustCheck, false))
1693         return false;
1694
1695     bool fProtocol048 = fTestNet || VALIDATION_SWITCH_TIME < nTime;
1696
1697     // Do not allow blocks that contain transactions which 'overwrite' older transactions,
1698     // unless those are already completely spent.
1699     // If such overwrites are allowed, coinbases and transactions depending upon those
1700     // can be duplicated to remove the ability to spend the first instance -- even after
1701     // being sent to another address.
1702     // See BIP30 and http://r6.ca/blog/20120206T005236Z.html for more information.
1703     // This logic is not necessary for memory pool transactions, as AcceptToMemoryPool
1704     // already refuses previously-known transaction ids entirely.
1705     // This rule was originally applied all blocks whose timestamp was after March 15, 2012, 0:00 UTC.
1706     // Now that the whole chain is irreversibly beyond that time it is applied to all blocks except the
1707     // two in the chain that violate it. This prevents exploiting the issue against nodes in their
1708     // initial block download.
1709     bool fEnforceBIP30 = true; // Always active in NovaCoin
1710     bool fScriptChecks = pindex->nHeight >= Checkpoints::GetTotalBlocksEstimate();
1711
1712     //// issue here: it doesn't know the version
1713     unsigned int nTxPos;
1714     if (fJustCheck)
1715         // FetchInputs treats CDiskTxPos(1,1,1) as a special "refer to memorypool" indicator
1716         // 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
1717         nTxPos = 1;
1718     else
1719         nTxPos = pindex->nBlockPos + ::GetSerializeSize(CBlock(), SER_DISK, CLIENT_VERSION) - (2 * GetSizeOfCompactSize(0)) + GetSizeOfCompactSize(vtx.size());
1720
1721     map<uint256, CTxIndex> mapQueuedChanges;
1722     CCheckQueueControl<CScriptCheck> control(fScriptChecks && nScriptCheckThreads ? &scriptcheckqueue : NULL);
1723
1724     int64 nFees = 0;
1725     int64 nValueIn = 0;
1726     int64 nValueOut = 0;
1727     unsigned int nSigOps = 0;
1728     BOOST_FOREACH(CTransaction& tx, vtx)
1729     {
1730         uint256 hashTx = tx.GetHash();
1731
1732         if (fEnforceBIP30) {
1733             CTxIndex txindexOld;
1734             if (txdb.ReadTxIndex(hashTx, txindexOld)) {
1735                 BOOST_FOREACH(CDiskTxPos &pos, txindexOld.vSpent)
1736                     if (pos.IsNull())
1737                         return false;
1738             }
1739         }
1740
1741         nSigOps += tx.GetLegacySigOpCount();
1742         if (nSigOps > MAX_BLOCK_SIGOPS)
1743             return DoS(100, error("ConnectBlock() : too many sigops"));
1744
1745         CDiskTxPos posThisTx(pindex->nFile, pindex->nBlockPos, nTxPos);
1746         if (!fJustCheck)
1747             nTxPos += ::GetSerializeSize(tx, SER_DISK, CLIENT_VERSION);
1748
1749         MapPrevTx mapInputs;
1750         if (tx.IsCoinBase())
1751             nValueOut += tx.GetValueOut();
1752         else
1753         {
1754             bool fInvalid;
1755             if (!tx.FetchInputs(txdb, mapQueuedChanges, true, false, mapInputs, fInvalid))
1756                 return false;
1757
1758             // Add in sigops done by pay-to-script-hash inputs;
1759             // this is to prevent a "rogue miner" from creating
1760             // an incredibly-expensive-to-validate block.
1761             nSigOps += tx.GetP2SHSigOpCount(mapInputs);
1762             if (nSigOps > MAX_BLOCK_SIGOPS)
1763                 return DoS(100, error("ConnectBlock() : too many sigops"));
1764
1765             int64 nTxValueIn = tx.GetValueIn(mapInputs);
1766             int64 nTxValueOut = tx.GetValueOut();
1767             nValueIn += nTxValueIn;
1768             nValueOut += nTxValueOut;
1769             if (!tx.IsCoinStake())
1770                 nFees += nTxValueIn - nTxValueOut;
1771
1772             std::vector<CScriptCheck> vChecks;
1773             if (!tx.ConnectInputs(txdb, mapInputs, mapQueuedChanges, posThisTx, pindex, true, false, fScriptChecks, SCRIPT_VERIFY_NOCACHE | SCRIPT_VERIFY_P2SH, nScriptCheckThreads ? &vChecks : NULL))
1774                 return false;
1775             control.Add(vChecks);
1776         }
1777
1778         mapQueuedChanges[hashTx] = CTxIndex(posThisTx, tx.vout.size());
1779     }
1780
1781     if (!control.Wait())
1782         return DoS(100, false);
1783
1784     if (IsProofOfWork())
1785     {
1786         int64 nBlockReward = GetProofOfWorkReward(nBits, fProtocol048 ? nFees : 0);
1787
1788         // Check coinbase reward
1789         if (vtx[0].GetValueOut() > nBlockReward)
1790             return error("CheckBlock() : coinbase reward exceeded (actual=%"PRI64d" vs calculated=%"PRI64d")",
1791                    vtx[0].GetValueOut(),
1792                    nBlockReward);
1793     }
1794
1795     // track money supply and mint amount info
1796     pindex->nMint = nValueOut - nValueIn + nFees;
1797     pindex->nMoneySupply = (pindex->pprev? pindex->pprev->nMoneySupply : 0) + nValueOut - nValueIn;
1798     if (!txdb.WriteBlockIndex(CDiskBlockIndex(pindex)))
1799         return error("Connect() : WriteBlockIndex for pindex failed");
1800
1801     // fees are not collected by proof-of-stake miners
1802     // fees are destroyed to compensate the entire network
1803     if (fProtocol048 && fDebug && IsProofOfStake() && GetBoolArg("-printcreation"))
1804         printf("ConnectBlock() : destroy=%s nFees=%"PRI64d"\n", FormatMoney(nFees).c_str(), nFees);
1805
1806     if (fJustCheck)
1807         return true;
1808
1809     // Write queued txindex changes
1810     for (map<uint256, CTxIndex>::iterator mi = mapQueuedChanges.begin(); mi != mapQueuedChanges.end(); ++mi)
1811     {
1812         if (!txdb.UpdateTxIndex((*mi).first, (*mi).second))
1813             return error("ConnectBlock() : UpdateTxIndex failed");
1814     }
1815
1816     // Update block index on disk without changing it in memory.
1817     // The memory index structure will be changed after the db commits.
1818     if (pindex->pprev)
1819     {
1820         CDiskBlockIndex blockindexPrev(pindex->pprev);
1821         blockindexPrev.hashNext = pindex->GetBlockHash();
1822         if (!txdb.WriteBlockIndex(blockindexPrev))
1823             return error("ConnectBlock() : WriteBlockIndex failed");
1824     }
1825
1826     // Watch for transactions paying to me
1827     BOOST_FOREACH(CTransaction& tx, vtx)
1828         SyncWithWallets(tx, this, true);
1829
1830     return true;
1831 }
1832
1833 bool static Reorganize(CTxDB& txdb, CBlockIndex* pindexNew)
1834 {
1835     printf("REORGANIZE\n");
1836
1837     // Find the fork
1838     CBlockIndex* pfork = pindexBest;
1839     CBlockIndex* plonger = pindexNew;
1840     while (pfork != plonger)
1841     {
1842         while (plonger->nHeight > pfork->nHeight)
1843             if (!(plonger = plonger->pprev))
1844                 return error("Reorganize() : plonger->pprev is null");
1845         if (pfork == plonger)
1846             break;
1847         if (!(pfork = pfork->pprev))
1848             return error("Reorganize() : pfork->pprev is null");
1849     }
1850
1851     // List of what to disconnect
1852     vector<CBlockIndex*> vDisconnect;
1853     for (CBlockIndex* pindex = pindexBest; pindex != pfork; pindex = pindex->pprev)
1854         vDisconnect.push_back(pindex);
1855
1856     // List of what to connect
1857     vector<CBlockIndex*> vConnect;
1858     for (CBlockIndex* pindex = pindexNew; pindex != pfork; pindex = pindex->pprev)
1859         vConnect.push_back(pindex);
1860     reverse(vConnect.begin(), vConnect.end());
1861
1862     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());
1863     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());
1864
1865     // Disconnect shorter branch
1866     vector<CTransaction> vResurrect;
1867     BOOST_FOREACH(CBlockIndex* pindex, vDisconnect)
1868     {
1869         CBlock block;
1870         if (!block.ReadFromDisk(pindex))
1871             return error("Reorganize() : ReadFromDisk for disconnect failed");
1872         if (!block.DisconnectBlock(txdb, pindex))
1873             return error("Reorganize() : DisconnectBlock %s failed", pindex->GetBlockHash().ToString().substr(0,20).c_str());
1874
1875         // Queue memory transactions to resurrect
1876         BOOST_FOREACH(const CTransaction& tx, block.vtx)
1877             if (!(tx.IsCoinBase() || tx.IsCoinStake()))
1878                 vResurrect.push_back(tx);
1879     }
1880
1881     // Connect longer branch
1882     vector<CTransaction> vDelete;
1883     for (unsigned int i = 0; i < vConnect.size(); i++)
1884     {
1885         CBlockIndex* pindex = vConnect[i];
1886         CBlock block;
1887         if (!block.ReadFromDisk(pindex))
1888             return error("Reorganize() : ReadFromDisk for connect failed");
1889         if (!block.ConnectBlock(txdb, pindex))
1890         {
1891             // Invalid block
1892             return error("Reorganize() : ConnectBlock %s failed", pindex->GetBlockHash().ToString().substr(0,20).c_str());
1893         }
1894
1895         // Queue memory transactions to delete
1896         BOOST_FOREACH(const CTransaction& tx, block.vtx)
1897             vDelete.push_back(tx);
1898     }
1899     if (!txdb.WriteHashBestChain(pindexNew->GetBlockHash()))
1900         return error("Reorganize() : WriteHashBestChain failed");
1901
1902     // Make sure it's successfully written to disk before changing memory structure
1903     if (!txdb.TxnCommit())
1904         return error("Reorganize() : TxnCommit failed");
1905
1906     // Disconnect shorter branch
1907     BOOST_FOREACH(CBlockIndex* pindex, vDisconnect)
1908         if (pindex->pprev)
1909             pindex->pprev->pnext = NULL;
1910
1911     // Connect longer branch
1912     BOOST_FOREACH(CBlockIndex* pindex, vConnect)
1913         if (pindex->pprev)
1914             pindex->pprev->pnext = pindex;
1915
1916     // Resurrect memory transactions that were in the disconnected branch
1917     BOOST_FOREACH(CTransaction& tx, vResurrect)
1918         tx.AcceptToMemoryPool(txdb, false);
1919
1920     // Delete redundant memory transactions that are in the connected branch
1921     BOOST_FOREACH(CTransaction& tx, vDelete)
1922         mempool.remove(tx);
1923
1924     printf("REORGANIZE: done\n");
1925
1926     return true;
1927 }
1928
1929
1930 // Called from inside SetBestChain: attaches a block to the new best chain being built
1931 bool CBlock::SetBestChainInner(CTxDB& txdb, CBlockIndex *pindexNew)
1932 {
1933     uint256 hash = GetHash();
1934
1935     // Adding to current best branch
1936     if (!ConnectBlock(txdb, pindexNew) || !txdb.WriteHashBestChain(hash))
1937     {
1938         txdb.TxnAbort();
1939         InvalidChainFound(pindexNew);
1940         return false;
1941     }
1942     if (!txdb.TxnCommit())
1943         return error("SetBestChain() : TxnCommit failed");
1944
1945     // Add to current best branch
1946     pindexNew->pprev->pnext = pindexNew;
1947
1948     // Delete redundant memory transactions
1949     BOOST_FOREACH(CTransaction& tx, vtx)
1950         mempool.remove(tx);
1951
1952     return true;
1953 }
1954
1955 bool CBlock::SetBestChain(CTxDB& txdb, CBlockIndex* pindexNew)
1956 {
1957     uint256 hash = GetHash();
1958
1959     if (!txdb.TxnBegin())
1960         return error("SetBestChain() : TxnBegin failed");
1961
1962     if (pindexGenesisBlock == NULL && hash == (!fTestNet ? hashGenesisBlock : hashGenesisBlockTestNet))
1963     {
1964         txdb.WriteHashBestChain(hash);
1965         if (!txdb.TxnCommit())
1966             return error("SetBestChain() : TxnCommit failed");
1967         pindexGenesisBlock = pindexNew;
1968     }
1969     else if (hashPrevBlock == hashBestChain)
1970     {
1971         if (!SetBestChainInner(txdb, pindexNew))
1972             return error("SetBestChain() : SetBestChainInner failed");
1973     }
1974     else
1975     {
1976         // the first block in the new chain that will cause it to become the new best chain
1977         CBlockIndex *pindexIntermediate = pindexNew;
1978
1979         // list of blocks that need to be connected afterwards
1980         std::vector<CBlockIndex*> vpindexSecondary;
1981
1982         // Reorganize is costly in terms of db load, as it works in a single db transaction.
1983         // Try to limit how much needs to be done inside
1984         while (pindexIntermediate->pprev && pindexIntermediate->pprev->nChainTrust > pindexBest->nChainTrust)
1985         {
1986             vpindexSecondary.push_back(pindexIntermediate);
1987             pindexIntermediate = pindexIntermediate->pprev;
1988         }
1989
1990         if (!vpindexSecondary.empty())
1991             printf("Postponing %"PRIszu" reconnects\n", vpindexSecondary.size());
1992
1993         // Switch to new best branch
1994         if (!Reorganize(txdb, pindexIntermediate))
1995         {
1996             txdb.TxnAbort();
1997             InvalidChainFound(pindexNew);
1998             return error("SetBestChain() : Reorganize failed");
1999         }
2000
2001         // Connect further blocks
2002         BOOST_REVERSE_FOREACH(CBlockIndex *pindex, vpindexSecondary)
2003         {
2004             CBlock block;
2005             if (!block.ReadFromDisk(pindex))
2006             {
2007                 printf("SetBestChain() : ReadFromDisk failed\n");
2008                 break;
2009             }
2010             if (!txdb.TxnBegin()) {
2011                 printf("SetBestChain() : TxnBegin 2 failed\n");
2012                 break;
2013             }
2014             // errors now are not fatal, we still did a reorganisation to a new chain in a valid way
2015             if (!block.SetBestChainInner(txdb, pindex))
2016                 break;
2017         }
2018     }
2019
2020     // Update best block in wallet (so we can detect restored wallets)
2021     bool fIsInitialDownload = IsInitialBlockDownload();
2022     if (!fIsInitialDownload)
2023     {
2024         const CBlockLocator locator(pindexNew);
2025         ::SetBestChain(locator);
2026     }
2027
2028     // New best block
2029     hashBestChain = hash;
2030     pindexBest = pindexNew;
2031     pblockindexFBBHLast = NULL;
2032     nBestHeight = pindexBest->nHeight;
2033     nBestChainTrust = pindexNew->nChainTrust;
2034     nTimeBestReceived = GetTime();
2035     nTransactionsUpdated++;
2036
2037     uint256 nBestBlockTrust = pindexBest->nHeight != 0 ? (pindexBest->nChainTrust - pindexBest->pprev->nChainTrust) : pindexBest->nChainTrust;
2038
2039     printf("SetBestChain: new best=%s  height=%d  trust=%s  blocktrust=%"PRI64d"  date=%s\n",
2040       hashBestChain.ToString().substr(0,20).c_str(), nBestHeight,
2041       CBigNum(nBestChainTrust).ToString().c_str(),
2042       nBestBlockTrust.Get64(),
2043       DateTimeStrFormat("%x %H:%M:%S", pindexBest->GetBlockTime()).c_str());
2044
2045     // Check the version of the last 100 blocks to see if we need to upgrade:
2046     if (!fIsInitialDownload)
2047     {
2048         int nUpgraded = 0;
2049         const CBlockIndex* pindex = pindexBest;
2050         for (int i = 0; i < 100 && pindex != NULL; i++)
2051         {
2052             if (pindex->nVersion > CBlock::CURRENT_VERSION)
2053                 ++nUpgraded;
2054             pindex = pindex->pprev;
2055         }
2056         if (nUpgraded > 0)
2057             printf("SetBestChain: %d of last 100 blocks above version %d\n", nUpgraded, CBlock::CURRENT_VERSION);
2058         if (nUpgraded > 100/2)
2059             // strMiscWarning is read by GetWarnings(), called by Qt and the JSON-RPC code to warn the user:
2060             strMiscWarning = _("Warning: This version is obsolete, upgrade required!");
2061     }
2062
2063     std::string strCmd = GetArg("-blocknotify", "");
2064
2065     if (!fIsInitialDownload && !strCmd.empty())
2066     {
2067         boost::replace_all(strCmd, "%s", hashBestChain.GetHex());
2068         boost::thread t(runCommand, strCmd); // thread runs free
2069     }
2070
2071     return true;
2072 }
2073
2074 // ppcoin: total coin age spent in transaction, in the unit of coin-days.
2075 // Only those coins meeting minimum age requirement counts. As those
2076 // transactions not in main chain are not currently indexed so we
2077 // might not find out about their coin age. Older transactions are 
2078 // guaranteed to be in main chain by sync-checkpoint. This rule is
2079 // introduced to help nodes establish a consistent view of the coin
2080 // age (trust score) of competing branches.
2081 bool CTransaction::GetCoinAge(CTxDB& txdb, uint64& nCoinAge) const
2082 {
2083     CBigNum bnCentSecond = 0;  // coin age in the unit of cent-seconds
2084     nCoinAge = 0;
2085
2086     if (IsCoinBase())
2087         return true;
2088
2089     BOOST_FOREACH(const CTxIn& txin, vin)
2090     {
2091         // First try finding the previous transaction in database
2092         CTransaction txPrev;
2093         CTxIndex txindex;
2094         if (!txPrev.ReadFromDisk(txdb, txin.prevout, txindex))
2095             continue;  // previous transaction not in main chain
2096         if (nTime < txPrev.nTime)
2097             return false;  // Transaction timestamp violation
2098
2099         // Read block header
2100         CBlock block;
2101         if (!block.ReadFromDisk(txindex.pos.nFile, txindex.pos.nBlockPos, false))
2102             return false; // unable to read block of previous transaction
2103         if (block.GetBlockTime() + nStakeMinAge > nTime)
2104             continue; // only count coins meeting min age requirement
2105
2106         int64 nValueIn = txPrev.vout[txin.prevout.n].nValue;
2107         bnCentSecond += CBigNum(nValueIn) * (nTime-txPrev.nTime) / CENT;
2108
2109         if (fDebug && GetBoolArg("-printcoinage"))
2110             printf("coin age nValueIn=%"PRI64d" nTimeDiff=%d bnCentSecond=%s\n", nValueIn, nTime - txPrev.nTime, bnCentSecond.ToString().c_str());
2111     }
2112
2113     CBigNum bnCoinDay = bnCentSecond * CENT / COIN / (24 * 60 * 60);
2114     if (fDebug && GetBoolArg("-printcoinage"))
2115         printf("coin age bnCoinDay=%s\n", bnCoinDay.ToString().c_str());
2116     nCoinAge = bnCoinDay.getuint64();
2117     return true;
2118 }
2119
2120 // ppcoin: total coin age spent in block, in the unit of coin-days.
2121 bool CBlock::GetCoinAge(uint64& nCoinAge) const
2122 {
2123     nCoinAge = 0;
2124
2125     CTxDB txdb("r");
2126     BOOST_FOREACH(const CTransaction& tx, vtx)
2127     {
2128         uint64 nTxCoinAge;
2129         if (tx.GetCoinAge(txdb, nTxCoinAge))
2130             nCoinAge += nTxCoinAge;
2131         else
2132             return false;
2133     }
2134
2135     if (nCoinAge == 0) // block coin age minimum 1 coin-day
2136         nCoinAge = 1;
2137     if (fDebug && GetBoolArg("-printcoinage"))
2138         printf("block coin age total nCoinDays=%"PRI64d"\n", nCoinAge);
2139     return true;
2140 }
2141
2142 bool CBlock::AddToBlockIndex(unsigned int nFile, unsigned int nBlockPos)
2143 {
2144     // Check for duplicate
2145     uint256 hash = GetHash();
2146     if (mapBlockIndex.count(hash))
2147         return error("AddToBlockIndex() : %s already exists", hash.ToString().substr(0,20).c_str());
2148
2149     // Construct new block index object
2150     CBlockIndex* pindexNew = new CBlockIndex(nFile, nBlockPos, *this);
2151     if (!pindexNew)
2152         return error("AddToBlockIndex() : new CBlockIndex failed");
2153     pindexNew->phashBlock = &hash;
2154     map<uint256, CBlockIndex*>::iterator miPrev = mapBlockIndex.find(hashPrevBlock);
2155     if (miPrev != mapBlockIndex.end())
2156     {
2157         pindexNew->pprev = (*miPrev).second;
2158         pindexNew->nHeight = pindexNew->pprev->nHeight + 1;
2159     }
2160
2161     // ppcoin: compute chain trust score
2162     pindexNew->nChainTrust = (pindexNew->pprev ? pindexNew->pprev->nChainTrust : 0) + pindexNew->GetBlockTrust();
2163
2164     // ppcoin: compute stake entropy bit for stake modifier
2165     if (!pindexNew->SetStakeEntropyBit(GetStakeEntropyBit(pindexNew->nTime)))
2166         return error("AddToBlockIndex() : SetStakeEntropyBit() failed");
2167
2168     // ppcoin: record proof-of-stake hash value
2169     if (pindexNew->IsProofOfStake())
2170     {
2171         if (!mapProofOfStake.count(hash))
2172             return error("AddToBlockIndex() : hashProofOfStake not found in map");
2173         pindexNew->hashProofOfStake = mapProofOfStake[hash];
2174     }
2175
2176     // ppcoin: compute stake modifier
2177     uint64 nStakeModifier = 0;
2178     bool fGeneratedStakeModifier = false;
2179     if (!ComputeNextStakeModifier(pindexNew, nStakeModifier, fGeneratedStakeModifier))
2180         return error("AddToBlockIndex() : ComputeNextStakeModifier() failed");
2181     pindexNew->SetStakeModifier(nStakeModifier, fGeneratedStakeModifier);
2182     pindexNew->nStakeModifierChecksum = GetStakeModifierChecksum(pindexNew);
2183     if (!CheckStakeModifierCheckpoints(pindexNew->nHeight, pindexNew->nStakeModifierChecksum))
2184         return error("AddToBlockIndex() : Rejected by stake modifier checkpoint height=%d, modifier=0x%016"PRI64x, pindexNew->nHeight, nStakeModifier);
2185
2186     // Add to mapBlockIndex
2187     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.insert(make_pair(hash, pindexNew)).first;
2188     if (pindexNew->IsProofOfStake())
2189         setStakeSeen.insert(make_pair(pindexNew->prevoutStake, pindexNew->nStakeTime));
2190     pindexNew->phashBlock = &((*mi).first);
2191
2192     // Write to disk block index
2193     CTxDB txdb;
2194     if (!txdb.TxnBegin())
2195         return false;
2196     txdb.WriteBlockIndex(CDiskBlockIndex(pindexNew));
2197     if (!txdb.TxnCommit())
2198         return false;
2199
2200     // New best
2201     if (pindexNew->nChainTrust > nBestChainTrust)
2202         if (!SetBestChain(txdb, pindexNew))
2203             return false;
2204
2205     if (pindexNew == pindexBest)
2206     {
2207         // Notify UI to display prev block's coinbase if it was ours
2208         static uint256 hashPrevBestCoinBase;
2209         UpdatedTransaction(hashPrevBestCoinBase);
2210         hashPrevBestCoinBase = vtx[0].GetHash();
2211     }
2212
2213     uiInterface.NotifyBlocksChanged();
2214     return true;
2215 }
2216
2217
2218
2219
2220 bool CBlock::CheckBlock(bool fCheckPOW, bool fCheckMerkleRoot, bool fCheckSig) const
2221 {
2222     // These are checks that are independent of context
2223     // that can be verified before saving an orphan block.
2224
2225     // Size limits
2226     if (vtx.empty() || vtx.size() > MAX_BLOCK_SIZE || ::GetSerializeSize(*this, SER_NETWORK, PROTOCOL_VERSION) > MAX_BLOCK_SIZE)
2227         return DoS(100, error("CheckBlock() : size limits failed"));
2228
2229     bool fProtocol048 = fTestNet || VALIDATION_SWITCH_TIME < nTime;
2230
2231     // Check proof of work matches claimed amount
2232     if (fCheckPOW && IsProofOfWork() && !CheckProofOfWork(GetHash(), nBits))
2233         return DoS(50, error("CheckBlock() : proof of work failed"));
2234
2235     // Check timestamp
2236     if (GetBlockTime() > FutureDrift(GetAdjustedTime()))
2237         return error("CheckBlock() : block timestamp too far in the future");
2238
2239     // First transaction must be coinbase, the rest must not be
2240     if (vtx.empty() || !vtx[0].IsCoinBase())
2241         return DoS(100, error("CheckBlock() : first tx is not coinbase"));
2242
2243     if (!fProtocol048)
2244     {
2245         // Check coinbase timestamp
2246         if (GetBlockTime() < (int64)vtx[0].nTime)
2247             return DoS(100, error("CheckBlock() : coinbase timestamp violation"));
2248     }
2249     else
2250     {
2251         // Check coinbase timestamp
2252         if (GetBlockTime() < PastDrift((int64)vtx[0].nTime))
2253             return DoS(50, error("CheckBlock() : coinbase timestamp is too late"));
2254     }
2255
2256     for (unsigned int i = 1; i < vtx.size(); i++)
2257     {
2258         if (vtx[i].IsCoinBase())
2259             return DoS(100, error("CheckBlock() : more than one coinbase"));
2260
2261         // Check transaction timestamp
2262         if (GetBlockTime() < (int64)vtx[i].nTime)
2263             return DoS(50, error("CheckBlock() : block timestamp earlier than transaction timestamp"));
2264     }
2265
2266     if (IsProofOfStake())
2267     {
2268         if (fProtocol048)
2269         {
2270             if (nNonce != 0)
2271                 return DoS(100, error("CheckBlock() : non-zero nonce in proof-of-stake block"));
2272         }
2273
2274         // Coinbase output should be empty if proof-of-stake block
2275         if (vtx[0].vout.size() != 1 || !vtx[0].vout[0].IsEmpty())
2276             return DoS(100, error("CheckBlock() : coinbase output not empty for proof-of-stake block"));
2277
2278         // Second transaction must be coinstake, the rest must not be
2279         if (vtx.empty() || !vtx[1].IsCoinStake())
2280             return DoS(100, error("CheckBlock() : second tx is not coinstake"));
2281         for (unsigned int i = 2; i < vtx.size(); i++)
2282             if (vtx[i].IsCoinStake())
2283                 return DoS(100, error("CheckBlock() : more than one coinstake"));
2284
2285         // Check coinstake timestamp
2286         if (GetBlockTime() != (int64)vtx[1].nTime)
2287             return DoS(50, error("CheckBlock() : coinstake timestamp violation nTimeBlock=%"PRI64d" nTimeTx=%u", GetBlockTime(), vtx[1].nTime));
2288
2289         // NovaCoin: check proof-of-stake block signature
2290         if (fCheckSig && !CheckBlockSignature(true))
2291             return DoS(100, error("CheckBlock() : bad proof-of-stake block signature"));
2292     }
2293     else
2294     {
2295         // Should we check proof-of-work block signature or not?
2296         //
2297         // * Always skip on TestNet
2298         // * Perform checking for the first 9689 blocks
2299         // * Perform checking since last checkpoint until 20 Sep 2013 (will be removed after)
2300
2301         if(!fTestNet && fCheckSig)
2302         {
2303             bool checkEntropySig = (GetBlockTime() < ENTROPY_SWITCH_TIME);
2304
2305             // NovaCoin: check proof-of-work block signature
2306             if (checkEntropySig && !CheckBlockSignature(false))
2307                 return DoS(100, error("CheckBlock() : bad proof-of-work block signature"));
2308         }
2309     }
2310
2311     // Check transactions
2312     BOOST_FOREACH(const CTransaction& tx, vtx)
2313     {
2314         if (!tx.CheckTransaction())
2315             return DoS(tx.nDoS, error("CheckBlock() : CheckTransaction failed"));
2316     }
2317
2318     // Check for duplicate txids. This is caught by ConnectInputs(),
2319     // but catching it earlier avoids a potential DoS attack:
2320     set<uint256> uniqueTx;
2321     BOOST_FOREACH(const CTransaction& tx, vtx)
2322     {
2323         uniqueTx.insert(tx.GetHash());
2324     }
2325     if (uniqueTx.size() != vtx.size())
2326         return DoS(100, error("CheckBlock() : duplicate transaction"));
2327
2328     unsigned int nSigOps = 0;
2329     BOOST_FOREACH(const CTransaction& tx, vtx)
2330     {
2331         nSigOps += tx.GetLegacySigOpCount();
2332     }
2333     if (nSigOps > MAX_BLOCK_SIGOPS)
2334         return DoS(100, error("CheckBlock() : out-of-bounds SigOpCount"));
2335
2336     // Check merkle root
2337     if (fCheckMerkleRoot && hashMerkleRoot != BuildMerkleTree())
2338         return DoS(100, error("CheckBlock() : hashMerkleRoot mismatch"));
2339
2340
2341     return true;
2342 }
2343
2344 bool CBlock::AcceptBlock()
2345 {
2346     // Check for duplicate
2347     uint256 hash = GetHash();
2348     if (mapBlockIndex.count(hash))
2349         return error("AcceptBlock() : block already in mapBlockIndex");
2350
2351     // Get prev block index
2352     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashPrevBlock);
2353     if (mi == mapBlockIndex.end())
2354         return DoS(10, error("AcceptBlock() : prev block not found"));
2355     CBlockIndex* pindexPrev = (*mi).second;
2356     int nHeight = pindexPrev->nHeight+1;
2357
2358     // Check proof-of-work or proof-of-stake
2359     if (nBits != GetNextTargetRequired(pindexPrev, IsProofOfStake()))
2360         return DoS(100, error("AcceptBlock() : incorrect %s", IsProofOfWork() ? "proof-of-work" : "proof-of-stake"));
2361
2362     // Check timestamp against prev
2363     if (GetBlockTime() <= pindexPrev->GetMedianTimePast() || FutureDrift(GetBlockTime()) < pindexPrev->GetBlockTime())
2364         return error("AcceptBlock() : block's timestamp is too early");
2365
2366     // Check that all transactions are finalized
2367     BOOST_FOREACH(const CTransaction& tx, vtx)
2368         if (!tx.IsFinal(nHeight, GetBlockTime()))
2369             return DoS(10, error("AcceptBlock() : contains a non-final transaction"));
2370
2371     // Check that the block chain matches the known block chain up to a checkpoint
2372     if (!Checkpoints::CheckHardened(nHeight, hash))
2373         return DoS(100, error("AcceptBlock() : rejected by hardened checkpoint lock-in at %d", nHeight));
2374
2375     bool cpSatisfies = Checkpoints::CheckSync(hash, pindexPrev);
2376
2377     // Check that the block satisfies synchronized checkpoint
2378     if (CheckpointsMode == Checkpoints::STRICT && !cpSatisfies)
2379         return error("AcceptBlock() : rejected by synchronized checkpoint");
2380
2381     if (CheckpointsMode == Checkpoints::ADVISORY && !cpSatisfies)
2382         strMiscWarning = _("WARNING: syncronized checkpoint violation detected, but skipped!");
2383
2384     // Enforce rule that the coinbase starts with serialized block height
2385     CScript expect = CScript() << nHeight;
2386     if (vtx[0].vin[0].scriptSig.size() < expect.size() ||
2387         !std::equal(expect.begin(), expect.end(), vtx[0].vin[0].scriptSig.begin()))
2388         return DoS(100, error("AcceptBlock() : block height mismatch in coinbase"));
2389
2390     // Write block to history file
2391     if (!CheckDiskSpace(::GetSerializeSize(*this, SER_DISK, CLIENT_VERSION)))
2392         return error("AcceptBlock() : out of disk space");
2393     unsigned int nFile = -1;
2394     unsigned int nBlockPos = 0;
2395     if (!WriteToDisk(nFile, nBlockPos))
2396         return error("AcceptBlock() : WriteToDisk failed");
2397     if (!AddToBlockIndex(nFile, nBlockPos))
2398         return error("AcceptBlock() : AddToBlockIndex failed");
2399
2400     // Relay inventory, but don't relay old inventory during initial block download
2401     int nBlockEstimate = Checkpoints::GetTotalBlocksEstimate();
2402     if (hashBestChain == hash)
2403     {
2404         LOCK(cs_vNodes);
2405         BOOST_FOREACH(CNode* pnode, vNodes)
2406             if (nBestHeight > (pnode->nStartingHeight != -1 ? pnode->nStartingHeight - 2000 : nBlockEstimate))
2407                 pnode->PushInventory(CInv(MSG_BLOCK, hash));
2408     }
2409
2410     // ppcoin: check pending sync-checkpoint
2411     Checkpoints::AcceptPendingSyncCheckpoint();
2412
2413     return true;
2414 }
2415
2416 uint256 CBlockIndex::GetBlockTrust() const
2417 {
2418     CBigNum bnTarget;
2419     bnTarget.SetCompact(nBits);
2420
2421     if (bnTarget <= 0)
2422         return 0;
2423
2424     /* Old protocol */
2425     if (!fTestNet && GetBlockTime() < CHAINCHECKS_SWITCH_TIME)
2426         return (IsProofOfStake()? ((CBigNum(1)<<256) / (bnTarget+1)).getuint256() : 1);
2427
2428     /* New protocol */
2429
2430     // Calculate work amount for block
2431     uint256 nPoWTrust = (CBigNum(nPoWBase) / (bnTarget+1)).getuint256();
2432
2433     // Set nPowTrust to 1 if we are checking PoS block or PoW difficulty is too low
2434     nPoWTrust = (IsProofOfStake() || nPoWTrust < 1) ? 1 : nPoWTrust;
2435
2436     // Return nPoWTrust for the first 12 blocks
2437     if (pprev == NULL || pprev->nHeight < 12)
2438         return nPoWTrust;
2439
2440     const CBlockIndex* currentIndex = pprev;
2441
2442     if(IsProofOfStake())
2443     {
2444         CBigNum bnNewTrust = (CBigNum(1)<<256) / (bnTarget+1);
2445
2446         // Return 1/3 of score if parent block is not the PoW block
2447         if (!pprev->IsProofOfWork())
2448             return (bnNewTrust / 3).getuint256();
2449
2450         int nPoWCount = 0;
2451
2452         // Check last 12 blocks type
2453         while (pprev->nHeight - currentIndex->nHeight < 12)
2454         {
2455             if (currentIndex->IsProofOfWork())
2456                 nPoWCount++;
2457             currentIndex = currentIndex->pprev;
2458         }
2459
2460         // Return 1/3 of score if less than 3 PoW blocks found
2461         if (nPoWCount < 3)
2462             return (bnNewTrust / 3).getuint256();
2463
2464         return bnNewTrust.getuint256();
2465     }
2466     else
2467     {
2468         CBigNum bnLastBlockTrust = CBigNum(pprev->nChainTrust - pprev->pprev->nChainTrust);
2469
2470         // Return nPoWTrust + 2/3 of previous block score if two parent blocks are not PoS blocks
2471         if (!(pprev->IsProofOfStake() && pprev->pprev->IsProofOfStake()))
2472             return nPoWTrust + (2 * bnLastBlockTrust / 3).getuint256();
2473
2474         int nPoSCount = 0;
2475
2476         // Check last 12 blocks type
2477         while (pprev->nHeight - currentIndex->nHeight < 12)
2478         {
2479             if (currentIndex->IsProofOfStake())
2480                 nPoSCount++;
2481             currentIndex = currentIndex->pprev;
2482         }
2483
2484         // Return nPoWTrust + 2/3 of previous block score if less than 7 PoS blocks found
2485         if (nPoSCount < 7)
2486             return nPoWTrust + (2 * bnLastBlockTrust / 3).getuint256();
2487
2488         bnTarget.SetCompact(pprev->nBits);
2489
2490         if (bnTarget <= 0)
2491             return 0;
2492
2493         CBigNum bnNewTrust = (CBigNum(1)<<256) / (bnTarget+1);
2494
2495         // Return nPoWTrust + full trust score for previous block nBits
2496         return nPoWTrust + bnNewTrust.getuint256();
2497     }
2498 }
2499
2500 bool CBlockIndex::IsSuperMajority(int minVersion, const CBlockIndex* pstart, unsigned int nRequired, unsigned int nToCheck)
2501 {
2502     unsigned int nFound = 0;
2503     for (unsigned int i = 0; i < nToCheck && nFound < nRequired && pstart != NULL; i++)
2504     {
2505         if (pstart->nVersion >= minVersion)
2506             ++nFound;
2507         pstart = pstart->pprev;
2508     }
2509     return (nFound >= nRequired);
2510 }
2511
2512 bool ProcessBlock(CNode* pfrom, CBlock* pblock)
2513 {
2514     // Check for duplicate
2515     uint256 hash = pblock->GetHash();
2516     if (mapBlockIndex.count(hash))
2517         return error("ProcessBlock() : already have block %d %s", mapBlockIndex[hash]->nHeight, hash.ToString().substr(0,20).c_str());
2518     if (mapOrphanBlocks.count(hash))
2519         return error("ProcessBlock() : already have block (orphan) %s", hash.ToString().substr(0,20).c_str());
2520
2521     // ppcoin: check proof-of-stake
2522     // Limited duplicity on stake: prevents block flood attack
2523     // Duplicate stake allowed only when there is orphan child block
2524     if (pblock->IsProofOfStake() && setStakeSeen.count(pblock->GetProofOfStake()) && !mapOrphanBlocksByPrev.count(hash) && !Checkpoints::WantedByPendingSyncCheckpoint(hash))
2525         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());
2526
2527     // Preliminary checks
2528     if (!pblock->CheckBlock())
2529         return error("ProcessBlock() : CheckBlock FAILED");
2530
2531     // ppcoin: verify hash target and signature of coinstake tx
2532     if (pblock->IsProofOfStake())
2533     {
2534         uint256 hashProofOfStake = 0, targetProofOfStake = 0;
2535         if (!CheckProofOfStake(pblock->vtx[1], pblock->nBits, hashProofOfStake, targetProofOfStake))
2536         {
2537             printf("WARNING: ProcessBlock(): check proof-of-stake failed for block %s\n", hash.ToString().c_str());
2538             return false; // do not error here as we expect this during initial block download
2539         }
2540         if (!mapProofOfStake.count(hash)) // add to mapProofOfStake
2541             mapProofOfStake.insert(make_pair(hash, hashProofOfStake));
2542     }
2543
2544     CBlockIndex* pcheckpoint = Checkpoints::GetLastSyncCheckpoint();
2545     if (pcheckpoint && pblock->hashPrevBlock != hashBestChain && !Checkpoints::WantedByPendingSyncCheckpoint(hash))
2546     {
2547         // Extra checks to prevent "fill up memory by spamming with bogus blocks"
2548         int64 deltaTime = pblock->GetBlockTime() - pcheckpoint->nTime;
2549         CBigNum bnNewBlock;
2550         bnNewBlock.SetCompact(pblock->nBits);
2551         CBigNum bnRequired;
2552
2553         if (pblock->IsProofOfStake())
2554             bnRequired.SetCompact(ComputeMinStake(GetLastBlockIndex(pcheckpoint, true)->nBits, deltaTime, pblock->nTime));
2555         else
2556             bnRequired.SetCompact(ComputeMinWork(GetLastBlockIndex(pcheckpoint, false)->nBits, deltaTime));
2557
2558         if (bnNewBlock > bnRequired)
2559         {
2560             if (pfrom)
2561                 pfrom->Misbehaving(100);
2562             return error("ProcessBlock() : block with too little %s", pblock->IsProofOfStake()? "proof-of-stake" : "proof-of-work");
2563         }
2564     }
2565
2566     // ppcoin: ask for pending sync-checkpoint if any
2567     if (!IsInitialBlockDownload())
2568         Checkpoints::AskForPendingSyncCheckpoint(pfrom);
2569
2570     // If don't already have its previous block, shunt it off to holding area until we get it
2571     if (!mapBlockIndex.count(pblock->hashPrevBlock))
2572     {
2573         printf("ProcessBlock: ORPHAN BLOCK, prev=%s\n", pblock->hashPrevBlock.ToString().substr(0,20).c_str());
2574         CBlock* pblock2 = new CBlock(*pblock);
2575         // ppcoin: check proof-of-stake
2576         if (pblock2->IsProofOfStake())
2577         {
2578             // Limited duplicity on stake: prevents block flood attack
2579             // Duplicate stake allowed only when there is orphan child block
2580             if (setStakeSeenOrphan.count(pblock2->GetProofOfStake()) && !mapOrphanBlocksByPrev.count(hash) && !Checkpoints::WantedByPendingSyncCheckpoint(hash))
2581                 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());
2582             else
2583                 setStakeSeenOrphan.insert(pblock2->GetProofOfStake());
2584         }
2585         mapOrphanBlocks.insert(make_pair(hash, pblock2));
2586         mapOrphanBlocksByPrev.insert(make_pair(pblock2->hashPrevBlock, pblock2));
2587
2588         // Ask this guy to fill in what we're missing
2589         if (pfrom)
2590         {
2591             pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(pblock2));
2592             // ppcoin: getblocks may not obtain the ancestor block rejected
2593             // earlier by duplicate-stake check so we ask for it again directly
2594             if (!IsInitialBlockDownload())
2595                 pfrom->AskFor(CInv(MSG_BLOCK, WantedByOrphan(pblock2)));
2596         }
2597         return true;
2598     }
2599
2600     // Store to disk
2601     if (!pblock->AcceptBlock())
2602         return error("ProcessBlock() : AcceptBlock FAILED");
2603
2604     // Recursively process any orphan blocks that depended on this one
2605     vector<uint256> vWorkQueue;
2606     vWorkQueue.push_back(hash);
2607     for (unsigned int i = 0; i < vWorkQueue.size(); i++)
2608     {
2609         uint256 hashPrev = vWorkQueue[i];
2610         for (multimap<uint256, CBlock*>::iterator mi = mapOrphanBlocksByPrev.lower_bound(hashPrev);
2611              mi != mapOrphanBlocksByPrev.upper_bound(hashPrev);
2612              ++mi)
2613         {
2614             CBlock* pblockOrphan = (*mi).second;
2615             if (pblockOrphan->AcceptBlock())
2616                 vWorkQueue.push_back(pblockOrphan->GetHash());
2617             mapOrphanBlocks.erase(pblockOrphan->GetHash());
2618             setStakeSeenOrphan.erase(pblockOrphan->GetProofOfStake());
2619             delete pblockOrphan;
2620         }
2621         mapOrphanBlocksByPrev.erase(hashPrev);
2622     }
2623
2624     printf("ProcessBlock: ACCEPTED\n");
2625
2626     // ppcoin: if responsible for sync-checkpoint send it
2627     if (pfrom && !CSyncCheckpoint::strMasterPrivKey.empty())
2628         Checkpoints::SendSyncCheckpoint(Checkpoints::AutoSelectSyncCheckpoint());
2629
2630     return true;
2631 }
2632
2633 // novacoin: attempt to generate suitable proof-of-stake
2634 bool CBlock::SignBlock(CWallet& wallet)
2635 {
2636     // if we are trying to sign
2637     //    something except proof-of-stake block template
2638     if (!vtx[0].vout[0].IsEmpty())
2639         return false;
2640
2641     // if we are trying to sign
2642     //    a complete proof-of-stake block
2643     if (IsProofOfStake())
2644         return true;
2645
2646     static int64 nLastCoinStakeSearchTime = GetAdjustedTime(); // startup timestamp
2647
2648     CKey key;
2649     CTransaction txCoinStake;
2650     int64 nSearchTime = txCoinStake.nTime; // search to current time
2651
2652     if (nSearchTime > nLastCoinStakeSearchTime)
2653     {
2654         if (wallet.CreateCoinStake(wallet, nBits, nSearchTime-nLastCoinStakeSearchTime, txCoinStake, key))
2655         {
2656             if (txCoinStake.nTime >= max(pindexBest->GetMedianTimePast()+1, PastDrift(pindexBest->GetBlockTime())))
2657             {
2658                 // make sure coinstake would meet timestamp protocol
2659                 //    as it would be the same as the block timestamp
2660                 vtx[0].nTime = nTime = txCoinStake.nTime;
2661                 nTime = max(pindexBest->GetMedianTimePast()+1, GetMaxTransactionTime());
2662                 nTime = max(GetBlockTime(), PastDrift(pindexBest->GetBlockTime()));
2663
2664                 // we have to make sure that we have no future timestamps in
2665                 //    our transactions set
2666                 for (vector<CTransaction>::iterator it = vtx.begin(); it != vtx.end();)
2667                     if (it->nTime > nTime) { it = vtx.erase(it); } else { ++it; }
2668
2669                 vtx.insert(vtx.begin() + 1, txCoinStake);
2670                 hashMerkleRoot = BuildMerkleTree();
2671
2672                 // append a signature to our block
2673                 return key.Sign(GetHash(), vchBlockSig);
2674             }
2675         }
2676         nLastCoinStakeSearchInterval = nSearchTime - nLastCoinStakeSearchTime;
2677         nLastCoinStakeSearchTime = nSearchTime;
2678     }
2679
2680     return false;
2681 }
2682
2683 // ppcoin: check block signature
2684 bool CBlock::CheckBlockSignature(bool fProofOfStake) const
2685 {
2686     if (GetHash() == (!fTestNet ? hashGenesisBlock : hashGenesisBlockTestNet))
2687         return vchBlockSig.empty();
2688
2689     vector<valtype> vSolutions;
2690     txnouttype whichType;
2691
2692     if(fProofOfStake)
2693     {
2694         const CTxOut& txout = vtx[1].vout[1];
2695
2696         if (!Solver(txout.scriptPubKey, whichType, vSolutions))
2697             return false;
2698         if (whichType == TX_PUBKEY)
2699         {
2700             valtype& vchPubKey = vSolutions[0];
2701             CKey key;
2702             if (!key.SetPubKey(vchPubKey))
2703                 return false;
2704             if (vchBlockSig.empty())
2705                 return false;
2706             return key.Verify(GetHash(), vchBlockSig);
2707         }
2708     }
2709     else
2710     {
2711         for(unsigned int i = 0; i < vtx[0].vout.size(); i++)
2712         {
2713             const CTxOut& txout = vtx[0].vout[i];
2714
2715             if (!Solver(txout.scriptPubKey, whichType, vSolutions))
2716                 return false;
2717
2718             if (whichType == TX_PUBKEY)
2719             {
2720                 // Verify
2721                 valtype& vchPubKey = vSolutions[0];
2722                 CKey key;
2723                 if (!key.SetPubKey(vchPubKey))
2724                     continue;
2725                 if (vchBlockSig.empty())
2726                     continue;
2727                 if(!key.Verify(GetHash(), vchBlockSig))
2728                     continue;
2729
2730                 return true;
2731             }
2732         }
2733     }
2734     return false;
2735 }
2736
2737 bool CheckDiskSpace(uint64 nAdditionalBytes)
2738 {
2739     uint64 nFreeBytesAvailable = filesystem::space(GetDataDir()).available;
2740
2741     // Check for nMinDiskSpace bytes (currently 50MB)
2742     if (nFreeBytesAvailable < nMinDiskSpace + nAdditionalBytes)
2743     {
2744         fShutdown = true;
2745         string strMessage = _("Warning: Disk space is low!");
2746         strMiscWarning = strMessage;
2747         printf("*** %s\n", strMessage.c_str());
2748         uiInterface.ThreadSafeMessageBox(strMessage, "NovaCoin", CClientUIInterface::OK | CClientUIInterface::ICON_EXCLAMATION | CClientUIInterface::MODAL);
2749         StartShutdown();
2750         return false;
2751     }
2752     return true;
2753 }
2754
2755 static filesystem::path BlockFilePath(unsigned int nFile)
2756 {
2757     string strBlockFn = strprintf("blk%04u.dat", nFile);
2758     return GetDataDir() / strBlockFn;
2759 }
2760
2761 FILE* OpenBlockFile(unsigned int nFile, unsigned int nBlockPos, const char* pszMode)
2762 {
2763     if ((nFile < 1) || (nFile == (unsigned int) -1))
2764         return NULL;
2765     FILE* file = fopen(BlockFilePath(nFile).string().c_str(), pszMode);
2766     if (!file)
2767         return NULL;
2768     if (nBlockPos != 0 && !strchr(pszMode, 'a') && !strchr(pszMode, 'w'))
2769     {
2770         if (fseek(file, nBlockPos, SEEK_SET) != 0)
2771         {
2772             fclose(file);
2773             return NULL;
2774         }
2775     }
2776     return file;
2777 }
2778
2779 static unsigned int nCurrentBlockFile = 1;
2780
2781 FILE* AppendBlockFile(unsigned int& nFileRet)
2782 {
2783     nFileRet = 0;
2784     while (true)
2785     {
2786         FILE* file = OpenBlockFile(nCurrentBlockFile, 0, "ab");
2787         if (!file)
2788             return NULL;
2789         if (fseek(file, 0, SEEK_END) != 0)
2790             return NULL;
2791         // FAT32 file size max 4GB, fseek and ftell max 2GB, so we must stay under 2GB
2792         if (ftell(file) < (long)(0x7F000000 - MAX_SIZE))
2793         {
2794             nFileRet = nCurrentBlockFile;
2795             return file;
2796         }
2797         fclose(file);
2798         nCurrentBlockFile++;
2799     }
2800 }
2801
2802 bool LoadBlockIndex(bool fAllowNew)
2803 {
2804     CBigNum bnTrustedModulus;
2805
2806     if (fTestNet)
2807     {
2808         pchMessageStart[0] = 0xcd;
2809         pchMessageStart[1] = 0xf2;
2810         pchMessageStart[2] = 0xc0;
2811         pchMessageStart[3] = 0xef;
2812
2813         bnTrustedModulus.SetHex("f0d14cf72623dacfe738d0892b599be0f31052239cddd95a3f25101c801dc990453b38c9434efe3f372db39a32c2bb44cbaea72d62c8931fa785b0ec44531308df3e46069be5573e49bb29f4d479bfc3d162f57a5965db03810be7636da265bfced9c01a6b0296c77910ebdc8016f70174f0f18a57b3b971ac43a934c6aedbc5c866764a3622b5b7e3f9832b8b3f133c849dbcc0396588abcd1e41048555746e4823fb8aba5b3d23692c6857fccce733d6bb6ec1d5ea0afafecea14a0f6f798b6b27f77dc989c557795cc39a0940ef6bb29a7fc84135193a55bcfc2f01dd73efad1b69f45a55198bd0e6bef4d338e452f6a420f1ae2b1167b923f76633ab6e55");
2814         bnProofOfWorkLimit = bnProofOfWorkLimitTestNet; // 16 bits PoW target limit for testnet
2815         nStakeMinAge = 2 * 60 * 60; // test net min age is 2 hours
2816         nModifierInterval = 20 * 60; // test modifier interval is 20 minutes
2817         nCoinbaseMaturity = 10; // test maturity is 10 blocks
2818         nStakeTargetSpacing = 5 * 60; // test block spacing is 5 minutes
2819     }
2820     else
2821     {
2822         bnTrustedModulus.SetHex("d01f952e1090a5a72a3eda261083256596ccc192935ae1454c2bafd03b09e6ed11811be9f3a69f5783bbbced8c6a0c56621f42c2d19087416facf2f13cc7ed7159d1c5253119612b8449f0c7f54248e382d30ecab1928dbf075c5425dcaee1a819aa13550e0f3227b8c685b14e0eae094d65d8a610a6f49fff8145259d1187e4c6a472fa5868b2b67f957cb74b787f4311dbc13c97a2ca13acdb876ff506ebecbb904548c267d68868e07a32cd9ed461fbc2f920e9940e7788fed2e4817f274df5839c2196c80abe5c486df39795186d7bc86314ae1e8342f3c884b158b4b05b4302754bf351477d35370bad6639b2195d30006b77bf3dbb28b848fd9ecff5662bf39dde0c974e83af51b0d3d642d43834827b8c3b189065514636b8f2a59c42ba9b4fc4975d4827a5d89617a3873e4b377b4d559ad165748632bd928439cfbc5a8ef49bc2220e0b15fb0aa302367d5e99e379a961c1bc8cf89825da5525e3c8f14d7d8acca2fa9c133a2176ae69874d8b1d38b26b9c694e211018005a97b40848681b9dd38feb2de141626fb82591aad20dc629b2b6421cef1227809551a0e4e943ab99841939877f18f2d9c0addc93cf672e26b02ed94da3e6d329e8ac8f3736eebbf37bb1a21e5aadf04ee8e3b542f876aa88b2adf2608bd86329b7f7a56fd0dc1c40b48188731d11082aea360c62a0840c2db3dad7178fd7e359317ae081");
2823     }
2824
2825     // Set up the Zerocoin Params object
2826     ZCParams = new libzerocoin::Params(bnTrustedModulus);
2827
2828     //
2829     // Load block index
2830     //
2831     CTxDB txdb("cr+");
2832     if (!txdb.LoadBlockIndex())
2833         return false;
2834
2835     //
2836     // Init with genesis block
2837     //
2838     if (mapBlockIndex.empty())
2839     {
2840         if (!fAllowNew)
2841             return false;
2842
2843         // Genesis block
2844
2845         // MainNet:
2846
2847         //CBlock(hash=00000a060336cbb72fe969666d337b87198b1add2abaa59cca226820b32933a4, ver=1, hashPrevBlock=0000000000000000000000000000000000000000000000000000000000000000, hashMerkleRoot=4cb33b3b6a861dcbc685d3e614a9cafb945738d6833f182855679f2fad02057b, nTime=1360105017, nBits=1e0fffff, nNonce=1575379, vtx=1, vchBlockSig=)
2848         //  Coinbase(hash=4cb33b3b6a, nTime=1360105017, ver=1, vin.size=1, vout.size=1, nLockTime=0)
2849         //    CTxIn(COutPoint(0000000000, 4294967295), coinbase 04ffff001d020f274468747470733a2f2f626974636f696e74616c6b2e6f72672f696e6465782e7068703f746f7069633d3133343137392e6d736731353032313936236d736731353032313936)
2850         //    CTxOut(empty)
2851         //  vMerkleTree: 4cb33b3b6a
2852
2853         // TestNet:
2854
2855         //CBlock(hash=0000c763e402f2436da9ed36c7286f62c3f6e5dbafce9ff289bd43d7459327eb, ver=1, hashPrevBlock=0000000000000000000000000000000000000000000000000000000000000000, hashMerkleRoot=4cb33b3b6a861dcbc685d3e614a9cafb945738d6833f182855679f2fad02057b, nTime=1360105017, nBits=1f00ffff, nNonce=46534, vtx=1, vchBlockSig=)
2856         //  Coinbase(hash=4cb33b3b6a, nTime=1360105017, ver=1, vin.size=1, vout.size=1, nLockTime=0)
2857         //    CTxIn(COutPoint(0000000000, 4294967295), coinbase 04ffff001d020f274468747470733a2f2f626974636f696e74616c6b2e6f72672f696e6465782e7068703f746f7069633d3133343137392e6d736731353032313936236d736731353032313936)
2858         //    CTxOut(empty)
2859         //  vMerkleTree: 4cb33b3b6a
2860
2861         const char* pszTimestamp = "https://bitcointalk.org/index.php?topic=134179.msg1502196#msg1502196";
2862         CTransaction txNew;
2863         txNew.nTime = 1360105017;
2864         txNew.vin.resize(1);
2865         txNew.vout.resize(1);
2866         txNew.vin[0].scriptSig = CScript() << 486604799 << CBigNum(9999) << vector<unsigned char>((const unsigned char*)pszTimestamp, (const unsigned char*)pszTimestamp + strlen(pszTimestamp));
2867         txNew.vout[0].SetEmpty();
2868         CBlock block;
2869         block.vtx.push_back(txNew);
2870         block.hashPrevBlock = 0;
2871         block.hashMerkleRoot = block.BuildMerkleTree();
2872         block.nVersion = 1;
2873         block.nTime    = 1360105017;
2874         block.nBits    = bnProofOfWorkLimit.GetCompact();
2875         block.nNonce   = !fTestNet ? 1575379 : 46534;
2876
2877         //// debug print
2878         assert(block.hashMerkleRoot == uint256("0x4cb33b3b6a861dcbc685d3e614a9cafb945738d6833f182855679f2fad02057b"));
2879         block.print();
2880         assert(block.GetHash() == (!fTestNet ? hashGenesisBlock : hashGenesisBlockTestNet));
2881         assert(block.CheckBlock());
2882
2883         // Start new block file
2884         unsigned int nFile;
2885         unsigned int nBlockPos;
2886         if (!block.WriteToDisk(nFile, nBlockPos))
2887             return error("LoadBlockIndex() : writing genesis block to disk failed");
2888         if (!block.AddToBlockIndex(nFile, nBlockPos))
2889             return error("LoadBlockIndex() : genesis block not accepted");
2890
2891         // initialize synchronized checkpoint
2892         if (!Checkpoints::WriteSyncCheckpoint((!fTestNet ? hashGenesisBlock : hashGenesisBlockTestNet)))
2893             return error("LoadBlockIndex() : failed to init sync checkpoint");
2894
2895         // upgrade time set to zero if txdb initialized
2896         {
2897             if (!txdb.WriteModifierUpgradeTime(0))
2898                 return error("LoadBlockIndex() : failed to init upgrade info");
2899             printf(" Upgrade Info: ModifierUpgradeTime txdb initialization\n");
2900         }
2901     }
2902
2903     string strPubKey = "";
2904
2905     // if checkpoint master key changed must reset sync-checkpoint
2906     if (!txdb.ReadCheckpointPubKey(strPubKey) || strPubKey != CSyncCheckpoint::strMasterPubKey)
2907     {
2908         // write checkpoint master key to db
2909         txdb.TxnBegin();
2910         if (!txdb.WriteCheckpointPubKey(CSyncCheckpoint::strMasterPubKey))
2911             return error("LoadBlockIndex() : failed to write new checkpoint master key to db");
2912         if (!txdb.TxnCommit())
2913             return error("LoadBlockIndex() : failed to commit new checkpoint master key to db");
2914         if ((!fTestNet) && !Checkpoints::ResetSyncCheckpoint())
2915             return error("LoadBlockIndex() : failed to reset sync-checkpoint");
2916     }
2917
2918     // upgrade time set to zero if blocktreedb initialized
2919     if (txdb.ReadModifierUpgradeTime(nModifierUpgradeTime))
2920     {
2921         if (nModifierUpgradeTime)
2922             printf(" Upgrade Info: blocktreedb upgrade detected at timestamp %d\n", nModifierUpgradeTime);
2923         else
2924             printf(" Upgrade Info: no blocktreedb upgrade detected.\n");
2925     }
2926     else
2927     {
2928         nModifierUpgradeTime = GetTime();
2929         printf(" Upgrade Info: upgrading blocktreedb at timestamp %u\n", nModifierUpgradeTime);
2930         if (!txdb.WriteModifierUpgradeTime(nModifierUpgradeTime))
2931             return error("LoadBlockIndex() : failed to write upgrade info");
2932     }
2933
2934
2935     return true;
2936 }
2937
2938
2939
2940 void PrintBlockTree()
2941 {
2942     // pre-compute tree structure
2943     map<CBlockIndex*, vector<CBlockIndex*> > mapNext;
2944     for (map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi)
2945     {
2946         CBlockIndex* pindex = (*mi).second;
2947         mapNext[pindex->pprev].push_back(pindex);
2948         // test
2949         //while (rand() % 3 == 0)
2950         //    mapNext[pindex->pprev].push_back(pindex);
2951     }
2952
2953     vector<pair<int, CBlockIndex*> > vStack;
2954     vStack.push_back(make_pair(0, pindexGenesisBlock));
2955
2956     int nPrevCol = 0;
2957     while (!vStack.empty())
2958     {
2959         int nCol = vStack.back().first;
2960         CBlockIndex* pindex = vStack.back().second;
2961         vStack.pop_back();
2962
2963         // print split or gap
2964         if (nCol > nPrevCol)
2965         {
2966             for (int i = 0; i < nCol-1; i++)
2967                 printf("| ");
2968             printf("|\\\n");
2969         }
2970         else if (nCol < nPrevCol)
2971         {
2972             for (int i = 0; i < nCol; i++)
2973                 printf("| ");
2974             printf("|\n");
2975        }
2976         nPrevCol = nCol;
2977
2978         // print columns
2979         for (int i = 0; i < nCol; i++)
2980             printf("| ");
2981
2982         // print item
2983         CBlock block;
2984         block.ReadFromDisk(pindex);
2985         printf("%d (%u,%u) %s  %08x  %s  mint %7s  tx %"PRIszu"",
2986             pindex->nHeight,
2987             pindex->nFile,
2988             pindex->nBlockPos,
2989             block.GetHash().ToString().c_str(),
2990             block.nBits,
2991             DateTimeStrFormat("%x %H:%M:%S", block.GetBlockTime()).c_str(),
2992             FormatMoney(pindex->nMint).c_str(),
2993             block.vtx.size());
2994
2995         PrintWallets(block);
2996
2997         // put the main time-chain first
2998         vector<CBlockIndex*>& vNext = mapNext[pindex];
2999         for (unsigned int i = 0; i < vNext.size(); i++)
3000         {
3001             if (vNext[i]->pnext)
3002             {
3003                 swap(vNext[0], vNext[i]);
3004                 break;
3005             }
3006         }
3007
3008         // iterate children
3009         for (unsigned int i = 0; i < vNext.size(); i++)
3010             vStack.push_back(make_pair(nCol+i, vNext[i]));
3011     }
3012 }
3013
3014 bool LoadExternalBlockFile(FILE* fileIn)
3015 {
3016     int64 nStart = GetTimeMillis();
3017
3018     int nLoaded = 0;
3019     {
3020         LOCK(cs_main);
3021         try {
3022             CAutoFile blkdat(fileIn, SER_DISK, CLIENT_VERSION);
3023             unsigned int nPos = 0;
3024             while (nPos != (unsigned int)-1 && blkdat.good() && !fRequestShutdown)
3025             {
3026                 unsigned char pchData[65536];
3027                 do {
3028                     fseek(blkdat, nPos, SEEK_SET);
3029                     int nRead = fread(pchData, 1, sizeof(pchData), blkdat);
3030                     if (nRead <= 8)
3031                     {
3032                         nPos = (unsigned int)-1;
3033                         break;
3034                     }
3035                     void* nFind = memchr(pchData, pchMessageStart[0], nRead+1-sizeof(pchMessageStart));
3036                     if (nFind)
3037                     {
3038                         if (memcmp(nFind, pchMessageStart, sizeof(pchMessageStart))==0)
3039                         {
3040                             nPos += ((unsigned char*)nFind - pchData) + sizeof(pchMessageStart);
3041                             break;
3042                         }
3043                         nPos += ((unsigned char*)nFind - pchData) + 1;
3044                     }
3045                     else
3046                         nPos += sizeof(pchData) - sizeof(pchMessageStart) + 1;
3047                 } while(!fRequestShutdown);
3048                 if (nPos == (unsigned int)-1)
3049                     break;
3050                 fseek(blkdat, nPos, SEEK_SET);
3051                 unsigned int nSize;
3052                 blkdat >> nSize;
3053                 if (nSize > 0 && nSize <= MAX_BLOCK_SIZE)
3054                 {
3055                     CBlock block;
3056                     blkdat >> block;
3057                     if (ProcessBlock(NULL,&block))
3058                     {
3059                         nLoaded++;
3060                         nPos += 4 + nSize;
3061                     }
3062                 }
3063             }
3064         }
3065         catch (std::exception &e) {
3066             printf("%s() : Deserialize or I/O error caught during load\n",
3067                    __PRETTY_FUNCTION__);
3068         }
3069     }
3070     printf("Loaded %i blocks from external file in %"PRI64d"ms\n", nLoaded, GetTimeMillis() - nStart);
3071     return nLoaded > 0;
3072 }
3073
3074 //////////////////////////////////////////////////////////////////////////////
3075 //
3076 // CAlert
3077 //
3078
3079 extern map<uint256, CAlert> mapAlerts;
3080 extern CCriticalSection cs_mapAlerts;
3081
3082 string GetWarnings(string strFor)
3083 {
3084     int nPriority = 0;
3085     string strStatusBar;
3086     string strRPC;
3087
3088     if (GetBoolArg("-testsafemode"))
3089         strRPC = "test";
3090
3091     // Misc warnings like out of disk space and clock is wrong
3092     if (strMiscWarning != "")
3093     {
3094         nPriority = 1000;
3095         strStatusBar = strMiscWarning;
3096     }
3097
3098     // if detected unmet upgrade requirement enter safe mode
3099     // Note: Modifier upgrade requires blockchain redownload if past protocol switch
3100     if (IsFixedModifierInterval(nModifierUpgradeTime + 60*60*24)) // 1 day margin
3101     {
3102         nPriority = 5000;
3103         strStatusBar = strRPC = "WARNING: Blockchain redownload required approaching or past v.0.4.4.6u4 upgrade deadline.";
3104     }
3105
3106     // if detected invalid checkpoint enter safe mode
3107     if (Checkpoints::hashInvalidCheckpoint != 0)
3108     {
3109         nPriority = 3000;
3110         strStatusBar = strRPC = _("WARNING: Invalid checkpoint found! Displayed transactions may not be correct! You may need to upgrade, or notify developers.");
3111     }
3112
3113     // Alerts
3114     {
3115         LOCK(cs_mapAlerts);
3116         BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
3117         {
3118             const CAlert& alert = item.second;
3119             if (alert.AppliesToMe() && alert.nPriority > nPriority)
3120             {
3121                 nPriority = alert.nPriority;
3122                 strStatusBar = alert.strStatusBar;
3123                 if (nPriority > 1000)
3124                     strRPC = strStatusBar;
3125             }
3126         }
3127     }
3128
3129     if (strFor == "statusbar")
3130         return strStatusBar;
3131     else if (strFor == "rpc")
3132         return strRPC;
3133     assert(!"GetWarnings() : invalid parameter");
3134     return "error";
3135 }
3136
3137
3138
3139
3140
3141
3142
3143
3144 //////////////////////////////////////////////////////////////////////////////
3145 //
3146 // Messages
3147 //
3148
3149
3150 bool static AlreadyHave(CTxDB& txdb, const CInv& inv)
3151 {
3152     switch (inv.type)
3153     {
3154     case MSG_TX:
3155         {
3156         bool txInMap = false;
3157             {
3158             LOCK(mempool.cs);
3159             txInMap = (mempool.exists(inv.hash));
3160             }
3161         return txInMap ||
3162                mapOrphanTransactions.count(inv.hash) ||
3163                txdb.ContainsTx(inv.hash);
3164         }
3165
3166     case MSG_BLOCK:
3167         return mapBlockIndex.count(inv.hash) ||
3168                mapOrphanBlocks.count(inv.hash);
3169     }
3170     // Don't know what it is, just say we already got one
3171     return true;
3172 }
3173
3174
3175
3176
3177 // The message start string is designed to be unlikely to occur in normal data.
3178 // The characters are rarely used upper ASCII, not valid as UTF-8, and produce
3179 // a large 4-byte int at any alignment.
3180 unsigned char pchMessageStart[4] = { 0xe4, 0xe8, 0xe9, 0xe5 };
3181
3182 bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
3183 {
3184     static map<CService, CPubKey> mapReuseKey;
3185     RandAddSeedPerfmon();
3186     if (fDebug)
3187         printf("received: %s (%"PRIszu" bytes)\n", strCommand.c_str(), vRecv.size());
3188     if (mapArgs.count("-dropmessagestest") && GetRand(atoi(mapArgs["-dropmessagestest"])) == 0)
3189     {
3190         printf("dropmessagestest DROPPING RECV MESSAGE\n");
3191         return true;
3192     }
3193
3194     if (strCommand == "version")
3195     {
3196         // Each connection can only send one version message
3197         if (pfrom->nVersion != 0)
3198         {
3199             pfrom->Misbehaving(1);
3200             return false;
3201         }
3202
3203         int64 nTime;
3204         CAddress addrMe;
3205         CAddress addrFrom;
3206         uint64 nNonce = 1;
3207         vRecv >> pfrom->nVersion >> pfrom->nServices >> nTime >> addrMe;
3208         if (pfrom->nVersion < MIN_PROTO_VERSION)
3209         {
3210             // Since February 20, 2012, the protocol is initiated at version 209,
3211             // and earlier versions are no longer supported
3212             printf("partner %s using obsolete version %i; disconnecting\n", pfrom->addr.ToString().c_str(), pfrom->nVersion);
3213             pfrom->fDisconnect = true;
3214             return false;
3215         }
3216
3217         if (pfrom->nVersion == 10300)
3218             pfrom->nVersion = 300;
3219         if (!vRecv.empty())
3220             vRecv >> addrFrom >> nNonce;
3221         if (!vRecv.empty())
3222             vRecv >> pfrom->strSubVer;
3223         if (!vRecv.empty())
3224             vRecv >> pfrom->nStartingHeight;
3225
3226         if (pfrom->fInbound && addrMe.IsRoutable())
3227         {
3228             pfrom->addrLocal = addrMe;
3229             SeenLocal(addrMe);
3230         }
3231
3232         // Disconnect if we connected to ourself
3233         if (nNonce == nLocalHostNonce && nNonce > 1)
3234         {
3235             printf("connected to self at %s, disconnecting\n", pfrom->addr.ToString().c_str());
3236             pfrom->fDisconnect = true;
3237             return true;
3238         }
3239
3240         if (pfrom->nVersion < 60010)
3241         {
3242             printf("partner %s using a buggy client %d, disconnecting\n", pfrom->addr.ToString().c_str(), pfrom->nVersion);
3243             pfrom->fDisconnect = true;
3244             return true;
3245         }
3246
3247         // record my external IP reported by peer
3248         if (addrFrom.IsRoutable() && addrMe.IsRoutable())
3249             addrSeenByPeer = addrMe;
3250
3251         // Be shy and don't send version until we hear
3252         if (pfrom->fInbound)
3253             pfrom->PushVersion();
3254
3255         pfrom->fClient = !(pfrom->nServices & NODE_NETWORK);
3256
3257         AddTimeData(pfrom->addr, nTime);
3258
3259         // Change version
3260         pfrom->PushMessage("verack");
3261         pfrom->vSend.SetVersion(min(pfrom->nVersion, PROTOCOL_VERSION));
3262
3263         if (!pfrom->fInbound)
3264         {
3265             // Advertise our address
3266             if (!fNoListen && !IsInitialBlockDownload())
3267             {
3268                 CAddress addr = GetLocalAddress(&pfrom->addr);
3269                 if (addr.IsRoutable())
3270                     pfrom->PushAddress(addr);
3271             }
3272
3273             // Get recent addresses
3274             if (pfrom->fOneShot || pfrom->nVersion >= CADDR_TIME_VERSION || addrman.size() < 1000)
3275             {
3276                 pfrom->PushMessage("getaddr");
3277                 pfrom->fGetAddr = true;
3278             }
3279             addrman.Good(pfrom->addr);
3280         } else {
3281             if (((CNetAddr)pfrom->addr) == (CNetAddr)addrFrom)
3282             {
3283                 addrman.Add(addrFrom, addrFrom);
3284                 addrman.Good(addrFrom);
3285             }
3286         }
3287
3288         // Ask the first connected node for block updates
3289         static int nAskedForBlocks = 0;
3290         if (!pfrom->fClient && !pfrom->fOneShot &&
3291             (pfrom->nStartingHeight > (nBestHeight - 144)) &&
3292             (pfrom->nVersion < NOBLKS_VERSION_START ||
3293              pfrom->nVersion >= NOBLKS_VERSION_END) &&
3294              (nAskedForBlocks < 1 || vNodes.size() <= 1))
3295         {
3296             nAskedForBlocks++;
3297             pfrom->PushGetBlocks(pindexBest, uint256(0));
3298         }
3299
3300         // Relay alerts
3301         {
3302             LOCK(cs_mapAlerts);
3303             BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
3304                 item.second.RelayTo(pfrom);
3305         }
3306
3307         // Relay sync-checkpoint
3308         {
3309             LOCK(Checkpoints::cs_hashSyncCheckpoint);
3310             if (!Checkpoints::checkpointMessage.IsNull())
3311                 Checkpoints::checkpointMessage.RelayTo(pfrom);
3312         }
3313
3314         pfrom->fSuccessfullyConnected = true;
3315
3316         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());
3317
3318         cPeerBlockCounts.input(pfrom->nStartingHeight);
3319
3320         // ppcoin: ask for pending sync-checkpoint if any
3321         if (!IsInitialBlockDownload())
3322             Checkpoints::AskForPendingSyncCheckpoint(pfrom);
3323     }
3324
3325
3326     else if (pfrom->nVersion == 0)
3327     {
3328         // Must have a version message before anything else
3329         pfrom->Misbehaving(1);
3330         return false;
3331     }
3332
3333
3334     else if (strCommand == "verack")
3335     {
3336         pfrom->vRecv.SetVersion(min(pfrom->nVersion, PROTOCOL_VERSION));
3337     }
3338
3339
3340     else if (strCommand == "addr")
3341     {
3342         vector<CAddress> vAddr;
3343         vRecv >> vAddr;
3344
3345         // Don't want addr from older versions unless seeding
3346         if (pfrom->nVersion < CADDR_TIME_VERSION && addrman.size() > 1000)
3347             return true;
3348         if (vAddr.size() > 1000)
3349         {
3350             pfrom->Misbehaving(20);
3351             return error("message addr size() = %"PRIszu"", vAddr.size());
3352         }
3353
3354         // Store the new addresses
3355         vector<CAddress> vAddrOk;
3356         int64 nNow = GetAdjustedTime();
3357         int64 nSince = nNow - 10 * 60;
3358         BOOST_FOREACH(CAddress& addr, vAddr)
3359         {
3360             if (fShutdown)
3361                 return true;
3362             if (addr.nTime <= 100000000 || addr.nTime > nNow + 10 * 60)
3363                 addr.nTime = nNow - 5 * 24 * 60 * 60;
3364             pfrom->AddAddressKnown(addr);
3365             bool fReachable = IsReachable(addr);
3366             if (addr.nTime > nSince && !pfrom->fGetAddr && vAddr.size() <= 10 && addr.IsRoutable())
3367             {
3368                 // Relay to a limited number of other nodes
3369                 {
3370                     LOCK(cs_vNodes);
3371                     // Use deterministic randomness to send to the same nodes for 24 hours
3372                     // at a time so the setAddrKnowns of the chosen nodes prevent repeats
3373                     static uint256 hashSalt;
3374                     if (hashSalt == 0)
3375                         hashSalt = GetRandHash();
3376                     uint64 hashAddr = addr.GetHash();
3377                     uint256 hashRand = hashSalt ^ (hashAddr<<32) ^ ((GetTime()+hashAddr)/(24*60*60));
3378                     hashRand = Hash(BEGIN(hashRand), END(hashRand));
3379                     multimap<uint256, CNode*> mapMix;
3380                     BOOST_FOREACH(CNode* pnode, vNodes)
3381                     {
3382                         if (pnode->nVersion < CADDR_TIME_VERSION)
3383                             continue;
3384                         unsigned int nPointer;
3385                         memcpy(&nPointer, &pnode, sizeof(nPointer));
3386                         uint256 hashKey = hashRand ^ nPointer;
3387                         hashKey = Hash(BEGIN(hashKey), END(hashKey));
3388                         mapMix.insert(make_pair(hashKey, pnode));
3389                     }
3390                     int nRelayNodes = fReachable ? 2 : 1; // limited relaying of addresses outside our network(s)
3391                     for (multimap<uint256, CNode*>::iterator mi = mapMix.begin(); mi != mapMix.end() && nRelayNodes-- > 0; ++mi)
3392                         ((*mi).second)->PushAddress(addr);
3393                 }
3394             }
3395             // Do not store addresses outside our network
3396             if (fReachable)
3397                 vAddrOk.push_back(addr);
3398         }
3399         addrman.Add(vAddrOk, pfrom->addr, 2 * 60 * 60);
3400         if (vAddr.size() < 1000)
3401             pfrom->fGetAddr = false;
3402         if (pfrom->fOneShot)
3403             pfrom->fDisconnect = true;
3404     }
3405
3406     else if (strCommand == "inv")
3407     {
3408         vector<CInv> vInv;
3409         vRecv >> vInv;
3410         if (vInv.size() > MAX_INV_SZ)
3411         {
3412             pfrom->Misbehaving(20);
3413             return error("message inv size() = %"PRIszu"", vInv.size());
3414         }
3415
3416         // find last block in inv vector
3417         unsigned int nLastBlock = (unsigned int)(-1);
3418         for (unsigned int nInv = 0; nInv < vInv.size(); nInv++) {
3419             if (vInv[vInv.size() - 1 - nInv].type == MSG_BLOCK) {
3420                 nLastBlock = vInv.size() - 1 - nInv;
3421                 break;
3422             }
3423         }
3424         CTxDB txdb("r");
3425         for (unsigned int nInv = 0; nInv < vInv.size(); nInv++)
3426         {
3427             const CInv &inv = vInv[nInv];
3428
3429             if (fShutdown)
3430                 return true;
3431             pfrom->AddInventoryKnown(inv);
3432
3433             bool fAlreadyHave = AlreadyHave(txdb, inv);
3434             if (fDebug)
3435                 printf("  got inventory: %s  %s\n", inv.ToString().c_str(), fAlreadyHave ? "have" : "new");
3436
3437             if (!fAlreadyHave)
3438                 pfrom->AskFor(inv);
3439             else if (inv.type == MSG_BLOCK && mapOrphanBlocks.count(inv.hash)) {
3440                 pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(mapOrphanBlocks[inv.hash]));
3441             } else if (nInv == nLastBlock) {
3442                 // In case we are on a very long side-chain, it is possible that we already have
3443                 // the last block in an inv bundle sent in response to getblocks. Try to detect
3444                 // this situation and push another getblocks to continue.
3445                 pfrom->PushGetBlocks(mapBlockIndex[inv.hash], uint256(0));
3446                 if (fDebug)
3447                     printf("force request: %s\n", inv.ToString().c_str());
3448             }
3449
3450             // Track requests for our stuff
3451             Inventory(inv.hash);
3452         }
3453     }
3454
3455
3456     else if (strCommand == "getdata")
3457     {
3458         vector<CInv> vInv;
3459         vRecv >> vInv;
3460         if (vInv.size() > MAX_INV_SZ)
3461         {
3462             pfrom->Misbehaving(20);
3463             return error("message getdata size() = %"PRIszu"", vInv.size());
3464         }
3465
3466         if (fDebugNet || (vInv.size() != 1))
3467             printf("received getdata (%"PRIszu" invsz)\n", vInv.size());
3468
3469         BOOST_FOREACH(const CInv& inv, vInv)
3470         {
3471             if (fShutdown)
3472                 return true;
3473             if (fDebugNet || (vInv.size() == 1))
3474                 printf("received getdata for: %s\n", inv.ToString().c_str());
3475
3476             if (inv.type == MSG_BLOCK)
3477             {
3478                 // Send block from disk
3479                 map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(inv.hash);
3480                 if (mi != mapBlockIndex.end())
3481                 {
3482                     CBlock block;
3483                     block.ReadFromDisk((*mi).second);
3484                     pfrom->PushMessage("block", block);
3485
3486                     // Trigger them to send a getblocks request for the next batch of inventory
3487                     if (inv.hash == pfrom->hashContinue)
3488                     {
3489                         // ppcoin: send latest proof-of-work block to allow the
3490                         // download node to accept as orphan (proof-of-stake 
3491                         // block might be rejected by stake connection check)
3492                         vector<CInv> vInv;
3493                         vInv.push_back(CInv(MSG_BLOCK, GetLastBlockIndex(pindexBest, false)->GetBlockHash()));
3494                         pfrom->PushMessage("inv", vInv);
3495                         pfrom->hashContinue = 0;
3496                     }
3497                 }
3498             }
3499             else if (inv.IsKnownType())
3500             {
3501                 // Send stream from relay memory
3502                 bool pushed = false;
3503                 {
3504                     LOCK(cs_mapRelay);
3505                     map<CInv, CDataStream>::iterator mi = mapRelay.find(inv);
3506                     if (mi != mapRelay.end()) {
3507                         pfrom->PushMessage(inv.GetCommand(), (*mi).second);
3508                         pushed = true;
3509                     }
3510                 }
3511                 if (!pushed && inv.type == MSG_TX) {
3512                     LOCK(mempool.cs);
3513                     if (mempool.exists(inv.hash)) {
3514                         CTransaction tx = mempool.lookup(inv.hash);
3515                         CDataStream ss(SER_NETWORK, PROTOCOL_VERSION);
3516                         ss.reserve(1000);
3517                         ss << tx;
3518                         pfrom->PushMessage("tx", ss);
3519                     }
3520                 }
3521             }
3522
3523             // Track requests for our stuff
3524             Inventory(inv.hash);
3525         }
3526     }
3527
3528
3529     else if (strCommand == "getblocks")
3530     {
3531         CBlockLocator locator;
3532         uint256 hashStop;
3533         vRecv >> locator >> hashStop;
3534
3535         // Find the last block the caller has in the main chain
3536         CBlockIndex* pindex = locator.GetBlockIndex();
3537
3538         // Send the rest of the chain
3539         if (pindex)
3540             pindex = pindex->pnext;
3541         int nLimit = 500;
3542         printf("getblocks %d to %s limit %d\n", (pindex ? pindex->nHeight : -1), hashStop.ToString().substr(0,20).c_str(), nLimit);
3543         for (; pindex; pindex = pindex->pnext)
3544         {
3545             if (pindex->GetBlockHash() == hashStop)
3546             {
3547                 printf("  getblocks stopping at %d %s\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str());
3548                 // ppcoin: tell downloading node about the latest block if it's
3549                 // without risk being rejected due to stake connection check
3550                 if (hashStop != hashBestChain && pindex->GetBlockTime() + nStakeMinAge > pindexBest->GetBlockTime())
3551                     pfrom->PushInventory(CInv(MSG_BLOCK, hashBestChain));
3552                 break;
3553             }
3554             pfrom->PushInventory(CInv(MSG_BLOCK, pindex->GetBlockHash()));
3555             if (--nLimit <= 0)
3556             {
3557                 // When this block is requested, we'll send an inv that'll make them
3558                 // getblocks the next batch of inventory.
3559                 printf("  getblocks stopping at limit %d %s\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str());
3560                 pfrom->hashContinue = pindex->GetBlockHash();
3561                 break;
3562             }
3563         }
3564     }
3565     else if (strCommand == "checkpoint")
3566     {
3567         CSyncCheckpoint checkpoint;
3568         vRecv >> checkpoint;
3569
3570         if (checkpoint.ProcessSyncCheckpoint(pfrom))
3571         {
3572             // Relay
3573             pfrom->hashCheckpointKnown = checkpoint.hashCheckpoint;
3574             LOCK(cs_vNodes);
3575             BOOST_FOREACH(CNode* pnode, vNodes)
3576                 checkpoint.RelayTo(pnode);
3577         }
3578     }
3579
3580     else if (strCommand == "getheaders")
3581     {
3582         CBlockLocator locator;
3583         uint256 hashStop;
3584         vRecv >> locator >> hashStop;
3585
3586         CBlockIndex* pindex = NULL;
3587         if (locator.IsNull())
3588         {
3589             // If locator is null, return the hashStop block
3590             map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashStop);
3591             if (mi == mapBlockIndex.end())
3592                 return true;
3593             pindex = (*mi).second;
3594         }
3595         else
3596         {
3597             // Find the last block the caller has in the main chain
3598             pindex = locator.GetBlockIndex();
3599             if (pindex)
3600                 pindex = pindex->pnext;
3601         }
3602
3603         vector<CBlock> vHeaders;
3604         int nLimit = 2000;
3605         printf("getheaders %d to %s\n", (pindex ? pindex->nHeight : -1), hashStop.ToString().substr(0,20).c_str());
3606         for (; pindex; pindex = pindex->pnext)
3607         {
3608             vHeaders.push_back(pindex->GetBlockHeader());
3609             if (--nLimit <= 0 || pindex->GetBlockHash() == hashStop)
3610                 break;
3611         }
3612         pfrom->PushMessage("headers", vHeaders);
3613     }
3614
3615
3616     else if (strCommand == "tx")
3617     {
3618         vector<uint256> vWorkQueue;
3619         vector<uint256> vEraseQueue;
3620         CDataStream vMsg(vRecv);
3621         CTxDB txdb("r");
3622         CTransaction tx;
3623         vRecv >> tx;
3624
3625         CInv inv(MSG_TX, tx.GetHash());
3626         pfrom->AddInventoryKnown(inv);
3627
3628         bool fMissingInputs = false;
3629         if (tx.AcceptToMemoryPool(txdb, true, &fMissingInputs))
3630         {
3631             SyncWithWallets(tx, NULL, true);
3632             RelayTransaction(tx, inv.hash);
3633             mapAlreadyAskedFor.erase(inv);
3634             vWorkQueue.push_back(inv.hash);
3635             vEraseQueue.push_back(inv.hash);
3636
3637             // Recursively process any orphan transactions that depended on this one
3638             for (unsigned int i = 0; i < vWorkQueue.size(); i++)
3639             {
3640                 uint256 hashPrev = vWorkQueue[i];
3641                 for (set<uint256>::iterator mi = mapOrphanTransactionsByPrev[hashPrev].begin();
3642                      mi != mapOrphanTransactionsByPrev[hashPrev].end();
3643                      ++mi)
3644                 {
3645                     const uint256& orphanTxHash = *mi;
3646                     CTransaction& orphanTx = mapOrphanTransactions[orphanTxHash];
3647                     bool fMissingInputs2 = false;
3648
3649                     if (orphanTx.AcceptToMemoryPool(txdb, true, &fMissingInputs2))
3650                     {
3651                         printf("   accepted orphan tx %s\n", orphanTxHash.ToString().substr(0,10).c_str());
3652                         SyncWithWallets(tx, NULL, true);
3653                         RelayTransaction(orphanTx, orphanTxHash);
3654                         mapAlreadyAskedFor.erase(CInv(MSG_TX, orphanTxHash));
3655                         vWorkQueue.push_back(orphanTxHash);
3656                         vEraseQueue.push_back(orphanTxHash);
3657                     }
3658                     else if (!fMissingInputs2)
3659                     {
3660                         // invalid orphan
3661                         vEraseQueue.push_back(orphanTxHash);
3662                         printf("   removed invalid orphan tx %s\n", orphanTxHash.ToString().substr(0,10).c_str());
3663                     }
3664                 }
3665             }
3666
3667             BOOST_FOREACH(uint256 hash, vEraseQueue)
3668                 EraseOrphanTx(hash);
3669         }
3670         else if (fMissingInputs)
3671         {
3672             AddOrphanTx(tx);
3673
3674             // DoS prevention: do not allow mapOrphanTransactions to grow unbounded
3675             unsigned int nEvicted = LimitOrphanTxSize(MAX_ORPHAN_TRANSACTIONS);
3676             if (nEvicted > 0)
3677                 printf("mapOrphan overflow, removed %u tx\n", nEvicted);
3678         }
3679         if (tx.nDoS) pfrom->Misbehaving(tx.nDoS);
3680     }
3681
3682
3683     else if (strCommand == "block")
3684     {
3685         CBlock block;
3686         vRecv >> block;
3687         uint256 hashBlock = block.GetHash();
3688
3689         printf("received block %s\n", hashBlock.ToString().substr(0,20).c_str());
3690         // block.print();
3691
3692         CInv inv(MSG_BLOCK, hashBlock);
3693         pfrom->AddInventoryKnown(inv);
3694
3695         if (ProcessBlock(pfrom, &block))
3696             mapAlreadyAskedFor.erase(inv);
3697         if (block.nDoS) pfrom->Misbehaving(block.nDoS);
3698     }
3699
3700
3701     else if (strCommand == "getaddr")
3702     {
3703         // Don't return addresses older than nCutOff timestamp
3704         int64 nCutOff = GetTime() - (nNodeLifespan * 24 * 60 * 60);
3705         pfrom->vAddrToSend.clear();
3706         vector<CAddress> vAddr = addrman.GetAddr();
3707         BOOST_FOREACH(const CAddress &addr, vAddr)
3708             if(addr.nTime > nCutOff)
3709                 pfrom->PushAddress(addr);
3710     }
3711
3712
3713     else if (strCommand == "mempool")
3714     {
3715         std::vector<uint256> vtxid;
3716         mempool.queryHashes(vtxid);
3717         vector<CInv> vInv;
3718         for (unsigned int i = 0; i < vtxid.size(); i++) {
3719             CInv inv(MSG_TX, vtxid[i]);
3720             vInv.push_back(inv);
3721             if (i == (MAX_INV_SZ - 1))
3722                     break;
3723         }
3724         if (vInv.size() > 0)
3725             pfrom->PushMessage("inv", vInv);
3726     }
3727
3728
3729     else if (strCommand == "checkorder")
3730     {
3731         uint256 hashReply;
3732         vRecv >> hashReply;
3733
3734         if (!GetBoolArg("-allowreceivebyip"))
3735         {
3736             pfrom->PushMessage("reply", hashReply, (int)2, string(""));
3737             return true;
3738         }
3739
3740         CWalletTx order;
3741         vRecv >> order;
3742
3743         /// we have a chance to check the order here
3744
3745         // Keep giving the same key to the same ip until they use it
3746         if (!mapReuseKey.count(pfrom->addr))
3747             pwalletMain->GetKeyFromPool(mapReuseKey[pfrom->addr], true);
3748
3749         // Send back approval of order and pubkey to use
3750         CScript scriptPubKey;
3751         scriptPubKey << mapReuseKey[pfrom->addr] << OP_CHECKSIG;
3752         pfrom->PushMessage("reply", hashReply, (int)0, scriptPubKey);
3753     }
3754
3755
3756     else if (strCommand == "reply")
3757     {
3758         uint256 hashReply;
3759         vRecv >> hashReply;
3760
3761         CRequestTracker tracker;
3762         {
3763             LOCK(pfrom->cs_mapRequests);
3764             map<uint256, CRequestTracker>::iterator mi = pfrom->mapRequests.find(hashReply);
3765             if (mi != pfrom->mapRequests.end())
3766             {
3767                 tracker = (*mi).second;
3768                 pfrom->mapRequests.erase(mi);
3769             }
3770         }
3771         if (!tracker.IsNull())
3772             tracker.fn(tracker.param1, vRecv);
3773     }
3774
3775
3776     else if (strCommand == "ping")
3777     {
3778         if (pfrom->nVersion > BIP0031_VERSION)
3779         {
3780             uint64 nonce = 0;
3781             vRecv >> nonce;
3782             // Echo the message back with the nonce. This allows for two useful features:
3783             //
3784             // 1) A remote node can quickly check if the connection is operational
3785             // 2) Remote nodes can measure the latency of the network thread. If this node
3786             //    is overloaded it won't respond to pings quickly and the remote node can
3787             //    avoid sending us more work, like chain download requests.
3788             //
3789             // The nonce stops the remote getting confused between different pings: without
3790             // it, if the remote node sends a ping once per second and this node takes 5
3791             // seconds to respond to each, the 5th ping the remote sends would appear to
3792             // return very quickly.
3793             pfrom->PushMessage("pong", nonce);
3794         }
3795     }
3796
3797
3798     else if (strCommand == "alert")
3799     {
3800         CAlert alert;
3801         vRecv >> alert;
3802
3803         uint256 alertHash = alert.GetHash();
3804         if (pfrom->setKnown.count(alertHash) == 0)
3805         {
3806             if (alert.ProcessAlert())
3807             {
3808                 // Relay
3809                 pfrom->setKnown.insert(alertHash);
3810                 {
3811                     LOCK(cs_vNodes);
3812                     BOOST_FOREACH(CNode* pnode, vNodes)
3813                         alert.RelayTo(pnode);
3814                 }
3815             }
3816             else {
3817                 // Small DoS penalty so peers that send us lots of
3818                 // duplicate/expired/invalid-signature/whatever alerts
3819                 // eventually get banned.
3820                 // This isn't a Misbehaving(100) (immediate ban) because the
3821                 // peer might be an older or different implementation with
3822                 // a different signature key, etc.
3823                 pfrom->Misbehaving(10);
3824             }
3825         }
3826     }
3827
3828
3829     else
3830     {
3831         // Ignore unknown commands for extensibility
3832     }
3833
3834
3835     // Update the last seen time for this node's address
3836     if (pfrom->fNetworkNode)
3837         if (strCommand == "version" || strCommand == "addr" || strCommand == "inv" || strCommand == "getdata" || strCommand == "ping")
3838             AddressCurrentlyConnected(pfrom->addr);
3839
3840
3841     return true;
3842 }
3843
3844 bool ProcessMessages(CNode* pfrom)
3845 {
3846     CDataStream& vRecv = pfrom->vRecv;
3847     if (vRecv.empty())
3848         return true;
3849     //if (fDebug)
3850     //    printf("ProcessMessages(%u bytes)\n", vRecv.size());
3851
3852     //
3853     // Message format
3854     //  (4) message start
3855     //  (12) command
3856     //  (4) size
3857     //  (4) checksum
3858     //  (x) data
3859     //
3860
3861     while (true)
3862     {
3863         // Don't bother if send buffer is too full to respond anyway
3864         if (pfrom->vSend.size() >= SendBufferSize())
3865             break;
3866
3867         // Scan for message start
3868         CDataStream::iterator pstart = search(vRecv.begin(), vRecv.end(), BEGIN(pchMessageStart), END(pchMessageStart));
3869         int nHeaderSize = vRecv.GetSerializeSize(CMessageHeader());
3870         if (vRecv.end() - pstart < nHeaderSize)
3871         {
3872             if ((int)vRecv.size() > nHeaderSize)
3873             {
3874                 printf("\n\nPROCESSMESSAGE MESSAGESTART NOT FOUND\n\n");
3875                 vRecv.erase(vRecv.begin(), vRecv.end() - nHeaderSize);
3876             }
3877             break;
3878         }
3879         if (pstart - vRecv.begin() > 0)
3880             printf("\n\nPROCESSMESSAGE SKIPPED %"PRIpdd" BYTES\n\n", pstart - vRecv.begin());
3881         vRecv.erase(vRecv.begin(), pstart);
3882
3883         // Read header
3884         vector<char> vHeaderSave(vRecv.begin(), vRecv.begin() + nHeaderSize);
3885         CMessageHeader hdr;
3886         vRecv >> hdr;
3887         if (!hdr.IsValid())
3888         {
3889             printf("\n\nPROCESSMESSAGE: ERRORS IN HEADER %s\n\n\n", hdr.GetCommand().c_str());
3890             continue;
3891         }
3892         string strCommand = hdr.GetCommand();
3893
3894         // Message size
3895         unsigned int nMessageSize = hdr.nMessageSize;
3896         if (nMessageSize > MAX_SIZE)
3897         {
3898             printf("ProcessMessages(%s, %u bytes) : nMessageSize > MAX_SIZE\n", strCommand.c_str(), nMessageSize);
3899             continue;
3900         }
3901         if (nMessageSize > vRecv.size())
3902         {
3903             // Rewind and wait for rest of message
3904             vRecv.insert(vRecv.begin(), vHeaderSave.begin(), vHeaderSave.end());
3905             break;
3906         }
3907
3908         // Checksum
3909         uint256 hash = Hash(vRecv.begin(), vRecv.begin() + nMessageSize);
3910         unsigned int nChecksum = 0;
3911         memcpy(&nChecksum, &hash, sizeof(nChecksum));
3912         if (nChecksum != hdr.nChecksum)
3913         {
3914             printf("ProcessMessages(%s, %u bytes) : CHECKSUM ERROR nChecksum=%08x hdr.nChecksum=%08x\n",
3915                strCommand.c_str(), nMessageSize, nChecksum, hdr.nChecksum);
3916             continue;
3917         }
3918
3919         // Copy message to its own buffer
3920         CDataStream vMsg(vRecv.begin(), vRecv.begin() + nMessageSize, vRecv.nType, vRecv.nVersion);
3921         vRecv.ignore(nMessageSize);
3922
3923         // Process message
3924         bool fRet = false;
3925         try
3926         {
3927             {
3928                 LOCK(cs_main);
3929                 fRet = ProcessMessage(pfrom, strCommand, vMsg);
3930             }
3931             if (fShutdown)
3932                 return true;
3933         }
3934         catch (std::ios_base::failure& e)
3935         {
3936             if (strstr(e.what(), "end of data"))
3937             {
3938                 // Allow exceptions from under-length message on vRecv
3939                 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());
3940             }
3941             else if (strstr(e.what(), "size too large"))
3942             {
3943                 // Allow exceptions from over-long size
3944                 printf("ProcessMessages(%s, %u bytes) : Exception '%s' caught\n", strCommand.c_str(), nMessageSize, e.what());
3945             }
3946             else
3947             {
3948                 PrintExceptionContinue(&e, "ProcessMessages()");
3949             }
3950         }
3951         catch (std::exception& e) {
3952             PrintExceptionContinue(&e, "ProcessMessages()");
3953         } catch (...) {
3954             PrintExceptionContinue(NULL, "ProcessMessages()");
3955         }
3956
3957         if (!fRet)
3958             printf("ProcessMessage(%s, %u bytes) FAILED\n", strCommand.c_str(), nMessageSize);
3959     }
3960
3961     vRecv.Compact();
3962     return true;
3963 }
3964
3965
3966 bool SendMessages(CNode* pto, bool fSendTrickle)
3967 {
3968     TRY_LOCK(cs_main, lockMain);
3969     if (lockMain) {
3970         // Don't send anything until we get their version message
3971         if (pto->nVersion == 0)
3972             return true;
3973
3974         // Keep-alive ping. We send a nonce of zero because we don't use it anywhere
3975         // right now.
3976         if (pto->nLastSend && GetTime() - pto->nLastSend > 30 * 60 && pto->vSend.empty()) {
3977             uint64 nonce = 0;
3978             if (pto->nVersion > BIP0031_VERSION)
3979                 pto->PushMessage("ping", nonce);
3980             else
3981                 pto->PushMessage("ping");
3982         }
3983
3984         // Resend wallet transactions that haven't gotten in a block yet
3985         ResendWalletTransactions();
3986
3987         // Address refresh broadcast
3988         static int64 nLastRebroadcast;
3989         if (!IsInitialBlockDownload() && (GetTime() - nLastRebroadcast > 24 * 60 * 60))
3990         {
3991             {
3992                 LOCK(cs_vNodes);
3993                 BOOST_FOREACH(CNode* pnode, vNodes)
3994                 {
3995                     // Periodically clear setAddrKnown to allow refresh broadcasts
3996                     if (nLastRebroadcast)
3997                         pnode->setAddrKnown.clear();
3998
3999                     // Rebroadcast our address
4000                     if (!fNoListen)
4001                     {
4002                         CAddress addr = GetLocalAddress(&pnode->addr);
4003                         if (addr.IsRoutable())
4004                             pnode->PushAddress(addr);
4005                     }
4006                 }
4007             }
4008             nLastRebroadcast = GetTime();
4009         }
4010
4011         //
4012         // Message: addr
4013         //
4014         if (fSendTrickle)
4015         {
4016             vector<CAddress> vAddr;
4017             vAddr.reserve(pto->vAddrToSend.size());
4018             BOOST_FOREACH(const CAddress& addr, pto->vAddrToSend)
4019             {
4020                 // returns true if wasn't already contained in the set
4021                 if (pto->setAddrKnown.insert(addr).second)
4022                 {
4023                     vAddr.push_back(addr);
4024                     // receiver rejects addr messages larger than 1000
4025                     if (vAddr.size() >= 1000)
4026                     {
4027                         pto->PushMessage("addr", vAddr);
4028                         vAddr.clear();
4029                     }
4030                 }
4031             }
4032             pto->vAddrToSend.clear();
4033             if (!vAddr.empty())
4034                 pto->PushMessage("addr", vAddr);
4035         }
4036
4037
4038         //
4039         // Message: inventory
4040         //
4041         vector<CInv> vInv;
4042         vector<CInv> vInvWait;
4043         {
4044             LOCK(pto->cs_inventory);
4045             vInv.reserve(pto->vInventoryToSend.size());
4046             vInvWait.reserve(pto->vInventoryToSend.size());
4047             BOOST_FOREACH(const CInv& inv, pto->vInventoryToSend)
4048             {
4049                 if (pto->setInventoryKnown.count(inv))
4050                     continue;
4051
4052                 // trickle out tx inv to protect privacy
4053                 if (inv.type == MSG_TX && !fSendTrickle)
4054                 {
4055                     // 1/4 of tx invs blast to all immediately
4056                     static uint256 hashSalt;
4057                     if (hashSalt == 0)
4058                         hashSalt = GetRandHash();
4059                     uint256 hashRand = inv.hash ^ hashSalt;
4060                     hashRand = Hash(BEGIN(hashRand), END(hashRand));
4061                     bool fTrickleWait = ((hashRand & 3) != 0);
4062
4063                     // always trickle our own transactions
4064                     if (!fTrickleWait)
4065                     {
4066                         CWalletTx wtx;
4067                         if (GetTransaction(inv.hash, wtx))
4068                             if (wtx.fFromMe)
4069                                 fTrickleWait = true;
4070                     }
4071
4072                     if (fTrickleWait)
4073                     {
4074                         vInvWait.push_back(inv);
4075                         continue;
4076                     }
4077                 }
4078
4079                 // returns true if wasn't already contained in the set
4080                 if (pto->setInventoryKnown.insert(inv).second)
4081                 {
4082                     vInv.push_back(inv);
4083                     if (vInv.size() >= 1000)
4084                     {
4085                         pto->PushMessage("inv", vInv);
4086                         vInv.clear();
4087                     }
4088                 }
4089             }
4090             pto->vInventoryToSend = vInvWait;
4091         }
4092         if (!vInv.empty())
4093             pto->PushMessage("inv", vInv);
4094
4095
4096         //
4097         // Message: getdata
4098         //
4099         vector<CInv> vGetData;
4100         int64 nNow = GetTime() * 1000000;
4101         CTxDB txdb("r");
4102         while (!pto->mapAskFor.empty() && (*pto->mapAskFor.begin()).first <= nNow)
4103         {
4104             const CInv& inv = (*pto->mapAskFor.begin()).second;
4105             if (!AlreadyHave(txdb, inv))
4106             {
4107                 if (fDebugNet)
4108                     printf("sending getdata: %s\n", inv.ToString().c_str());
4109                 vGetData.push_back(inv);
4110                 if (vGetData.size() >= 1000)
4111                 {
4112                     pto->PushMessage("getdata", vGetData);
4113                     vGetData.clear();
4114                 }
4115                 mapAlreadyAskedFor[inv] = nNow;
4116             }
4117             pto->mapAskFor.erase(pto->mapAskFor.begin());
4118         }
4119         if (!vGetData.empty())
4120             pto->PushMessage("getdata", vGetData);
4121
4122     }
4123     return true;
4124 }