Branch data Line data Source code
1 : : // Copyright (c) 2009-2010 Satoshi Nakamoto
2 : : // Copyright (c) 2009-2021 The Bitcoin Core developers
3 : : // Distributed under the MIT software license, see the accompanying
4 : : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 : :
6 : : #include <chainparams.h>
7 : : #include <common/args.h>
8 : : #include <logging.h>
9 : : #include <util/fs.h>
10 : : #include <wallet/db.h>
11 : :
12 : : #include <algorithm>
13 : : #include <exception>
14 : : #include <fstream>
15 : : #include <string>
16 : : #include <system_error>
17 : : #include <vector>
18 : :
19 : : namespace wallet {
20 [ + - ]: 20095 : bool operator<(BytePrefix a, Span<const std::byte> b) { return std::ranges::lexicographical_compare(a.prefix, b.subspan(0, std::min(a.prefix.size(), b.size()))); }
21 [ + + ]: 1050 : bool operator<(Span<const std::byte> a, BytePrefix b) { return std::ranges::lexicographical_compare(a.subspan(0, std::min(a.size(), b.prefix.size())), b.prefix); }
22 : :
23 : 9 : std::vector<std::pair<fs::path, std::string>> ListDatabases(const fs::path& wallet_dir)
24 : : {
25 : 9 : std::vector<std::pair<fs::path, std::string>> paths;
26 [ + - ]: 9 : std::error_code ec;
27 : :
28 [ + - + - : 188 : for (auto it = fs::recursive_directory_iterator(wallet_dir, ec); it != fs::recursive_directory_iterator(); it.increment(ec)) {
+ + + + ]
29 [ - + ]: 170 : if (ec) {
30 [ # # # # ]: 0 : if (fs::is_directory(*it)) {
31 : 0 : it.disable_recursion_pending();
32 [ # # # # : 0 : LogPrintf("%s: %s %s -- skipping.\n", __func__, ec.message(), fs::PathToString(it->path()));
# # # # ]
33 : : } else {
34 [ # # # # : 0 : LogPrintf("%s: %s %s\n", __func__, ec.message(), fs::PathToString(it->path()));
# # # # ]
35 : : }
36 : 0 : continue;
37 : : }
38 : :
39 : 170 : try {
40 [ + - ]: 340 : const fs::path path{it->path().lexically_relative(wallet_dir)};
41 : :
42 [ + - + + ]: 170 : if (it->status().type() == fs::file_type::directory) {
43 [ + - + - : 390 : if (IsBDBFile(BDBDataFile(it->path()))) {
+ + - + ]
44 : : // Found a directory which contains wallet.dat btree file, add it as a wallet with BERKELEY format.
45 [ # # ]: 0 : paths.emplace_back(path, "bdb");
46 [ + - + - : 360 : } else if (IsSQLiteFile(SQLiteDataFile(it->path()))) {
+ - + + ]
47 : : // Found a directory which contains wallet.dat sqlite file, add it as a wallet with SQLITE format.
48 [ + - ]: 52 : paths.emplace_back(path, "sqlite");
49 : : }
50 [ + + + - : 126 : } else if (it.depth() == 0 && it->symlink_status().type() == fs::file_type::regular && it->path().extension() != ".bak") {
+ + + - +
- + - + +
+ + - - ]
51 [ + - + - : 50 : if (it->path().filename() == "wallet.dat") {
- + ]
52 : : // Found top-level wallet.dat file, add top level directory ""
53 : : // as a wallet.
54 [ # # # # : 0 : if (IsBDBFile(it->path())) {
# # ]
55 [ # # ]: 0 : paths.emplace_back(fs::path(), "bdb");
56 [ # # # # : 0 : } else if (IsSQLiteFile(it->path())) {
# # ]
57 [ # # ]: 0 : paths.emplace_back(fs::path(), "sqlite");
58 : : }
59 [ + - + - : 40 : } else if (IsBDBFile(it->path())) {
- + ]
60 : : // Found top-level btree file not called wallet.dat. Current bitcoin
61 : : // software will never create these files but will allow them to be
62 : : // opened in a shared database environment for backwards compatibility.
63 : : // Add it to the list of available wallets.
64 [ # # ]: 0 : paths.emplace_back(path, "bdb");
65 : : }
66 : : }
67 [ - + ]: 170 : } catch (const std::exception& e) {
68 [ + - + - : 30 : LogPrintf("%s: Error scanning %s: %s\n", __func__, fs::PathToString(it->path()), e.what());
+ - ]
69 : 6 : it.disable_recursion_pending();
70 : 6 : }
71 : 9 : }
72 : :
73 : 9 : return paths;
74 : 0 : }
75 : :
76 : 693 : fs::path BDBDataFile(const fs::path& wallet_path)
77 : : {
78 [ - + ]: 693 : if (fs::is_regular_file(wallet_path)) {
79 : : // Special case for backwards compatibility: if wallet path points to an
80 : : // existing file, treat it as the path to a BDB data file in a parent
81 : : // directory that also contains BDB log files.
82 : 0 : return wallet_path;
83 : : } else {
84 : : // Normal case: Interpret wallet path as a directory path containing
85 : : // data and log files.
86 [ + - ]: 2079 : return wallet_path / "wallet.dat";
87 : : }
88 : : }
89 : :
90 : 1514 : fs::path SQLiteDataFile(const fs::path& path)
91 : : {
92 [ + - ]: 4542 : return path / "wallet.dat";
93 : : }
94 : :
95 : 703 : bool IsBDBFile(const fs::path& path)
96 : : {
97 [ + + ]: 703 : if (!fs::exists(path)) return false;
98 : :
99 : : // A Berkeley DB Btree file has at least 4K.
100 : : // This check also prevents opening lock files.
101 : 409 : std::error_code ec;
102 : 409 : auto size = fs::file_size(path, ec);
103 [ - + - - : 409 : if (ec) LogPrintf("%s: %s %s\n", __func__, ec.message(), fs::PathToString(path));
- - ]
104 [ + + ]: 409 : if (size < 4096) return false;
105 : :
106 : 404 : std::ifstream file{path, std::ios::binary};
107 [ + - ]: 404 : if (!file.is_open()) return false;
108 : :
109 [ + - ]: 404 : file.seekg(12, std::ios::beg); // Magic bytes start at offset 12
110 : 404 : uint32_t data = 0;
111 [ + - ]: 404 : file.read((char*) &data, sizeof(data)); // Read 4 bytes of file to compare against magic
112 : :
113 : : // Berkeley DB Btree magic bytes, from:
114 : : // https://github.com/file/file/blob/5824af38469ec1ca9ac3ffd251e7afe9dc11e227/magic/Magdir/database#L74-L75
115 : : // - big endian systems - 00 05 31 62
116 : : // - little endian systems - 62 31 05 00
117 : 404 : return data == 0x00053162 || data == 0x62310500;
118 : 404 : }
119 : :
120 : 687 : bool IsSQLiteFile(const fs::path& path)
121 : : {
122 [ + + ]: 687 : if (!fs::exists(path)) return false;
123 : :
124 : : // A SQLite Database file is at least 512 bytes.
125 : 399 : std::error_code ec;
126 : 399 : auto size = fs::file_size(path, ec);
127 [ - + - - : 399 : if (ec) LogPrintf("%s: %s %s\n", __func__, ec.message(), fs::PathToString(path));
- - ]
128 [ + + ]: 399 : if (size < 512) return false;
129 : :
130 : 398 : std::ifstream file{path, std::ios::binary};
131 [ + - ]: 398 : if (!file.is_open()) return false;
132 : :
133 : : // Magic is at beginning and is 16 bytes long
134 : 398 : char magic[16];
135 [ + - ]: 398 : file.read(magic, 16);
136 : :
137 : : // Application id is at offset 68 and 4 bytes long
138 [ + - ]: 398 : file.seekg(68, std::ios::beg);
139 : 398 : char app_id[4];
140 [ + - ]: 398 : file.read(app_id, 4);
141 : :
142 [ + - ]: 398 : file.close();
143 : :
144 : : // Check the magic, see https://sqlite.org/fileformat.html
145 [ + - ]: 398 : std::string magic_str(magic, 16);
146 [ + - + - ]: 398 : if (magic_str != std::string{"SQLite format 3\000", 16}) {
147 : : return false;
148 : : }
149 : :
150 : : // Check the application id matches our network magic
151 [ + - ]: 398 : return memcmp(Params().MessageStart().data(), app_id, 4) == 0;
152 : 398 : }
153 : :
154 : 1116 : void ReadDatabaseArgs(const ArgsManager& args, DatabaseOptions& options)
155 : : {
156 : : // Override current options with args values, if any were specified
157 [ + - ]: 1116 : options.use_unsafe_sync = args.GetBoolArg("-unsafesqlitesync", options.use_unsafe_sync);
158 [ + - ]: 1116 : options.use_shared_memory = !args.GetBoolArg("-privdb", !options.use_shared_memory);
159 [ + - ]: 1116 : options.max_log_mb = args.GetIntArg("-dblogsize", options.max_log_mb);
160 : 1116 : }
161 : :
162 : : } // namespace wallet
|