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