Branch data Line data Source code
1 : : // Copyright (c) 2014-2021 The Bitcoin Core developers
2 : : // Distributed under the MIT software license, see the accompanying
3 : : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 : :
5 : : #include <key_io.h>
6 : :
7 : : #include <base58.h>
8 : : #include <bech32.h>
9 : : #include <script/interpreter.h>
10 : : #include <script/solver.h>
11 : : #include <tinyformat.h>
12 : : #include <util/strencodings.h>
13 : :
14 : : #include <algorithm>
15 : : #include <assert.h>
16 : : #include <string.h>
17 : :
18 : : /// Maximum witness length for Bech32 addresses.
19 : : static constexpr std::size_t BECH32_WITNESS_PROG_MAX_LEN = 40;
20 : :
21 : : namespace {
22 : : class DestinationEncoder
23 : : {
24 : : private:
25 : : const CChainParams& m_params;
26 : :
27 : : public:
28 : 254366 : explicit DestinationEncoder(const CChainParams& params) : m_params(params) {}
29 : :
30 : 20827 : std::string operator()(const PKHash& id) const
31 : : {
32 : 20827 : std::vector<unsigned char> data = m_params.Base58Prefix(CChainParams::PUBKEY_ADDRESS);
33 [ + - + - : 20827 : data.insert(data.end(), id.begin(), id.end());
+ - ]
34 [ + - + - ]: 20827 : return EncodeBase58Check(data);
35 : 20827 : }
36 : :
37 : 102523 : std::string operator()(const ScriptHash& id) const
38 : : {
39 : 102523 : std::vector<unsigned char> data = m_params.Base58Prefix(CChainParams::SCRIPT_ADDRESS);
40 [ + - + - : 102523 : data.insert(data.end(), id.begin(), id.end());
+ - ]
41 [ + - + - ]: 102523 : return EncodeBase58Check(data);
42 : 102523 : }
43 : :
44 : 57767 : std::string operator()(const WitnessV0KeyHash& id) const
45 : : {
46 [ + - ]: 57767 : std::vector<unsigned char> data = {0};
47 [ + - ]: 57767 : data.reserve(33);
48 [ + - + - : 1906311 : ConvertBits<8, 5, true>([&](unsigned char c) { data.push_back(c); }, id.begin(), id.end());
+ - ]
49 [ + - ]: 57767 : return bech32::Encode(bech32::Encoding::BECH32, m_params.Bech32HRP(), data);
50 : 57767 : }
51 : :
52 : 49989 : std::string operator()(const WitnessV0ScriptHash& id) const
53 : : {
54 [ + - ]: 49989 : std::vector<unsigned char> data = {0};
55 [ + - ]: 49989 : data.reserve(53);
56 [ + - + - : 2649417 : ConvertBits<8, 5, true>([&](unsigned char c) { data.push_back(c); }, id.begin(), id.end());
+ - ]
57 [ + - + - ]: 49989 : return bech32::Encode(bech32::Encoding::BECH32, m_params.Bech32HRP(), data);
58 : 49989 : }
59 : :
60 : 5248 : std::string operator()(const WitnessV1Taproot& tap) const
61 : : {
62 [ + - ]: 5248 : std::vector<unsigned char> data = {1};
63 [ + - ]: 5248 : data.reserve(53);
64 [ + - + - : 278144 : ConvertBits<8, 5, true>([&](unsigned char c) { data.push_back(c); }, tap.begin(), tap.end());
+ - ]
65 [ + - ]: 5248 : return bech32::Encode(bech32::Encoding::BECH32M, m_params.Bech32HRP(), data);
66 : 5248 : }
67 : :
68 : 16716 : std::string operator()(const WitnessUnknown& id) const
69 : : {
70 : 16716 : const std::vector<unsigned char>& program = id.GetWitnessProgram();
71 [ + - + - : 16716 : if (id.GetWitnessVersion() < 1 || id.GetWitnessVersion() > 16 || program.size() < 2 || program.size() > 40) {
+ - - + ]
72 : 0 : return {};
73 : : }
74 [ + - ]: 16889 : std::vector<unsigned char> data = {(unsigned char)id.GetWitnessVersion()};
75 [ + - ]: 16716 : data.reserve(1 + (program.size() * 8 + 4) / 5);
76 [ + - ]: 523286 : ConvertBits<8, 5, true>([&](unsigned char c) { data.push_back(c); }, program.begin(), program.end());
77 [ + - ]: 16716 : return bech32::Encode(bech32::Encoding::BECH32M, m_params.Bech32HRP(), data);
78 : 16716 : }
79 : :
80 : 1162 : std::string operator()(const CNoDestination& no) const { return {}; }
81 : 134 : std::string operator()(const PubKeyDestination& pk) const { return {}; }
82 : : };
83 : :
84 : 1619 : CTxDestination DecodeDestination(const std::string& str, const CChainParams& params, std::string& error_str, std::vector<int>* error_locations)
85 : : {
86 : 1619 : std::vector<unsigned char> data;
87 [ + + ]: 1619 : uint160 hash;
88 [ + - ]: 1615 : error_str = "";
89 : :
90 : : // Note this will be false if it is a valid Bech32 address for a different network
91 [ + - + - ]: 1615 : bool is_bech32 = (ToLower(str.substr(0, params.Bech32HRP().size())) == params.Bech32HRP());
92 : :
93 [ + + + - : 1615 : if (!is_bech32 && DecodeBase58Check(str, data, 21)) {
+ + ]
94 : : // base58-encoded Bitcoin addresses.
95 : : // Public-key-hash-addresses have version 0 (or 111 testnet).
96 : : // The data vector contains RIPEMD160(SHA256(pubkey)), where pubkey is the serialized public key.
97 : 184 : const std::vector<unsigned char>& pubkey_prefix = params.Base58Prefix(CChainParams::PUBKEY_ADDRESS);
98 [ + - + + : 184 : if (data.size() == hash.size() + pubkey_prefix.size() && std::equal(pubkey_prefix.begin(), pubkey_prefix.end(), data.begin())) {
+ - + + ]
99 [ + - + - ]: 169 : std::copy(data.begin() + pubkey_prefix.size(), data.end(), hash.begin());
100 [ + - ]: 169 : return PKHash(hash);
101 : : }
102 : : // Script-hash-addresses have version 5 (or 196 testnet).
103 : : // The data vector contains RIPEMD160(SHA256(cscript)), where cscript is the serialized redemption script.
104 : 15 : const std::vector<unsigned char>& script_prefix = params.Base58Prefix(CChainParams::SCRIPT_ADDRESS);
105 [ + - + + : 15 : if (data.size() == hash.size() + script_prefix.size() && std::equal(script_prefix.begin(), script_prefix.end(), data.begin())) {
+ - + - ]
106 [ + - + - ]: 13 : std::copy(data.begin() + script_prefix.size(), data.end(), hash.begin());
107 [ + - ]: 13 : return ScriptHash(hash);
108 : : }
109 : :
110 : : // If the prefix of data matches either the script or pubkey prefix, the length must have been wrong
111 [ + - ]: 4 : if ((data.size() >= script_prefix.size() &&
112 [ + - ]: 2 : std::equal(script_prefix.begin(), script_prefix.end(), data.begin())) ||
113 [ + + ]: 0 : (data.size() >= pubkey_prefix.size() &&
114 [ + - ]: 2 : std::equal(pubkey_prefix.begin(), pubkey_prefix.end(), data.begin()))) {
115 [ - + ]: 4 : error_str = "Invalid length for Base58 address (P2PKH or P2SH)";
116 : 0 : } else {
117 [ + - ]: 2 : error_str = "Invalid or unsupported Base58-encoded address.";
118 : : }
119 [ + - ]: 2 : return CNoDestination();
120 [ + + ]: 1431 : } else if (!is_bech32) {
121 : : // Try Base58 decoding without the checksum, using a much larger max length
122 [ + - + + ]: 1339 : if (!DecodeBase58(str, data, 100)) {
123 [ + - ]: 122 : error_str = "Invalid or unsupported Segwit (Bech32) or Base58 encoding.";
124 : 122 : } else {
125 [ + - ]: 1217 : error_str = "Invalid checksum or length of Base58 address (P2PKH or P2SH)";
126 : : }
127 [ + - ]: 1339 : return CNoDestination();
128 : : }
129 : :
130 : 92 : data.clear();
131 [ + - ]: 92 : const auto dec = bech32::Decode(str);
132 [ + + + + ]: 92 : if (dec.encoding == bech32::Encoding::BECH32 || dec.encoding == bech32::Encoding::BECH32M) {
133 [ - + ]: 72 : if (dec.data.empty()) {
134 [ # # ]: 0 : error_str = "Empty Bech32 data section";
135 [ # # ]: 0 : return CNoDestination();
136 : : }
137 : : // Bech32 decoding
138 [ + + ]: 72 : if (dec.hrp != params.Bech32HRP()) {
139 [ + - ]: 5 : error_str = strprintf("Invalid or unsupported prefix for Segwit (Bech32) address (expected %s, got %s).", params.Bech32HRP(), dec.hrp);
140 [ + - ]: 5 : return CNoDestination();
141 : : }
142 : 67 : int version = dec.data[0]; // The first 5 bit symbol is the witness version (0-16)
143 [ + + - + ]: 67 : if (version == 0 && dec.encoding != bech32::Encoding::BECH32) {
144 [ # # ]: 0 : error_str = "Version 0 witness address must use Bech32 checksum";
145 [ # # ]: 0 : return CNoDestination();
146 : : }
147 [ + + - + ]: 67 : if (version != 0 && dec.encoding != bech32::Encoding::BECH32M) {
148 [ # # ]: 0 : error_str = "Version 1+ witness address must use Bech32m checksum";
149 [ # # ]: 0 : return CNoDestination();
150 : : }
151 : : // The rest of the symbols are converted witness program bytes.
152 [ + - ]: 67 : data.reserve(((dec.data.size() - 1) * 5) / 8);
153 [ + - + + ]: 1766 : if (ConvertBits<5, 8, false>([&](unsigned char c) { data.push_back(c); }, dec.data.begin() + 1, dec.data.end())) {
154 : :
155 : 65 : std::string_view byte_str{data.size() == 1 ? "byte" : "bytes"};
156 : :
157 [ + + ]: 65 : if (version == 0) {
158 : : {
159 [ + - ]: 29 : WitnessV0KeyHash keyid;
160 [ + - + + ]: 29 : if (data.size() == keyid.size()) {
161 [ + - + - ]: 9 : std::copy(data.begin(), data.end(), keyid.begin());
162 : 9 : return keyid;
163 : : }
164 : : }
165 : : {
166 [ + - ]: 20 : WitnessV0ScriptHash scriptid;
167 [ + - + - ]: 20 : if (data.size() == scriptid.size()) {
168 [ + - + - ]: 20 : std::copy(data.begin(), data.end(), scriptid.begin());
169 : 20 : return scriptid;
170 : : }
171 : : }
172 : :
173 [ # # ]: 0 : error_str = strprintf("Invalid Bech32 v0 address program size (%d %s), per BIP141", data.size(), byte_str);
174 [ # # ]: 0 : return CNoDestination();
175 : : }
176 : :
177 [ + + + - ]: 36 : if (version == 1 && data.size() == WITNESS_V1_TAPROOT_SIZE) {
178 : : static_assert(WITNESS_V1_TAPROOT_SIZE == WitnessV1Taproot::size());
179 [ + - ]: 14 : WitnessV1Taproot tap;
180 [ + - + - ]: 14 : std::copy(data.begin(), data.end(), tap.begin());
181 : 14 : return tap;
182 : : }
183 : :
184 [ - + ]: 22 : if (version > 16) {
185 [ # # ]: 0 : error_str = "Invalid Bech32 address witness version";
186 [ # # ]: 0 : return CNoDestination();
187 : : }
188 : :
189 [ + - + - ]: 22 : if (data.size() < 2 || data.size() > BECH32_WITNESS_PROG_MAX_LEN) {
190 [ # # ]: 0 : error_str = strprintf("Invalid Bech32 address program size (%d %s)", data.size(), byte_str);
191 [ # # ]: 0 : return CNoDestination();
192 : : }
193 : :
194 [ + - ]: 22 : return WitnessUnknown{version, data};
195 : : } else {
196 [ + - ]: 2 : error_str = strprintf("Invalid padding in Bech32 data section");
197 [ + - ]: 2 : return CNoDestination();
198 : : }
199 : : }
200 : :
201 : : // Perform Bech32 error location
202 [ + - ]: 20 : auto res = bech32::LocateErrors(str);
203 [ + - ]: 20 : error_str = res.first;
204 [ + + ]: 20 : if (error_locations) *error_locations = std::move(res.second);
205 [ + - ]: 20 : return CNoDestination();
206 : 1623 : }
207 : : } // namespace
208 : :
209 : 9414 : CKey DecodeSecret(const std::string& str)
210 : : {
211 : 9414 : CKey key;
212 : 9414 : std::vector<unsigned char> data;
213 [ + - + + ]: 9414 : if (DecodeBase58Check(str, data, 34)) {
214 [ + - + - ]: 7008 : const std::vector<unsigned char>& privkey_prefix = Params().Base58Prefix(CChainParams::SECRET_KEY);
215 [ + + + + : 14012 : if ((data.size() == 32 + privkey_prefix.size() || (data.size() == 33 + privkey_prefix.size() && data.back() == 1)) &&
+ - + - ]
216 [ + - ]: 7004 : std::equal(privkey_prefix.begin(), privkey_prefix.end(), data.begin())) {
217 : 7004 : bool compressed = data.size() == 33 + privkey_prefix.size();
218 [ + - ]: 7004 : key.Set(data.begin() + privkey_prefix.size(), data.begin() + privkey_prefix.size() + 32, compressed);
219 : 7004 : }
220 : 7008 : }
221 [ + + ]: 9414 : if (!data.empty()) {
222 [ + - ]: 7008 : memory_cleanse(data.data(), data.size());
223 : 7008 : }
224 : 9414 : return key;
225 [ + - ]: 9414 : }
226 : :
227 : 8875 : std::string EncodeSecret(const CKey& key)
228 : : {
229 [ + - ]: 8875 : assert(key.IsValid());
230 : 8875 : std::vector<unsigned char> data = Params().Base58Prefix(CChainParams::SECRET_KEY);
231 [ + - + - : 8875 : data.insert(data.end(), key.begin(), key.end());
+ - ]
232 [ + - + + ]: 8875 : if (key.IsCompressed()) {
233 [ + - ]: 4398 : data.push_back(1);
234 : 4398 : }
235 [ + - + - ]: 8875 : std::string ret = EncodeBase58Check(data);
236 [ + - ]: 8875 : memory_cleanse(data.data(), data.size());
237 : 8875 : return ret;
238 [ + - ]: 8875 : }
239 : :
240 : 8085 : CExtPubKey DecodeExtPubKey(const std::string& str)
241 : : {
242 : 8085 : CExtPubKey key;
243 : 8085 : std::vector<unsigned char> data;
244 [ + - + + ]: 8085 : if (DecodeBase58Check(str, data, 78)) {
245 [ + - + - ]: 7917 : const std::vector<unsigned char>& prefix = Params().Base58Prefix(CChainParams::EXT_PUBLIC_KEY);
246 [ + + + - : 7917 : if (data.size() == BIP32_EXTKEY_SIZE + prefix.size() && std::equal(prefix.begin(), prefix.end(), data.begin())) {
+ + ]
247 [ + - ]: 820 : key.Decode(data.data() + prefix.size());
248 : 820 : }
249 : 7917 : }
250 : : return key;
251 : 8085 : }
252 : :
253 : 4967 : std::string EncodeExtPubKey(const CExtPubKey& key)
254 : : {
255 : 4967 : std::vector<unsigned char> data = Params().Base58Prefix(CChainParams::EXT_PUBLIC_KEY);
256 : 4967 : size_t size = data.size();
257 [ + - ]: 4967 : data.resize(size + BIP32_EXTKEY_SIZE);
258 [ + - ]: 4967 : key.Encode(data.data() + size);
259 [ + - + - ]: 4967 : std::string ret = EncodeBase58Check(data);
260 : 4967 : return ret;
261 [ + - ]: 4967 : }
262 : :
263 : 8085 : CExtKey DecodeExtKey(const std::string& str)
264 : : {
265 : 8085 : CExtKey key;
266 : 8085 : std::vector<unsigned char> data;
267 [ + - + + ]: 8085 : if (DecodeBase58Check(str, data, 78)) {
268 [ + - + - ]: 7917 : const std::vector<unsigned char>& prefix = Params().Base58Prefix(CChainParams::EXT_SECRET_KEY);
269 [ + + + - : 7917 : if (data.size() == BIP32_EXTKEY_SIZE + prefix.size() && std::equal(prefix.begin(), prefix.end(), data.begin())) {
+ + ]
270 [ + - ]: 7095 : key.Decode(data.data() + prefix.size());
271 : 7095 : }
272 : 7917 : }
273 : 8085 : return key;
274 [ + - ]: 8085 : }
275 : :
276 : 1174 : std::string EncodeExtKey(const CExtKey& key)
277 : : {
278 : 1174 : std::vector<unsigned char> data = Params().Base58Prefix(CChainParams::EXT_SECRET_KEY);
279 : 1174 : size_t size = data.size();
280 [ + - ]: 1174 : data.resize(size + BIP32_EXTKEY_SIZE);
281 [ + - ]: 1174 : key.Encode(data.data() + size);
282 [ + - + - ]: 1174 : std::string ret = EncodeBase58Check(data);
283 [ + - ]: 1174 : memory_cleanse(data.data(), data.size());
284 : 1174 : return ret;
285 [ + - ]: 1174 : }
286 : :
287 : 254366 : std::string EncodeDestination(const CTxDestination& dest)
288 : : {
289 : 254366 : return std::visit(DestinationEncoder(Params()), dest);
290 : : }
291 : :
292 : 1059 : CTxDestination DecodeDestination(const std::string& str, std::string& error_msg, std::vector<int>* error_locations)
293 : : {
294 : 1059 : return DecodeDestination(str, Params(), error_msg, error_locations);
295 : : }
296 : :
297 : 997 : CTxDestination DecodeDestination(const std::string& str)
298 : : {
299 : 997 : std::string error_msg;
300 [ + - ]: 997 : return DecodeDestination(str, error_msg);
301 : 997 : }
302 : :
303 : 556 : bool IsValidDestinationString(const std::string& str, const CChainParams& params)
304 : : {
305 : 556 : std::string error_msg;
306 [ + - - + ]: 556 : return IsValidDestination(DecodeDestination(str, params, error_msg, nullptr));
307 : 556 : }
308 : :
309 : 556 : bool IsValidDestinationString(const std::string& str)
310 : : {
311 : 556 : return IsValidDestinationString(str, Params());
312 : : }
|