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