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.
9 #include <boost/filesystem.hpp>
10 #include <boost/filesystem/fstream.hpp>
13 using namespace boost;
16 unsigned int nWalletDBUpdated;
17 uint64 nAccountingEntryNumber = 0;
25 static CCriticalSection cs_db;
26 static bool fDbEnvInit = false;
28 static map<string, int> mapFileUseCount;
29 static map<string, Db*> mapDb;
49 CDB::CDB(const char* pszFile, const char* pszMode) : pdb(NULL)
55 fReadOnly = (!strchr(pszMode, '+') && !strchr(pszMode, 'w'));
56 bool fCreate = strchr(pszMode, 'c');
57 unsigned int nFlags = DB_THREAD;
67 string strDataDir = GetDataDir();
68 string strLogDir = strDataDir + "/database";
69 filesystem::create_directory(strLogDir.c_str());
70 string strErrorFile = strDataDir + "/db.log";
71 printf("dbenv.open strLogDir=%s strErrorFile=%s\n", strLogDir.c_str(), strErrorFile.c_str());
73 dbenv.set_lg_dir(strLogDir.c_str());
74 dbenv.set_lg_max(10000000);
75 dbenv.set_lk_max_locks(10000);
76 dbenv.set_lk_max_objects(10000);
77 dbenv.set_errfile(fopen(strErrorFile.c_str(), "a")); /// debug
78 dbenv.set_flags(DB_AUTO_COMMIT, 1);
79 ret = dbenv.open(strDataDir.c_str(),
89 throw runtime_error(strprintf("CDB() : error %d opening database environment", ret));
94 ++mapFileUseCount[strFile];
98 pdb = new Db(&dbenv, 0);
100 ret = pdb->open(NULL, // Txn pointer
102 "main", // Logical db name
103 DB_BTREE, // Database type
111 CRITICAL_BLOCK(cs_db)
112 --mapFileUseCount[strFile];
114 throw runtime_error(strprintf("CDB() : can't open database file %s, error %d", pszFile, ret));
117 if (fCreate && !Exists(string("version")))
119 bool fTmp = fReadOnly;
121 WriteVersion(VERSION);
125 mapDb[strFile] = pdb;
135 vTxn.front()->abort();
139 // Flush database activity from memory pool to disk log
140 unsigned int nMinutes = 0;
143 if (strFile == "addr.dat")
145 if (strFile == "blkindex.dat" && IsInitialBlockDownload() && nBestHeight % 500 != 0)
147 dbenv.txn_checkpoint(0, nMinutes, 0);
149 CRITICAL_BLOCK(cs_db)
150 --mapFileUseCount[strFile];
153 void static CloseDb(const string& strFile)
155 CRITICAL_BLOCK(cs_db)
157 if (mapDb[strFile] != NULL)
159 // Close the database handle
160 Db* pdb = mapDb[strFile];
163 mapDb[strFile] = NULL;
168 void DBFlush(bool fShutdown)
170 // Flush log data to the actual data file
171 // on all files that are not in use
172 printf("DBFlush(%s)%s\n", fShutdown ? "true" : "false", fDbEnvInit ? "" : " db not started");
175 CRITICAL_BLOCK(cs_db)
177 map<string, int>::iterator mi = mapFileUseCount.begin();
178 while (mi != mapFileUseCount.end())
180 string strFile = (*mi).first;
181 int nRefCount = (*mi).second;
182 printf("%s refcount=%d\n", strFile.c_str(), nRefCount);
185 // Move log data to the dat file
187 dbenv.txn_checkpoint(0, 0, 0);
188 printf("%s flush\n", strFile.c_str());
189 dbenv.lsn_reset(strFile.c_str(), 0);
190 mapFileUseCount.erase(mi++);
198 if (mapFileUseCount.empty())
199 dbenv.log_archive(&listp, DB_ARCH_REMOVE);
215 bool CTxDB::ReadTxIndex(uint256 hash, CTxIndex& txindex)
219 return Read(make_pair(string("tx"), hash), txindex);
222 bool CTxDB::UpdateTxIndex(uint256 hash, const CTxIndex& txindex)
225 return Write(make_pair(string("tx"), hash), txindex);
228 bool CTxDB::AddTxIndex(const CTransaction& tx, const CDiskTxPos& pos, int nHeight)
233 uint256 hash = tx.GetHash();
234 CTxIndex txindex(pos, tx.vout.size());
235 return Write(make_pair(string("tx"), hash), txindex);
238 bool CTxDB::EraseTxIndex(const CTransaction& tx)
241 uint256 hash = tx.GetHash();
243 return Erase(make_pair(string("tx"), hash));
246 bool CTxDB::ContainsTx(uint256 hash)
249 return Exists(make_pair(string("tx"), hash));
252 bool CTxDB::ReadOwnerTxes(uint160 hash160, int nMinHeight, vector<CTransaction>& vtx)
258 Dbc* pcursor = GetCursor();
262 unsigned int fFlags = DB_SET_RANGE;
267 if (fFlags == DB_SET_RANGE)
268 ssKey << string("owner") << hash160 << CDiskTxPos(0, 0, 0);
270 int ret = ReadAtCursor(pcursor, ssKey, ssValue, fFlags);
272 if (ret == DB_NOTFOUND)
284 ssKey >> strType >> hashItem >> pos;
286 ssValue >> nItemHeight;
289 if (strType != "owner" || hashItem != hash160)
291 if (nItemHeight >= nMinHeight)
293 vtx.resize(vtx.size()+1);
294 if (!vtx.back().ReadFromDisk(pos))
306 bool CTxDB::ReadDiskTx(uint256 hash, CTransaction& tx, CTxIndex& txindex)
310 if (!ReadTxIndex(hash, txindex))
312 return (tx.ReadFromDisk(txindex.pos));
315 bool CTxDB::ReadDiskTx(uint256 hash, CTransaction& tx)
318 return ReadDiskTx(hash, tx, txindex);
321 bool CTxDB::ReadDiskTx(COutPoint outpoint, CTransaction& tx, CTxIndex& txindex)
323 return ReadDiskTx(outpoint.hash, tx, txindex);
326 bool CTxDB::ReadDiskTx(COutPoint outpoint, CTransaction& tx)
329 return ReadDiskTx(outpoint.hash, tx, txindex);
332 bool CTxDB::WriteBlockIndex(const CDiskBlockIndex& blockindex)
334 return Write(make_pair(string("blockindex"), blockindex.GetBlockHash()), blockindex);
337 bool CTxDB::EraseBlockIndex(uint256 hash)
339 return Erase(make_pair(string("blockindex"), hash));
342 bool CTxDB::ReadHashBestChain(uint256& hashBestChain)
344 return Read(string("hashBestChain"), hashBestChain);
347 bool CTxDB::WriteHashBestChain(uint256 hashBestChain)
349 return Write(string("hashBestChain"), hashBestChain);
352 bool CTxDB::ReadBestInvalidWork(CBigNum& bnBestInvalidWork)
354 return Read(string("bnBestInvalidWork"), bnBestInvalidWork);
357 bool CTxDB::WriteBestInvalidWork(CBigNum bnBestInvalidWork)
359 return Write(string("bnBestInvalidWork"), bnBestInvalidWork);
362 CBlockIndex static * InsertBlockIndex(uint256 hash)
368 map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hash);
369 if (mi != mapBlockIndex.end())
373 CBlockIndex* pindexNew = new CBlockIndex();
375 throw runtime_error("LoadBlockIndex() : new CBlockIndex failed");
376 mi = mapBlockIndex.insert(make_pair(hash, pindexNew)).first;
377 pindexNew->phashBlock = &((*mi).first);
382 bool CTxDB::LoadBlockIndex()
384 // Get database cursor
385 Dbc* pcursor = GetCursor();
389 // Load mapBlockIndex
390 unsigned int fFlags = DB_SET_RANGE;
395 if (fFlags == DB_SET_RANGE)
396 ssKey << make_pair(string("blockindex"), uint256(0));
398 int ret = ReadAtCursor(pcursor, ssKey, ssValue, fFlags);
400 if (ret == DB_NOTFOUND)
408 if (strType == "blockindex")
410 CDiskBlockIndex diskindex;
411 ssValue >> diskindex;
413 // Construct block index object
414 CBlockIndex* pindexNew = InsertBlockIndex(diskindex.GetBlockHash());
415 pindexNew->pprev = InsertBlockIndex(diskindex.hashPrev);
416 pindexNew->pnext = InsertBlockIndex(diskindex.hashNext);
417 pindexNew->nFile = diskindex.nFile;
418 pindexNew->nBlockPos = diskindex.nBlockPos;
419 pindexNew->nHeight = diskindex.nHeight;
420 pindexNew->nVersion = diskindex.nVersion;
421 pindexNew->hashMerkleRoot = diskindex.hashMerkleRoot;
422 pindexNew->nTime = diskindex.nTime;
423 pindexNew->nBits = diskindex.nBits;
424 pindexNew->nNonce = diskindex.nNonce;
426 // Watch for genesis block
427 if (pindexGenesisBlock == NULL && diskindex.GetBlockHash() == hashGenesisBlock)
428 pindexGenesisBlock = pindexNew;
430 if (!pindexNew->CheckIndex())
431 return error("LoadBlockIndex() : CheckIndex failed at %d", pindexNew->nHeight);
440 // Calculate bnChainWork
441 vector<pair<int, CBlockIndex*> > vSortedByHeight;
442 vSortedByHeight.reserve(mapBlockIndex.size());
443 BOOST_FOREACH(const PAIRTYPE(uint256, CBlockIndex*)& item, mapBlockIndex)
445 CBlockIndex* pindex = item.second;
446 vSortedByHeight.push_back(make_pair(pindex->nHeight, pindex));
448 sort(vSortedByHeight.begin(), vSortedByHeight.end());
449 BOOST_FOREACH(const PAIRTYPE(int, CBlockIndex*)& item, vSortedByHeight)
451 CBlockIndex* pindex = item.second;
452 pindex->bnChainWork = (pindex->pprev ? pindex->pprev->bnChainWork : 0) + pindex->GetBlockWork();
455 // Load hashBestChain pointer to end of best chain
456 if (!ReadHashBestChain(hashBestChain))
458 if (pindexGenesisBlock == NULL)
460 return error("CTxDB::LoadBlockIndex() : hashBestChain not loaded");
462 if (!mapBlockIndex.count(hashBestChain))
463 return error("CTxDB::LoadBlockIndex() : hashBestChain not found in the block index");
464 pindexBest = mapBlockIndex[hashBestChain];
465 nBestHeight = pindexBest->nHeight;
466 bnBestChainWork = pindexBest->bnChainWork;
467 printf("LoadBlockIndex(): hashBestChain=%s height=%d\n", hashBestChain.ToString().substr(0,20).c_str(), nBestHeight);
469 // Load bnBestInvalidWork, OK if it doesn't exist
470 ReadBestInvalidWork(bnBestInvalidWork);
472 // Verify blocks in the best chain
473 CBlockIndex* pindexFork = NULL;
474 for (CBlockIndex* pindex = pindexBest; pindex && pindex->pprev; pindex = pindex->pprev)
476 if (pindex->nHeight < nBestHeight-2500 && !mapArgs.count("-checkblocks"))
479 if (!block.ReadFromDisk(pindex))
480 return error("LoadBlockIndex() : block.ReadFromDisk failed");
481 if (!block.CheckBlock())
483 printf("LoadBlockIndex() : *** found bad block at %d, hash=%s\n", pindex->nHeight, pindex->GetBlockHash().ToString().c_str());
484 pindexFork = pindex->pprev;
489 // Reorg back to the fork
490 printf("LoadBlockIndex() : *** moving best chain pointer back to block %d\n", pindexFork->nHeight);
492 if (!block.ReadFromDisk(pindexFork))
493 return error("LoadBlockIndex() : block.ReadFromDisk failed");
495 block.SetBestChain(txdb, pindexFork);
509 bool CAddrDB::WriteAddress(const CAddress& addr)
511 return Write(make_pair(string("addr"), addr.GetKey()), addr);
514 bool CAddrDB::EraseAddress(const CAddress& addr)
516 return Erase(make_pair(string("addr"), addr.GetKey()));
519 bool CAddrDB::LoadAddresses()
521 CRITICAL_BLOCK(cs_mapAddresses)
523 // Load user provided addresses
524 CAutoFile filein = fopen((GetDataDir() + "/addr.txt").c_str(), "rt");
530 while (fgets(psz, sizeof(psz), filein))
532 CAddress addr(psz, false, NODE_NETWORK);
533 addr.nTime = 0; // so it won't relay unless successfully connected
542 Dbc* pcursor = GetCursor();
551 int ret = ReadAtCursor(pcursor, ssKey, ssValue);
552 if (ret == DB_NOTFOUND)
560 if (strType == "addr")
564 mapAddresses.insert(make_pair(addr.GetKey(), addr));
569 printf("Loaded %d addresses\n", mapAddresses.size());
577 return CAddrDB("cr+").LoadAddresses();
587 bool CWalletDB::WriteName(const string& strAddress, const string& strName)
590 return Write(make_pair(string("name"), strAddress), strName);
593 bool CWalletDB::EraseName(const string& strAddress)
595 // This should only be used for sending addresses, never for receiving addresses,
596 // receiving addresses must always have an address book entry if they're not change return.
598 return Erase(make_pair(string("name"), strAddress));
601 bool CWalletDB::ReadAccount(const string& strAccount, CAccount& account)
604 return Read(make_pair(string("acc"), strAccount), account);
607 bool CWalletDB::WriteAccount(const string& strAccount, const CAccount& account)
609 return Write(make_pair(string("acc"), strAccount), account);
612 bool CWalletDB::WriteAccountingEntry(const CAccountingEntry& acentry)
614 return Write(boost::make_tuple(string("acentry"), acentry.strAccount, ++nAccountingEntryNumber), acentry);
617 int64 CWalletDB::GetAccountCreditDebit(const string& strAccount)
619 list<CAccountingEntry> entries;
620 ListAccountCreditDebit(strAccount, entries);
622 int64 nCreditDebit = 0;
623 BOOST_FOREACH (const CAccountingEntry& entry, entries)
624 nCreditDebit += entry.nCreditDebit;
629 void CWalletDB::ListAccountCreditDebit(const string& strAccount, list<CAccountingEntry>& entries)
631 bool fAllAccounts = (strAccount == "*");
633 Dbc* pcursor = GetCursor();
635 throw runtime_error("CWalletDB::ListAccountCreditDebit() : cannot create DB cursor");
636 unsigned int fFlags = DB_SET_RANGE;
641 if (fFlags == DB_SET_RANGE)
642 ssKey << boost::make_tuple(string("acentry"), (fAllAccounts? string("") : strAccount), uint64(0));
644 int ret = ReadAtCursor(pcursor, ssKey, ssValue, fFlags);
646 if (ret == DB_NOTFOUND)
651 throw runtime_error("CWalletDB::ListAccountCreditDebit() : error scanning DB");
657 if (strType != "acentry")
659 CAccountingEntry acentry;
660 ssKey >> acentry.strAccount;
661 if (!fAllAccounts && acentry.strAccount != strAccount)
665 entries.push_back(acentry);
672 int CWalletDB::LoadWallet(CWallet* pwallet)
674 pwallet->vchDefaultKey.clear();
675 int nFileVersion = 0;
676 vector<uint256> vWalletUpgrade;
680 // Tray icon sometimes disappears on 9.10 karmic koala 64-bit, leaving no way to access the program
681 fMinimizeToTray = false;
682 fMinimizeOnClose = false;
685 //// todo: shouldn't we catch exceptions and try to recover and continue?
686 CRITICAL_BLOCK(pwallet->cs_wallet)
689 Dbc* pcursor = GetCursor();
698 int ret = ReadAtCursor(pcursor, ssKey, ssValue);
699 if (ret == DB_NOTFOUND)
705 // Taking advantage of the fact that pair serialization
706 // is just the two items serialized one after the other
709 if (strType == "name")
713 ssValue >> pwallet->mapAddressBook[strAddress];
715 else if (strType == "tx")
719 CWalletTx& wtx = pwallet->mapWallet[hash];
721 wtx.pwallet = pwallet;
723 if (wtx.GetHash() != hash)
724 printf("Error in wallet.dat, hash mismatch\n");
726 // Undo serialize changes in 31600
727 if (31404 <= wtx.fTimeReceivedIsTxTime && wtx.fTimeReceivedIsTxTime <= 31703)
729 if (!ssValue.empty())
733 ssValue >> fTmp >> fUnused >> wtx.strFromAccount;
734 printf("LoadWallet() upgrading tx ver=%d %d '%s' %s\n", wtx.fTimeReceivedIsTxTime, fTmp, wtx.strFromAccount.c_str(), hash.ToString().c_str());
735 wtx.fTimeReceivedIsTxTime = fTmp;
739 printf("LoadWallet() repairing tx ver=%d %s\n", wtx.fTimeReceivedIsTxTime, hash.ToString().c_str());
740 wtx.fTimeReceivedIsTxTime = 0;
742 vWalletUpgrade.push_back(hash);
746 //printf("LoadWallet %s\n", wtx.GetHash().ToString().c_str());
747 //printf(" %12I64d %s %s %s\n",
748 // wtx.vout[0].nValue,
749 // DateTimeStrFormat("%x %H:%M:%S", wtx.GetBlockTime()).c_str(),
750 // wtx.hashBlock.ToString().substr(0,20).c_str(),
751 // wtx.mapValue["message"].c_str());
753 else if (strType == "acentry")
759 if (nNumber > nAccountingEntryNumber)
760 nAccountingEntryNumber = nNumber;
762 else if (strType == "key" || strType == "wkey")
764 vector<unsigned char> vchPubKey;
767 if (strType == "key")
771 key.SetPrivKey(pkey);
777 key.SetPrivKey(wkey.vchPrivKey);
779 if (!pwallet->LoadKey(key))
782 else if (strType == "mkey")
786 CMasterKey kMasterKey;
787 ssValue >> kMasterKey;
788 if(pwallet->mapMasterKeys.count(nID) != 0)
790 pwallet->mapMasterKeys[nID] = kMasterKey;
791 if (pwallet->nMasterKeyMaxID < nID)
792 pwallet->nMasterKeyMaxID = nID;
794 else if (strType == "ckey")
796 vector<unsigned char> vchPubKey;
798 vector<unsigned char> vchPrivKey;
799 ssValue >> vchPrivKey;
800 if (!pwallet->LoadCryptedKey(vchPubKey, vchPrivKey))
803 else if (strType == "defaultkey")
805 ssValue >> pwallet->vchDefaultKey;
807 else if (strType == "pool")
811 pwallet->setKeyPool.insert(nIndex);
813 else if (strType == "version")
815 ssValue >> nFileVersion;
816 if (nFileVersion == 10300)
819 else if (strType == "setting")
826 if (strKey == "fGenerateBitcoins") ssValue >> fGenerateBitcoins;
828 if (strKey == "nTransactionFee") ssValue >> nTransactionFee;
829 if (strKey == "fLimitProcessors") ssValue >> fLimitProcessors;
830 if (strKey == "nLimitProcessors") ssValue >> nLimitProcessors;
831 if (strKey == "fMinimizeToTray") ssValue >> fMinimizeToTray;
832 if (strKey == "fMinimizeOnClose") ssValue >> fMinimizeOnClose;
833 if (strKey == "fUseProxy") ssValue >> fUseProxy;
834 if (strKey == "addrProxy") ssValue >> addrProxy;
835 if (fHaveUPnP && strKey == "fUseUPnP") ssValue >> fUseUPnP;
837 else if (strType == "minversion")
840 ssValue >> nMinVersion;
841 if (nMinVersion > VERSION)
848 BOOST_FOREACH(uint256 hash, vWalletUpgrade)
849 WriteTx(hash, pwallet->mapWallet[hash]);
851 printf("nFileVersion = %d\n", nFileVersion);
852 printf("fGenerateBitcoins = %d\n", fGenerateBitcoins);
853 printf("nTransactionFee = %"PRI64d"\n", nTransactionFee);
854 printf("fMinimizeToTray = %d\n", fMinimizeToTray);
855 printf("fMinimizeOnClose = %d\n", fMinimizeOnClose);
856 printf("fUseProxy = %d\n", fUseProxy);
857 printf("addrProxy = %s\n", addrProxy.ToString().c_str());
859 printf("fUseUPnP = %d\n", fUseUPnP);
863 if (nFileVersion < VERSION)
865 // Get rid of old debug.log file in current directory
866 if (nFileVersion <= 105 && !pszSetDataDir[0])
869 WriteVersion(VERSION);
876 void ThreadFlushWalletDB(void* parg)
878 const string& strFile = ((const string*)parg)[0];
879 static bool fOneThread;
883 if (mapArgs.count("-noflushwallet"))
886 unsigned int nLastSeen = nWalletDBUpdated;
887 unsigned int nLastFlushed = nWalletDBUpdated;
888 int64 nLastWalletUpdate = GetTime();
893 if (nLastSeen != nWalletDBUpdated)
895 nLastSeen = nWalletDBUpdated;
896 nLastWalletUpdate = GetTime();
899 if (nLastFlushed != nWalletDBUpdated && GetTime() - nLastWalletUpdate >= 2)
901 TRY_CRITICAL_BLOCK(cs_db)
903 // Don't do this if any databases are in use
905 map<string, int>::iterator mi = mapFileUseCount.begin();
906 while (mi != mapFileUseCount.end())
908 nRefCount += (*mi).second;
912 if (nRefCount == 0 && !fShutdown)
914 map<string, int>::iterator mi = mapFileUseCount.find(strFile);
915 if (mi != mapFileUseCount.end())
917 printf("%s ", DateTimeStrFormat("%x %H:%M:%S", GetTime()).c_str());
918 printf("Flushing wallet.dat\n");
919 nLastFlushed = nWalletDBUpdated;
920 int64 nStart = GetTimeMillis();
922 // Flush wallet.dat so it's self contained
924 dbenv.txn_checkpoint(0, 0, 0);
925 dbenv.lsn_reset(strFile.c_str(), 0);
927 mapFileUseCount.erase(mi++);
928 printf("Flushed wallet.dat %"PRI64d"ms\n", GetTimeMillis() - nStart);
936 bool BackupWallet(const CWallet& wallet, const string& strDest)
938 if (!wallet.fFileBacked)
942 CRITICAL_BLOCK(cs_db)
944 if (!mapFileUseCount.count(wallet.strWalletFile) || mapFileUseCount[wallet.strWalletFile] == 0)
946 // Flush log data to the dat file
947 CloseDb(wallet.strWalletFile);
948 dbenv.txn_checkpoint(0, 0, 0);
949 dbenv.lsn_reset(wallet.strWalletFile.c_str(), 0);
950 mapFileUseCount.erase(wallet.strWalletFile);
953 filesystem::path pathSrc(GetDataDir() + "/" + wallet.strWalletFile);
954 filesystem::path pathDest(strDest);
955 if (filesystem::is_directory(pathDest))
956 pathDest = pathDest / wallet.strWalletFile;
957 #if BOOST_VERSION >= 104000
958 filesystem::copy_file(pathSrc, pathDest, filesystem::copy_option::overwrite_if_exists);
960 filesystem::copy_file(pathSrc, pathDest);
962 printf("copied wallet.dat to %s\n", pathDest.string().c_str());