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