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