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