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