Free pwalletdbEncryption after encryping wallet
[novacoin.git] / src / wallet.cpp
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2011 The Bitcoin developers
3 // Distributed under the MIT/X11 software license, see the accompanying
4 // file license.txt or http://www.opensource.org/licenses/mit-license.php.
5
6 #include "headers.h"
7 #include "db.h"
8 #include "cryptopp/sha.h"
9 #include "crypter.h"
10
11 using namespace std;
12
13
14 //////////////////////////////////////////////////////////////////////////////
15 //
16 // mapWallet
17 //
18
19 bool CWallet::AddKey(const CKey& key)
20 {
21     if (!CCryptoKeyStore::AddKey(key))
22         return false;
23     if (!fFileBacked)
24         return true;
25     if (!IsCrypted())
26         return CWalletDB(strWalletFile).WriteKey(key.GetPubKey(), key.GetPrivKey());
27     return true;
28 }
29
30 bool CWallet::AddCryptedKey(const vector<unsigned char> &vchPubKey, const vector<unsigned char> &vchCryptedSecret)
31 {
32     if (!CCryptoKeyStore::AddCryptedKey(vchPubKey, vchCryptedSecret))
33         return false;
34     if (!fFileBacked)
35         return true;
36     CRITICAL_BLOCK(cs_wallet)
37     {
38         if (pwalletdbEncryption)
39             return pwalletdbEncryption->WriteCryptedKey(vchPubKey, vchCryptedSecret);
40         else
41             return CWalletDB(strWalletFile).WriteCryptedKey(vchPubKey, vchCryptedSecret);
42     }
43     return false;
44 }
45
46 bool CWallet::Unlock(const string& strWalletPassphrase)
47 {
48     if (!IsLocked())
49         return false;
50
51     CCrypter crypter;
52     CKeyingMaterial vMasterKey;
53
54     CRITICAL_BLOCK(cs_wallet)
55         BOOST_FOREACH(const MasterKeyMap::value_type& pMasterKey, mapMasterKeys)
56         {
57             if(!crypter.SetKeyFromPassphrase(strWalletPassphrase, pMasterKey.second.vchSalt, pMasterKey.second.nDeriveIterations, pMasterKey.second.nDerivationMethod))
58                 return false;
59             if (!crypter.Decrypt(pMasterKey.second.vchCryptedKey, vMasterKey))
60                 return false;
61             if (CCryptoKeyStore::Unlock(vMasterKey))
62                 return true;
63         }
64     return false;
65 }
66
67 bool CWallet::ChangeWalletPassphrase(const string& strOldWalletPassphrase, const string& strNewWalletPassphrase)
68 {
69     bool fWasLocked = IsLocked();
70
71     CRITICAL_BLOCK(cs_wallet)
72     {
73         Lock();
74
75         CCrypter crypter;
76         CKeyingMaterial vMasterKey;
77         BOOST_FOREACH(MasterKeyMap::value_type& pMasterKey, mapMasterKeys)
78         {
79             if(!crypter.SetKeyFromPassphrase(strOldWalletPassphrase, pMasterKey.second.vchSalt, pMasterKey.second.nDeriveIterations, pMasterKey.second.nDerivationMethod))
80                 return false;
81             if (!crypter.Decrypt(pMasterKey.second.vchCryptedKey, vMasterKey))
82                 return false;
83             if (CCryptoKeyStore::Unlock(vMasterKey))
84             {
85                 int64 nStartTime = GetTimeMillis();
86                 crypter.SetKeyFromPassphrase(strNewWalletPassphrase, pMasterKey.second.vchSalt, pMasterKey.second.nDeriveIterations, pMasterKey.second.nDerivationMethod);
87                 pMasterKey.second.nDeriveIterations = pMasterKey.second.nDeriveIterations * (100 / ((double)(GetTimeMillis() - nStartTime)));
88
89                 nStartTime = GetTimeMillis();
90                 crypter.SetKeyFromPassphrase(strNewWalletPassphrase, pMasterKey.second.vchSalt, pMasterKey.second.nDeriveIterations, pMasterKey.second.nDerivationMethod);
91                 pMasterKey.second.nDeriveIterations = (pMasterKey.second.nDeriveIterations + pMasterKey.second.nDeriveIterations * 100 / ((double)(GetTimeMillis() - nStartTime))) / 2;
92
93                 if (pMasterKey.second.nDeriveIterations < 25000)
94                     pMasterKey.second.nDeriveIterations = 25000;
95
96                 printf("Wallet passphrase changed to an nDeriveIterations of %i\n", pMasterKey.second.nDeriveIterations);
97
98                 if (!crypter.SetKeyFromPassphrase(strNewWalletPassphrase, pMasterKey.second.vchSalt, pMasterKey.second.nDeriveIterations, pMasterKey.second.nDerivationMethod))
99                     return false;
100                 if (!crypter.Encrypt(vMasterKey, pMasterKey.second.vchCryptedKey))
101                     return false;
102                 CWalletDB(strWalletFile).WriteMasterKey(pMasterKey.first, pMasterKey.second);
103                 if (fWasLocked)
104                     Lock();
105                 return true;
106             }
107         }
108     }
109
110     return false;
111 }
112
113
114 // This class implements an addrIncoming entry that causes pre-0.4
115 // clients to crash on startup if reading a private-key-encrypted wallet.
116 class CCorruptAddress
117 {
118 public:
119     IMPLEMENT_SERIALIZE
120     (
121         if (nType & SER_DISK)
122             READWRITE(nVersion);
123     )
124 };
125
126 bool CWallet::EncryptWallet(const string& strWalletPassphrase)
127 {
128     if (IsCrypted())
129         return false;
130
131     CKeyingMaterial vMasterKey;
132     RandAddSeedPerfmon();
133
134     vMasterKey.resize(WALLET_CRYPTO_KEY_SIZE);
135     RAND_bytes(&vMasterKey[0], WALLET_CRYPTO_KEY_SIZE);
136
137     CMasterKey kMasterKey;
138
139     RandAddSeedPerfmon();
140     kMasterKey.vchSalt.resize(WALLET_CRYPTO_SALT_SIZE);
141     RAND_bytes(&kMasterKey.vchSalt[0], WALLET_CRYPTO_SALT_SIZE);
142
143     CCrypter crypter;
144     int64 nStartTime = GetTimeMillis();
145     crypter.SetKeyFromPassphrase(strWalletPassphrase, kMasterKey.vchSalt, 25000, kMasterKey.nDerivationMethod);
146     kMasterKey.nDeriveIterations = 2500000 / ((double)(GetTimeMillis() - nStartTime));
147
148     nStartTime = GetTimeMillis();
149     crypter.SetKeyFromPassphrase(strWalletPassphrase, kMasterKey.vchSalt, kMasterKey.nDeriveIterations, kMasterKey.nDerivationMethod);
150     kMasterKey.nDeriveIterations = (kMasterKey.nDeriveIterations + kMasterKey.nDeriveIterations * 100 / ((double)(GetTimeMillis() - nStartTime))) / 2;
151
152     if (kMasterKey.nDeriveIterations < 25000)
153         kMasterKey.nDeriveIterations = 25000;
154
155     printf("Encrypting Wallet with an nDeriveIterations of %i\n", kMasterKey.nDeriveIterations);
156
157     if (!crypter.SetKeyFromPassphrase(strWalletPassphrase, kMasterKey.vchSalt, kMasterKey.nDeriveIterations, kMasterKey.nDerivationMethod))
158         return false;
159     if (!crypter.Encrypt(vMasterKey, kMasterKey.vchCryptedKey))
160         return false;
161
162     CRITICAL_BLOCK(cs_wallet)
163     {
164         mapMasterKeys[++nMasterKeyMaxID] = kMasterKey;
165         if (fFileBacked)
166         {
167             pwalletdbEncryption = new CWalletDB(strWalletFile);
168             pwalletdbEncryption->TxnBegin();
169             pwalletdbEncryption->WriteMasterKey(nMasterKeyMaxID, kMasterKey);
170         }
171
172         if (!EncryptKeys(vMasterKey))
173         {
174             if (fFileBacked)
175                 pwalletdbEncryption->TxnAbort();
176             exit(1); //We now probably have half of our keys encrypted in memory, and half not...die and let the user reload their unencrypted wallet.
177         }
178
179         if (fFileBacked)
180         {
181             CCorruptAddress corruptAddress;
182             pwalletdbEncryption->WriteSetting("addrIncoming", corruptAddress);
183             if (!pwalletdbEncryption->TxnCommit())
184                 exit(1); //We now have keys encrypted in memory, but no on disk...die to avoid confusion and let the user reload their unencrypted wallet.
185
186             delete pwalletdbEncryption;
187             pwalletdbEncryption = NULL;
188         }
189
190         Lock();
191         Unlock(strWalletPassphrase);
192         NewKeyPool();
193         Lock();
194
195         // Need to completely rewrite the wallet file; if we don't, bdb might keep
196         // bits of the unencrypted private key in slack space in the database file.
197         CDB::Rewrite(strWalletFile);
198     }
199
200     return true;
201 }
202
203 void CWallet::WalletUpdateSpent(const CTransaction &tx)
204 {
205     // Anytime a signature is successfully verified, it's proof the outpoint is spent.
206     // Update the wallet spent flag if it doesn't know due to wallet.dat being
207     // restored from backup or the user making copies of wallet.dat.
208     CRITICAL_BLOCK(cs_wallet)
209     {
210         BOOST_FOREACH(const CTxIn& txin, tx.vin)
211         {
212             map<uint256, CWalletTx>::iterator mi = mapWallet.find(txin.prevout.hash);
213             if (mi != mapWallet.end())
214             {
215                 CWalletTx& wtx = (*mi).second;
216                 if (!wtx.IsSpent(txin.prevout.n) && IsMine(wtx.vout[txin.prevout.n]))
217                 {
218                     printf("WalletUpdateSpent found spent coin %sbc %s\n", FormatMoney(wtx.GetCredit()).c_str(), wtx.GetHash().ToString().c_str());
219                     wtx.MarkSpent(txin.prevout.n);
220                     wtx.WriteToDisk();
221                     vWalletUpdated.push_back(txin.prevout.hash);
222                 }
223             }
224         }
225     }
226 }
227
228 bool CWallet::AddToWallet(const CWalletTx& wtxIn)
229 {
230     uint256 hash = wtxIn.GetHash();
231     CRITICAL_BLOCK(cs_wallet)
232     {
233         // Inserts only if not already there, returns tx inserted or tx found
234         pair<map<uint256, CWalletTx>::iterator, bool> ret = mapWallet.insert(make_pair(hash, wtxIn));
235         CWalletTx& wtx = (*ret.first).second;
236         wtx.pwallet = this;
237         bool fInsertedNew = ret.second;
238         if (fInsertedNew)
239             wtx.nTimeReceived = GetAdjustedTime();
240
241         bool fUpdated = false;
242         if (!fInsertedNew)
243         {
244             // Merge
245             if (wtxIn.hashBlock != 0 && wtxIn.hashBlock != wtx.hashBlock)
246             {
247                 wtx.hashBlock = wtxIn.hashBlock;
248                 fUpdated = true;
249             }
250             if (wtxIn.nIndex != -1 && (wtxIn.vMerkleBranch != wtx.vMerkleBranch || wtxIn.nIndex != wtx.nIndex))
251             {
252                 wtx.vMerkleBranch = wtxIn.vMerkleBranch;
253                 wtx.nIndex = wtxIn.nIndex;
254                 fUpdated = true;
255             }
256             if (wtxIn.fFromMe && wtxIn.fFromMe != wtx.fFromMe)
257             {
258                 wtx.fFromMe = wtxIn.fFromMe;
259                 fUpdated = true;
260             }
261             fUpdated |= wtx.UpdateSpent(wtxIn.vfSpent);
262         }
263
264         //// debug print
265         printf("AddToWallet %s  %s%s\n", wtxIn.GetHash().ToString().substr(0,10).c_str(), (fInsertedNew ? "new" : ""), (fUpdated ? "update" : ""));
266
267         // Write to disk
268         if (fInsertedNew || fUpdated)
269             if (!wtx.WriteToDisk())
270                 return false;
271
272         // If default receiving address gets used, replace it with a new one
273         CScript scriptDefaultKey;
274         scriptDefaultKey.SetBitcoinAddress(vchDefaultKey);
275         BOOST_FOREACH(const CTxOut& txout, wtx.vout)
276         {
277             if (txout.scriptPubKey == scriptDefaultKey)
278             {
279                 std::vector<unsigned char> newDefaultKey;
280                 if (GetKeyFromPool(newDefaultKey, false))
281                 {
282                     SetDefaultKey(newDefaultKey);
283                     SetAddressBookName(CBitcoinAddress(vchDefaultKey), "");
284                 }
285             }
286         }
287
288         // Notify UI
289         vWalletUpdated.push_back(hash);
290
291         // since AddToWallet is called directly for self-originating transactions, check for consumption of own coins
292         WalletUpdateSpent(wtx);
293     }
294
295     // Refresh UI
296     MainFrameRepaint();
297     return true;
298 }
299
300 bool CWallet::AddToWalletIfInvolvingMe(const CTransaction& tx, const CBlock* pblock, bool fUpdate)
301 {
302     uint256 hash = tx.GetHash();
303     CRITICAL_BLOCK(cs_wallet)
304     {
305         bool fExisted = mapWallet.count(hash);
306         if (fExisted && !fUpdate) return false;
307         if (fExisted || IsMine(tx) || IsFromMe(tx))
308         {
309             CWalletTx wtx(this,tx);
310             // Get merkle branch if transaction was found in a block
311             if (pblock)
312                 wtx.SetMerkleBranch(pblock);
313             return AddToWallet(wtx);
314         }
315         else
316             WalletUpdateSpent(tx);
317     }
318     return false;
319 }
320
321 bool CWallet::EraseFromWallet(uint256 hash)
322 {
323     if (!fFileBacked)
324         return false;
325     CRITICAL_BLOCK(cs_wallet)
326     {
327         if (mapWallet.erase(hash))
328             CWalletDB(strWalletFile).EraseTx(hash);
329     }
330     return true;
331 }
332
333
334 bool CWallet::IsMine(const CTxIn &txin) const
335 {
336     CRITICAL_BLOCK(cs_wallet)
337     {
338         map<uint256, CWalletTx>::const_iterator mi = mapWallet.find(txin.prevout.hash);
339         if (mi != mapWallet.end())
340         {
341             const CWalletTx& prev = (*mi).second;
342             if (txin.prevout.n < prev.vout.size())
343                 if (IsMine(prev.vout[txin.prevout.n]))
344                     return true;
345         }
346     }
347     return false;
348 }
349
350 int64 CWallet::GetDebit(const CTxIn &txin) const
351 {
352     CRITICAL_BLOCK(cs_wallet)
353     {
354         map<uint256, CWalletTx>::const_iterator mi = mapWallet.find(txin.prevout.hash);
355         if (mi != mapWallet.end())
356         {
357             const CWalletTx& prev = (*mi).second;
358             if (txin.prevout.n < prev.vout.size())
359                 if (IsMine(prev.vout[txin.prevout.n]))
360                     return prev.vout[txin.prevout.n].nValue;
361         }
362     }
363     return 0;
364 }
365
366 int64 CWalletTx::GetTxTime() const
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(pwallet->cs_wallet)
376     {
377         if (IsCoinBase())
378         {
379             // Generated block
380             if (hashBlock != 0)
381             {
382                 map<uint256, int>::const_iterator mi = pwallet->mapRequestCount.find(hashBlock);
383                 if (mi != pwallet->mapRequestCount.end())
384                     nRequests = (*mi).second;
385             }
386         }
387         else
388         {
389             // Did anyone request this transaction?
390             map<uint256, int>::const_iterator mi = pwallet->mapRequestCount.find(GetHash());
391             if (mi != pwallet->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>::const_iterator mi = pwallet->mapRequestCount.find(hashBlock);
399                     if (mi != pwallet->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& nGeneratedImmature, int64& nGeneratedMature, list<pair<CBitcoinAddress, int64> >& listReceived,
411                            list<pair<CBitcoinAddress, int64> >& listSent, int64& nFee, string& strSentAccount) const
412 {
413     nGeneratedImmature = nGeneratedMature = nFee = 0;
414     listReceived.clear();
415     listSent.clear();
416     strSentAccount = strFromAccount;
417
418     if (IsCoinBase())
419     {
420         if (GetBlocksToMaturity() > 0)
421             nGeneratedImmature = pwallet->GetCredit(*this);
422         else
423             nGeneratedMature = GetCredit();
424         return;
425     }
426
427     // Compute fee:
428     int64 nDebit = GetDebit();
429     if (nDebit > 0) // debit>0 means we signed/sent this transaction
430     {
431         int64 nValueOut = GetValueOut();
432         nFee = nDebit - nValueOut;
433     }
434
435     // Sent/received.  Standard client will never generate a send-to-multiple-recipients,
436     // but non-standard clients might (so return a list of address/amount pairs)
437     BOOST_FOREACH(const CTxOut& txout, vout)
438     {
439         CBitcoinAddress address;
440         vector<unsigned char> vchPubKey;
441         if (!ExtractAddress(txout.scriptPubKey, NULL, address))
442         {
443             printf("CWalletTx::GetAmounts: Unknown transaction type found, txid %s\n",
444                    this->GetHash().ToString().c_str());
445             address = " unknown ";
446         }
447
448         // Don't report 'change' txouts
449         if (nDebit > 0 && pwallet->IsChange(txout))
450             continue;
451
452         if (nDebit > 0)
453             listSent.push_back(make_pair(address, txout.nValue));
454
455         if (pwallet->IsMine(txout))
456             listReceived.push_back(make_pair(address, txout.nValue));
457     }
458
459 }
460
461 void CWalletTx::GetAccountAmounts(const string& strAccount, int64& nGenerated, int64& nReceived, 
462                                   int64& nSent, int64& nFee) const
463 {
464     nGenerated = nReceived = nSent = nFee = 0;
465
466     int64 allGeneratedImmature, allGeneratedMature, allFee;
467     allGeneratedImmature = allGeneratedMature = allFee = 0;
468     string strSentAccount;
469     list<pair<CBitcoinAddress, int64> > listReceived;
470     list<pair<CBitcoinAddress, int64> > listSent;
471     GetAmounts(allGeneratedImmature, allGeneratedMature, listReceived, listSent, allFee, strSentAccount);
472
473     if (strAccount == "")
474         nGenerated = allGeneratedMature;
475     if (strAccount == strSentAccount)
476     {
477         BOOST_FOREACH(const PAIRTYPE(CBitcoinAddress,int64)& s, listSent)
478             nSent += s.second;
479         nFee = allFee;
480     }
481     CRITICAL_BLOCK(pwallet->cs_wallet)
482     {
483         BOOST_FOREACH(const PAIRTYPE(CBitcoinAddress,int64)& r, listReceived)
484         {
485             if (pwallet->mapAddressBook.count(r.first))
486             {
487                 map<CBitcoinAddress, string>::const_iterator mi = pwallet->mapAddressBook.find(r.first);
488                 if (mi != pwallet->mapAddressBook.end() && (*mi).second == strAccount)
489                     nReceived += r.second;
490             }
491             else if (strAccount.empty())
492             {
493                 nReceived += r.second;
494             }
495         }
496     }
497 }
498
499 void CWalletTx::AddSupportingTransactions(CTxDB& txdb)
500 {
501     vtxPrev.clear();
502
503     const int COPY_DEPTH = 3;
504     if (SetMerkleBranch() < COPY_DEPTH)
505     {
506         vector<uint256> vWorkQueue;
507         BOOST_FOREACH(const CTxIn& txin, vin)
508             vWorkQueue.push_back(txin.prevout.hash);
509
510         // This critsect is OK because txdb is already open
511         CRITICAL_BLOCK(pwallet->cs_wallet)
512         {
513             map<uint256, const CMerkleTx*> mapWalletPrev;
514             set<uint256> setAlreadyDone;
515             for (int i = 0; i < vWorkQueue.size(); i++)
516             {
517                 uint256 hash = vWorkQueue[i];
518                 if (setAlreadyDone.count(hash))
519                     continue;
520                 setAlreadyDone.insert(hash);
521
522                 CMerkleTx tx;
523                 map<uint256, CWalletTx>::const_iterator mi = pwallet->mapWallet.find(hash);
524                 if (mi != pwallet->mapWallet.end())
525                 {
526                     tx = (*mi).second;
527                     BOOST_FOREACH(const CMerkleTx& txWalletPrev, (*mi).second.vtxPrev)
528                         mapWalletPrev[txWalletPrev.GetHash()] = &txWalletPrev;
529                 }
530                 else if (mapWalletPrev.count(hash))
531                 {
532                     tx = *mapWalletPrev[hash];
533                 }
534                 else if (!fClient && txdb.ReadDiskTx(hash, tx))
535                 {
536                     ;
537                 }
538                 else
539                 {
540                     printf("ERROR: AddSupportingTransactions() : unsupported transaction\n");
541                     continue;
542                 }
543
544                 int nDepth = tx.SetMerkleBranch();
545                 vtxPrev.push_back(tx);
546
547                 if (nDepth < COPY_DEPTH)
548                     BOOST_FOREACH(const CTxIn& txin, tx.vin)
549                         vWorkQueue.push_back(txin.prevout.hash);
550             }
551         }
552     }
553
554     reverse(vtxPrev.begin(), vtxPrev.end());
555 }
556
557 bool CWalletTx::WriteToDisk()
558 {
559     return CWalletDB(pwallet->strWalletFile).WriteTx(GetHash(), *this);
560 }
561
562 int CWallet::ScanForWalletTransactions(CBlockIndex* pindexStart, bool fUpdate)
563 {
564     int ret = 0;
565
566     CBlockIndex* pindex = pindexStart;
567     CRITICAL_BLOCK(cs_wallet)
568     {
569         while (pindex)
570         {
571             CBlock block;
572             block.ReadFromDisk(pindex, true);
573             BOOST_FOREACH(CTransaction& tx, block.vtx)
574             {
575                 if (AddToWalletIfInvolvingMe(tx, &block, fUpdate))
576                     ret++;
577             }
578             pindex = pindex->pnext;
579         }
580     }
581     return ret;
582 }
583
584 void CWallet::ReacceptWalletTransactions()
585 {
586     CTxDB txdb("r");
587     bool fRepeat = true;
588     while (fRepeat) CRITICAL_BLOCK(cs_wallet)
589     {
590         fRepeat = false;
591         vector<CDiskTxPos> vMissingTx;
592         BOOST_FOREACH(PAIRTYPE(const uint256, CWalletTx)& item, mapWallet)
593         {
594             CWalletTx& wtx = item.second;
595             if (wtx.IsCoinBase() && wtx.IsSpent(0))
596                 continue;
597
598             CTxIndex txindex;
599             bool fUpdated = false;
600             if (txdb.ReadTxIndex(wtx.GetHash(), txindex))
601             {
602                 // Update fSpent if a tx got spent somewhere else by a copy of wallet.dat
603                 if (txindex.vSpent.size() != wtx.vout.size())
604                 {
605                     printf("ERROR: ReacceptWalletTransactions() : txindex.vSpent.size() %d != wtx.vout.size() %d\n", txindex.vSpent.size(), wtx.vout.size());
606                     continue;
607                 }
608                 for (int i = 0; i < txindex.vSpent.size(); i++)
609                 {
610                     if (wtx.IsSpent(i))
611                         continue;
612                     if (!txindex.vSpent[i].IsNull() && IsMine(wtx.vout[i]))
613                     {
614                         wtx.MarkSpent(i);
615                         fUpdated = true;
616                         vMissingTx.push_back(txindex.vSpent[i]);
617                     }
618                 }
619                 if (fUpdated)
620                 {
621                     printf("ReacceptWalletTransactions found spent coin %sbc %s\n", FormatMoney(wtx.GetCredit()).c_str(), wtx.GetHash().ToString().c_str());
622                     wtx.MarkDirty();
623                     wtx.WriteToDisk();
624                 }
625             }
626             else
627             {
628                 // Reaccept any txes of ours that aren't already in a block
629                 if (!wtx.IsCoinBase())
630                     wtx.AcceptWalletTransaction(txdb, false);
631             }
632         }
633         if (!vMissingTx.empty())
634         {
635             // TODO: optimize this to scan just part of the block chain?
636             if (ScanForWalletTransactions(pindexGenesisBlock))
637                 fRepeat = true;  // Found missing transactions: re-do Reaccept.
638         }
639     }
640 }
641
642 void CWalletTx::RelayWalletTransaction(CTxDB& txdb)
643 {
644     BOOST_FOREACH(const CMerkleTx& tx, vtxPrev)
645     {
646         if (!tx.IsCoinBase())
647         {
648             uint256 hash = tx.GetHash();
649             if (!txdb.ContainsTx(hash))
650                 RelayMessage(CInv(MSG_TX, hash), (CTransaction)tx);
651         }
652     }
653     if (!IsCoinBase())
654     {
655         uint256 hash = GetHash();
656         if (!txdb.ContainsTx(hash))
657         {
658             printf("Relaying wtx %s\n", hash.ToString().substr(0,10).c_str());
659             RelayMessage(CInv(MSG_TX, hash), (CTransaction)*this);
660         }
661     }
662 }
663
664 void CWalletTx::RelayWalletTransaction()
665 {
666    CTxDB txdb("r");
667    RelayWalletTransaction(txdb);
668 }
669
670 void CWallet::ResendWalletTransactions()
671 {
672     // Do this infrequently and randomly to avoid giving away
673     // that these are our transactions.
674     static int64 nNextTime;
675     if (GetTime() < nNextTime)
676         return;
677     bool fFirst = (nNextTime == 0);
678     nNextTime = GetTime() + GetRand(30 * 60);
679     if (fFirst)
680         return;
681
682     // Only do it if there's been a new block since last time
683     static int64 nLastTime;
684     if (nTimeBestReceived < nLastTime)
685         return;
686     nLastTime = GetTime();
687
688     // Rebroadcast any of our txes that aren't in a block yet
689     printf("ResendWalletTransactions()\n");
690     CTxDB txdb("r");
691     CRITICAL_BLOCK(cs_wallet)
692     {
693         // Sort them in chronological order
694         multimap<unsigned int, CWalletTx*> mapSorted;
695         BOOST_FOREACH(PAIRTYPE(const uint256, CWalletTx)& item, mapWallet)
696         {
697             CWalletTx& wtx = item.second;
698             // Don't rebroadcast until it's had plenty of time that
699             // it should have gotten in already by now.
700             if (nTimeBestReceived - (int64)wtx.nTimeReceived > 5 * 60)
701                 mapSorted.insert(make_pair(wtx.nTimeReceived, &wtx));
702         }
703         BOOST_FOREACH(PAIRTYPE(const unsigned int, CWalletTx*)& item, mapSorted)
704         {
705             CWalletTx& wtx = *item.second;
706             wtx.RelayWalletTransaction(txdb);
707         }
708     }
709 }
710
711
712
713
714
715
716 //////////////////////////////////////////////////////////////////////////////
717 //
718 // Actions
719 //
720
721
722 int64 CWallet::GetBalance() const
723 {
724     int64 nTotal = 0;
725     CRITICAL_BLOCK(cs_wallet)
726     {
727         for (map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
728         {
729             const CWalletTx* pcoin = &(*it).second;
730             if (!pcoin->IsFinal() || !pcoin->IsConfirmed())
731                 continue;
732             nTotal += pcoin->GetAvailableCredit();
733         }
734     }
735
736     return nTotal;
737 }
738
739
740 bool CWallet::SelectCoinsMinConf(int64 nTargetValue, int nConfMine, int nConfTheirs, set<pair<const CWalletTx*,unsigned int> >& setCoinsRet, int64& nValueRet) const
741 {
742     setCoinsRet.clear();
743     nValueRet = 0;
744
745     // List of values less than target
746     pair<int64, pair<const CWalletTx*,unsigned int> > coinLowestLarger;
747     coinLowestLarger.first = INT64_MAX;
748     coinLowestLarger.second.first = NULL;
749     vector<pair<int64, pair<const CWalletTx*,unsigned int> > > vValue;
750     int64 nTotalLower = 0;
751
752     CRITICAL_BLOCK(cs_wallet)
753     {
754        vector<const CWalletTx*> vCoins;
755        vCoins.reserve(mapWallet.size());
756        for (map<uint256, CWalletTx>::const_iterator it = mapWallet.begin(); it != mapWallet.end(); ++it)
757            vCoins.push_back(&(*it).second);
758        random_shuffle(vCoins.begin(), vCoins.end(), GetRandInt);
759
760        BOOST_FOREACH(const CWalletTx* pcoin, vCoins)
761        {
762             if (!pcoin->IsFinal() || !pcoin->IsConfirmed())
763                 continue;
764
765             if (pcoin->IsCoinBase() && pcoin->GetBlocksToMaturity() > 0)
766                 continue;
767
768             int nDepth = pcoin->GetDepthInMainChain();
769             if (nDepth < (pcoin->IsFromMe() ? nConfMine : nConfTheirs))
770                 continue;
771
772             for (int i = 0; i < pcoin->vout.size(); i++)
773             {
774                 if (pcoin->IsSpent(i) || !IsMine(pcoin->vout[i]))
775                     continue;
776
777                 int64 n = pcoin->vout[i].nValue;
778
779                 if (n <= 0)
780                     continue;
781
782                 pair<int64,pair<const CWalletTx*,unsigned int> > coin = make_pair(n,make_pair(pcoin,i));
783
784                 if (n == nTargetValue)
785                 {
786                     setCoinsRet.insert(coin.second);
787                     nValueRet += coin.first;
788                     return true;
789                 }
790                 else if (n < nTargetValue + CENT)
791                 {
792                     vValue.push_back(coin);
793                     nTotalLower += n;
794                 }
795                 else if (n < coinLowestLarger.first)
796                 {
797                     coinLowestLarger = coin;
798                 }
799             }
800         }
801     }
802
803     if (nTotalLower == nTargetValue || nTotalLower == nTargetValue + CENT)
804     {
805         for (int i = 0; i < vValue.size(); ++i)
806         {
807             setCoinsRet.insert(vValue[i].second);
808             nValueRet += vValue[i].first;
809         }
810         return true;
811     }
812
813     if (nTotalLower < nTargetValue + (coinLowestLarger.second.first ? CENT : 0))
814     {
815         if (coinLowestLarger.second.first == NULL)
816             return false;
817         setCoinsRet.insert(coinLowestLarger.second);
818         nValueRet += coinLowestLarger.first;
819         return true;
820     }
821
822     if (nTotalLower >= nTargetValue + CENT)
823         nTargetValue += CENT;
824
825     // Solve subset sum by stochastic approximation
826     sort(vValue.rbegin(), vValue.rend());
827     vector<char> vfIncluded;
828     vector<char> vfBest(vValue.size(), true);
829     int64 nBest = nTotalLower;
830
831     for (int nRep = 0; nRep < 1000 && nBest != nTargetValue; nRep++)
832     {
833         vfIncluded.assign(vValue.size(), false);
834         int64 nTotal = 0;
835         bool fReachedTarget = false;
836         for (int nPass = 0; nPass < 2 && !fReachedTarget; nPass++)
837         {
838             for (int i = 0; i < vValue.size(); i++)
839             {
840                 if (nPass == 0 ? rand() % 2 : !vfIncluded[i])
841                 {
842                     nTotal += vValue[i].first;
843                     vfIncluded[i] = true;
844                     if (nTotal >= nTargetValue)
845                     {
846                         fReachedTarget = true;
847                         if (nTotal < nBest)
848                         {
849                             nBest = nTotal;
850                             vfBest = vfIncluded;
851                         }
852                         nTotal -= vValue[i].first;
853                         vfIncluded[i] = false;
854                     }
855                 }
856             }
857         }
858     }
859
860     // If the next larger is still closer, return it
861     if (coinLowestLarger.second.first && coinLowestLarger.first - nTargetValue <= nBest - nTargetValue)
862     {
863         setCoinsRet.insert(coinLowestLarger.second);
864         nValueRet += coinLowestLarger.first;
865     }
866     else {
867         for (int i = 0; i < vValue.size(); i++)
868             if (vfBest[i])
869             {
870                 setCoinsRet.insert(vValue[i].second);
871                 nValueRet += vValue[i].first;
872             }
873
874         //// debug print
875         printf("SelectCoins() best subset: ");
876         for (int i = 0; i < vValue.size(); i++)
877             if (vfBest[i])
878                 printf("%s ", FormatMoney(vValue[i].first).c_str());
879         printf("total %s\n", FormatMoney(nBest).c_str());
880     }
881
882     return true;
883 }
884
885 bool CWallet::SelectCoins(int64 nTargetValue, set<pair<const CWalletTx*,unsigned int> >& setCoinsRet, int64& nValueRet) const
886 {
887     return (SelectCoinsMinConf(nTargetValue, 1, 6, setCoinsRet, nValueRet) ||
888             SelectCoinsMinConf(nTargetValue, 1, 1, setCoinsRet, nValueRet) ||
889             SelectCoinsMinConf(nTargetValue, 0, 1, setCoinsRet, nValueRet));
890 }
891
892
893
894
895 bool CWallet::CreateTransaction(const vector<pair<CScript, int64> >& vecSend, CWalletTx& wtxNew, CReserveKey& reservekey, int64& nFeeRet)
896 {
897     int64 nValue = 0;
898     BOOST_FOREACH (const PAIRTYPE(CScript, int64)& s, vecSend)
899     {
900         if (nValue < 0)
901             return false;
902         nValue += s.second;
903     }
904     if (vecSend.empty() || nValue < 0)
905         return false;
906
907     wtxNew.pwallet = this;
908
909     CRITICAL_BLOCK(cs_main)
910     CRITICAL_BLOCK(cs_wallet)
911     {
912         // txdb must be opened before the mapWallet lock
913         CTxDB txdb("r");
914         {
915             nFeeRet = nTransactionFee;
916             loop
917             {
918                 wtxNew.vin.clear();
919                 wtxNew.vout.clear();
920                 wtxNew.fFromMe = true;
921
922                 int64 nTotalValue = nValue + nFeeRet;
923                 double dPriority = 0;
924                 // vouts to the payees
925                 BOOST_FOREACH (const PAIRTYPE(CScript, int64)& s, vecSend)
926                     wtxNew.vout.push_back(CTxOut(s.second, s.first));
927
928                 // Choose coins to use
929                 set<pair<const CWalletTx*,unsigned int> > setCoins;
930                 int64 nValueIn = 0;
931                 if (!SelectCoins(nTotalValue, setCoins, nValueIn))
932                     return false;
933                 BOOST_FOREACH(PAIRTYPE(const CWalletTx*, unsigned int) pcoin, setCoins)
934                 {
935                     int64 nCredit = pcoin.first->vout[pcoin.second].nValue;
936                     dPriority += (double)nCredit * pcoin.first->GetDepthInMainChain();
937                 }
938
939                 int64 nChange = nValueIn - nValue - nFeeRet;
940                 // if sub-cent change is required, the fee must be raised to at least MIN_TX_FEE
941                 // or until nChange becomes zero
942                 if (nFeeRet < MIN_TX_FEE && nChange > 0 && nChange < CENT)
943                 {
944                     int64 nMoveToFee = min(nChange, MIN_TX_FEE - nFeeRet);
945                     nChange -= nMoveToFee;
946                     nFeeRet += nMoveToFee;
947                 }
948
949                 if (nChange > 0)
950                 {
951                     // Note: We use a new key here to keep it from being obvious which side is the change.
952                     //  The drawback is that by not reusing a previous key, the change may be lost if a
953                     //  backup is restored, if the backup doesn't have the new private key for the change.
954                     //  If we reused the old key, it would be possible to add code to look for and
955                     //  rediscover unknown transactions that were written with keys of ours to recover
956                     //  post-backup change.
957
958                     // Reserve a new key pair from key pool
959                     vector<unsigned char> vchPubKey = reservekey.GetReservedKey();
960                     // assert(mapKeys.count(vchPubKey));
961
962                     // Fill a vout to ourself, using same address type as the payment
963                     CScript scriptChange;
964                     if (vecSend[0].first.GetBitcoinAddress().IsValid())
965                         scriptChange.SetBitcoinAddress(vchPubKey);
966                     else
967                         scriptChange << vchPubKey << OP_CHECKSIG;
968
969                     // Insert change txn at random position:
970                     vector<CTxOut>::iterator position = wtxNew.vout.begin()+GetRandInt(wtxNew.vout.size());
971                     wtxNew.vout.insert(position, CTxOut(nChange, scriptChange));
972                 }
973                 else
974                     reservekey.ReturnKey();
975
976                 // Fill vin
977                 BOOST_FOREACH(const PAIRTYPE(const CWalletTx*,unsigned int)& coin, setCoins)
978                     wtxNew.vin.push_back(CTxIn(coin.first->GetHash(),coin.second));
979
980                 // Sign
981                 int nIn = 0;
982                 BOOST_FOREACH(const PAIRTYPE(const CWalletTx*,unsigned int)& coin, setCoins)
983                     if (!SignSignature(*this, *coin.first, wtxNew, nIn++))
984                         return false;
985
986                 // Limit size
987                 unsigned int nBytes = ::GetSerializeSize(*(CTransaction*)&wtxNew, SER_NETWORK);
988                 if (nBytes >= MAX_BLOCK_SIZE_GEN/5)
989                     return false;
990                 dPriority /= nBytes;
991
992                 // Check that enough fee is included
993                 int64 nPayFee = nTransactionFee * (1 + (int64)nBytes / 1000);
994                 bool fAllowFree = CTransaction::AllowFree(dPriority);
995                 int64 nMinFee = wtxNew.GetMinFee(1, fAllowFree);
996                 if (nFeeRet < max(nPayFee, nMinFee))
997                 {
998                     nFeeRet = max(nPayFee, nMinFee);
999                     continue;
1000                 }
1001
1002                 // Fill vtxPrev by copying from previous transactions vtxPrev
1003                 wtxNew.AddSupportingTransactions(txdb);
1004                 wtxNew.fTimeReceivedIsTxTime = true;
1005
1006                 break;
1007             }
1008         }
1009     }
1010     return true;
1011 }
1012
1013 bool CWallet::CreateTransaction(CScript scriptPubKey, int64 nValue, CWalletTx& wtxNew, CReserveKey& reservekey, int64& nFeeRet)
1014 {
1015     vector< pair<CScript, int64> > vecSend;
1016     vecSend.push_back(make_pair(scriptPubKey, nValue));
1017     return CreateTransaction(vecSend, wtxNew, reservekey, nFeeRet);
1018 }
1019
1020 // Call after CreateTransaction unless you want to abort
1021 bool CWallet::CommitTransaction(CWalletTx& wtxNew, CReserveKey& reservekey)
1022 {
1023     CRITICAL_BLOCK(cs_main)
1024     CRITICAL_BLOCK(cs_wallet)
1025     {
1026         printf("CommitTransaction:\n%s", wtxNew.ToString().c_str());
1027         {
1028             // This is only to keep the database open to defeat the auto-flush for the
1029             // duration of this scope.  This is the only place where this optimization
1030             // maybe makes sense; please don't do it anywhere else.
1031             CWalletDB* pwalletdb = fFileBacked ? new CWalletDB(strWalletFile,"r") : NULL;
1032
1033             // Take key pair from key pool so it won't be used again
1034             reservekey.KeepKey();
1035
1036             // Add tx to wallet, because if it has change it's also ours,
1037             // otherwise just for transaction history.
1038             AddToWallet(wtxNew);
1039
1040             // Mark old coins as spent
1041             set<CWalletTx*> setCoins;
1042             BOOST_FOREACH(const CTxIn& txin, wtxNew.vin)
1043             {
1044                 CWalletTx &coin = mapWallet[txin.prevout.hash];
1045                 coin.pwallet = this;
1046                 coin.MarkSpent(txin.prevout.n);
1047                 coin.WriteToDisk();
1048                 vWalletUpdated.push_back(coin.GetHash());
1049             }
1050
1051             if (fFileBacked)
1052                 delete pwalletdb;
1053         }
1054
1055         // Track how many getdata requests our transaction gets
1056         mapRequestCount[wtxNew.GetHash()] = 0;
1057
1058         // Broadcast
1059         if (!wtxNew.AcceptToMemoryPool())
1060         {
1061             // This must not fail. The transaction has already been signed and recorded.
1062             printf("CommitTransaction() : Error: Transaction not valid");
1063             return false;
1064         }
1065         wtxNew.RelayWalletTransaction();
1066     }
1067     MainFrameRepaint();
1068     return true;
1069 }
1070
1071
1072
1073
1074 string CWallet::SendMoney(CScript scriptPubKey, int64 nValue, CWalletTx& wtxNew, bool fAskFee)
1075 {
1076     CReserveKey reservekey(this);
1077     int64 nFeeRequired;
1078
1079     if (IsLocked())
1080     {
1081         string strError = _("Error: Wallet locked, unable to create transaction  ");
1082         printf("SendMoney() : %s", strError.c_str());
1083         return strError;
1084     }
1085     if (!CreateTransaction(scriptPubKey, nValue, wtxNew, reservekey, nFeeRequired))
1086     {
1087         string strError;
1088         if (nValue + nFeeRequired > GetBalance())
1089             strError = strprintf(_("Error: This transaction requires a transaction fee of at least %s because of its amount, complexity, or use of recently received funds  "), FormatMoney(nFeeRequired).c_str());
1090         else
1091             strError = _("Error: Transaction creation failed  ");
1092         printf("SendMoney() : %s", strError.c_str());
1093         return strError;
1094     }
1095
1096     if (fAskFee && !ThreadSafeAskFee(nFeeRequired, _("Sending..."), NULL))
1097         return "ABORTED";
1098
1099     if (!CommitTransaction(wtxNew, reservekey))
1100         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.");
1101
1102     MainFrameRepaint();
1103     return "";
1104 }
1105
1106
1107
1108 string CWallet::SendMoneyToBitcoinAddress(const CBitcoinAddress& address, int64 nValue, CWalletTx& wtxNew, bool fAskFee)
1109 {
1110     // Check amount
1111     if (nValue <= 0)
1112         return _("Invalid amount");
1113     if (nValue + nTransactionFee > GetBalance())
1114         return _("Insufficient funds");
1115
1116     // Parse bitcoin address
1117     CScript scriptPubKey;
1118     scriptPubKey.SetBitcoinAddress(address);
1119
1120     return SendMoney(scriptPubKey, nValue, wtxNew, fAskFee);
1121 }
1122
1123
1124
1125
1126 int CWallet::LoadWallet(bool& fFirstRunRet)
1127 {
1128     if (!fFileBacked)
1129         return false;
1130     fFirstRunRet = false;
1131     int nLoadWalletRet = CWalletDB(strWalletFile,"cr+").LoadWallet(this);
1132     if (nLoadWalletRet == DB_NEED_REWRITE)
1133     {
1134         if (CDB::Rewrite(strWalletFile, "\x04pool"))
1135         {
1136             setKeyPool.clear();
1137             // Note: can't top-up keypool here, because wallet is locked.
1138             // User will be prompted to unlock wallet the next operation
1139             // the requires a new key.
1140         }
1141         nLoadWalletRet = DB_NEED_REWRITE;
1142     }
1143
1144     if (nLoadWalletRet != DB_LOAD_OK)
1145         return nLoadWalletRet;
1146     fFirstRunRet = vchDefaultKey.empty();
1147
1148     if (!HaveKey(Hash160(vchDefaultKey)))
1149     {
1150         // Create new keyUser and set as default key
1151         RandAddSeedPerfmon();
1152
1153         std::vector<unsigned char> newDefaultKey;
1154         if (!GetKeyFromPool(newDefaultKey, false))
1155             return DB_LOAD_FAIL;
1156         SetDefaultKey(newDefaultKey);
1157         if (!SetAddressBookName(CBitcoinAddress(vchDefaultKey), ""))
1158             return DB_LOAD_FAIL;
1159     }
1160
1161     CreateThread(ThreadFlushWalletDB, &strWalletFile);
1162     return DB_LOAD_OK;
1163 }
1164
1165
1166 bool CWallet::SetAddressBookName(const CBitcoinAddress& address, const string& strName)
1167 {
1168     mapAddressBook[address] = strName;
1169     if (!fFileBacked)
1170         return false;
1171     return CWalletDB(strWalletFile).WriteName(address.ToString(), strName);
1172 }
1173
1174 bool CWallet::DelAddressBookName(const CBitcoinAddress& address)
1175 {
1176     mapAddressBook.erase(address);
1177     if (!fFileBacked)
1178         return false;
1179     return CWalletDB(strWalletFile).EraseName(address.ToString());
1180 }
1181
1182
1183 void CWallet::PrintWallet(const CBlock& block)
1184 {
1185     CRITICAL_BLOCK(cs_wallet)
1186     {
1187         if (mapWallet.count(block.vtx[0].GetHash()))
1188         {
1189             CWalletTx& wtx = mapWallet[block.vtx[0].GetHash()];
1190             printf("    mine:  %d  %d  %d", wtx.GetDepthInMainChain(), wtx.GetBlocksToMaturity(), wtx.GetCredit());
1191         }
1192     }
1193     printf("\n");
1194 }
1195
1196 bool CWallet::GetTransaction(const uint256 &hashTx, CWalletTx& wtx)
1197 {
1198     CRITICAL_BLOCK(cs_wallet)
1199     {
1200         map<uint256, CWalletTx>::iterator mi = mapWallet.find(hashTx);
1201         if (mi != mapWallet.end())
1202         {
1203             wtx = (*mi).second;
1204             return true;
1205         }
1206     }
1207     return false;
1208 }
1209
1210 bool CWallet::SetDefaultKey(const std::vector<unsigned char> &vchPubKey)
1211 {
1212     if (fFileBacked)
1213     {
1214         if (!CWalletDB(strWalletFile).WriteDefaultKey(vchPubKey))
1215             return false;
1216     }
1217     vchDefaultKey = vchPubKey;
1218     return true;
1219 }
1220
1221 bool GetWalletFile(CWallet* pwallet, string &strWalletFileOut)
1222 {
1223     if (!pwallet->fFileBacked)
1224         return false;
1225     strWalletFileOut = pwallet->strWalletFile;
1226     return true;
1227 }
1228
1229 //
1230 // Mark old keypool keys as used,
1231 // and generate all new keys
1232 //
1233 bool CWallet::NewKeyPool()
1234 {
1235     CRITICAL_BLOCK(cs_wallet)
1236     {
1237         CWalletDB walletdb(strWalletFile);
1238         BOOST_FOREACH(int64 nIndex, setKeyPool)
1239             walletdb.ErasePool(nIndex);
1240         setKeyPool.clear();
1241
1242         if (IsLocked())
1243             return false;
1244
1245         int64 nKeys = max(GetArg("-keypool", 100), (int64)0);
1246         for (int i = 0; i < nKeys; i++)
1247         {
1248             int64 nIndex = i+1;
1249             walletdb.WritePool(nIndex, CKeyPool(GenerateNewKey()));
1250             setKeyPool.insert(nIndex);
1251         }
1252         printf("CWallet::NewKeyPool wrote %"PRI64d" new keys\n", nKeys);
1253     }
1254     return true;
1255 }
1256
1257 bool CWallet::TopUpKeyPool()
1258 {
1259     CRITICAL_BLOCK(cs_wallet)
1260     {
1261         if (IsLocked())
1262             return false;
1263
1264         CWalletDB walletdb(strWalletFile);
1265
1266         // Top up key pool
1267         int64 nTargetSize = max(GetArg("-keypool", 100), (int64)0);
1268         while (setKeyPool.size() < nTargetSize+1)
1269         {
1270             int64 nEnd = 1;
1271             if (!setKeyPool.empty())
1272                 nEnd = *(--setKeyPool.end()) + 1;
1273             if (!walletdb.WritePool(nEnd, CKeyPool(GenerateNewKey())))
1274                 throw runtime_error("TopUpKeyPool() : writing generated key failed");
1275             setKeyPool.insert(nEnd);
1276             printf("keypool added key %"PRI64d", size=%d\n", nEnd, setKeyPool.size());
1277         }
1278     }
1279     return true;
1280 }
1281
1282 void CWallet::ReserveKeyFromKeyPool(int64& nIndex, CKeyPool& keypool)
1283 {
1284     nIndex = -1;
1285     keypool.vchPubKey.clear();
1286     CRITICAL_BLOCK(cs_wallet)
1287     {
1288         if (!IsLocked())
1289             TopUpKeyPool();
1290
1291         // Get the oldest key
1292         if(setKeyPool.empty())
1293             return;
1294
1295         CWalletDB walletdb(strWalletFile);
1296
1297         nIndex = *(setKeyPool.begin());
1298         setKeyPool.erase(setKeyPool.begin());
1299         if (!walletdb.ReadPool(nIndex, keypool))
1300             throw runtime_error("ReserveKeyFromKeyPool() : read failed");
1301         if (!HaveKey(Hash160(keypool.vchPubKey)))
1302             throw runtime_error("ReserveKeyFromKeyPool() : unknown key in key pool");
1303         assert(!keypool.vchPubKey.empty());
1304         printf("keypool reserve %"PRI64d"\n", nIndex);
1305     }
1306 }
1307
1308 void CWallet::KeepKey(int64 nIndex)
1309 {
1310     // Remove from key pool
1311     if (fFileBacked)
1312     {
1313         CWalletDB walletdb(strWalletFile);
1314         walletdb.ErasePool(nIndex);
1315     }
1316     printf("keypool keep %"PRI64d"\n", nIndex);
1317 }
1318
1319 void CWallet::ReturnKey(int64 nIndex)
1320 {
1321     // Return to key pool
1322     CRITICAL_BLOCK(cs_wallet)
1323         setKeyPool.insert(nIndex);
1324     printf("keypool return %"PRI64d"\n", nIndex);
1325 }
1326
1327 bool CWallet::GetKeyFromPool(vector<unsigned char>& result, bool fAllowReuse)
1328 {
1329     int64 nIndex = 0;
1330     CKeyPool keypool;
1331     CRITICAL_BLOCK(cs_wallet)
1332     {
1333         ReserveKeyFromKeyPool(nIndex, keypool);
1334         if (nIndex == -1)
1335         {
1336             if (fAllowReuse && !vchDefaultKey.empty())
1337             {
1338                 result = vchDefaultKey;
1339                 return true;
1340             }
1341             if (IsLocked()) return false;
1342             result = GenerateNewKey();
1343             return true;
1344         }
1345         KeepKey(nIndex);
1346         result = keypool.vchPubKey;
1347     }
1348     return true;
1349 }
1350
1351 int64 CWallet::GetOldestKeyPoolTime()
1352 {
1353     int64 nIndex = 0;
1354     CKeyPool keypool;
1355     ReserveKeyFromKeyPool(nIndex, keypool);
1356     if (nIndex == -1)
1357         return GetTime();
1358     ReturnKey(nIndex);
1359     return keypool.nTime;
1360 }
1361
1362 vector<unsigned char> CReserveKey::GetReservedKey()
1363 {
1364     if (nIndex == -1)
1365     {
1366         CKeyPool keypool;
1367         pwallet->ReserveKeyFromKeyPool(nIndex, keypool);
1368         if (nIndex != -1)
1369             vchPubKey = keypool.vchPubKey;
1370         else
1371         {
1372             printf("CReserveKey::GetReservedKey(): Warning: using default key instead of a new key, top up your keypool.");
1373             vchPubKey = pwallet->vchDefaultKey;
1374         }
1375     }
1376     assert(!vchPubKey.empty());
1377     return vchPubKey;
1378 }
1379
1380 void CReserveKey::KeepKey()
1381 {
1382     if (nIndex != -1)
1383         pwallet->KeepKey(nIndex);
1384     nIndex = -1;
1385     vchPubKey.clear();
1386 }
1387
1388 void CReserveKey::ReturnKey()
1389 {
1390     if (nIndex != -1)
1391         pwallet->ReturnKey(nIndex);
1392     nIndex = -1;
1393     vchPubKey.clear();
1394 }
1395