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