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