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