Branch data Line data Source code
1 : : // Copyright (c) 2009-2022 The Bitcoin Core developers
2 : : // Copyright (c) 2017 The Zcash 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 <pubkey.h>
7 : :
8 : : #include <hash.h>
9 : : #include <secp256k1.h>
10 : : #include <secp256k1_ellswift.h>
11 : : #include <secp256k1_extrakeys.h>
12 : : #include <secp256k1_recovery.h>
13 : : #include <secp256k1_schnorrsig.h>
14 : : #include <span.h>
15 : : #include <uint256.h>
16 : : #include <util/strencodings.h>
17 : :
18 : : #include <algorithm>
19 : : #include <cassert>
20 : :
21 : : using namespace util::hex_literals;
22 : :
23 : : namespace {
24 : :
25 : : struct Secp256k1SelfTester
26 : : {
27 : : Secp256k1SelfTester() {
28 : : /* Run libsecp256k1 self-test before using the secp256k1_context_static. */
29 : : secp256k1_selftest();
30 : : }
31 : : } SECP256K1_SELFTESTER;
32 : :
33 : : } // namespace
34 : :
35 : : /** This function is taken from the libsecp256k1 distribution and implements
36 : : * DER parsing for ECDSA signatures, while supporting an arbitrary subset of
37 : : * format violations.
38 : : *
39 : : * Supported violations include negative integers, excessive padding, garbage
40 : : * at the end, and overly long length descriptors. This is safe to use in
41 : : * Bitcoin because since the activation of BIP66, signatures are verified to be
42 : : * strict DER before being passed to this module, and we know it supports all
43 : : * violations present in the blockchain before that point.
44 : : */
45 : 154447 : int ecdsa_signature_parse_der_lax(secp256k1_ecdsa_signature* sig, const unsigned char *input, size_t inputlen) {
46 : 154447 : size_t rpos, rlen, spos, slen;
47 : 154447 : size_t pos = 0;
48 : 154447 : size_t lenbyte;
49 : 154447 : unsigned char tmpsig[64] = {0};
50 : 154447 : int overflow = 0;
51 : :
52 : : /* Hack to initialize sig with a correctly-parsed but invalid signature. */
53 : 154447 : secp256k1_ecdsa_signature_parse_compact(secp256k1_context_static, sig, tmpsig);
54 : :
55 : : /* Sequence tag byte */
56 [ + + + - ]: 154447 : if (pos == inputlen || input[pos] != 0x30) {
57 : : return 0;
58 : : }
59 : 154411 : pos++;
60 : :
61 : : /* Sequence length bytes */
62 [ + - ]: 154411 : if (pos == inputlen) {
63 : : return 0;
64 : : }
65 : 154411 : lenbyte = input[pos++];
66 [ - + ]: 154411 : if (lenbyte & 0x80) {
67 : 0 : lenbyte -= 0x80;
68 [ # # ]: 0 : if (lenbyte > inputlen - pos) {
69 : : return 0;
70 : : }
71 : 0 : pos += lenbyte;
72 : : }
73 : :
74 : : /* Integer tag byte for R */
75 [ + - + - ]: 154411 : if (pos == inputlen || input[pos] != 0x02) {
76 : : return 0;
77 : : }
78 : 154411 : pos++;
79 : :
80 : : /* Integer length for R */
81 [ + - ]: 154411 : if (pos == inputlen) {
82 : : return 0;
83 : : }
84 : 154411 : lenbyte = input[pos++];
85 [ - + ]: 154411 : if (lenbyte & 0x80) {
86 : 0 : lenbyte -= 0x80;
87 [ # # ]: 0 : if (lenbyte > inputlen - pos) {
88 : : return 0;
89 : : }
90 [ # # # # ]: 0 : while (lenbyte > 0 && input[pos] == 0) {
91 : 0 : pos++;
92 : 0 : lenbyte--;
93 : : }
94 : 0 : static_assert(sizeof(size_t) >= 4, "size_t too small");
95 [ # # ]: 0 : if (lenbyte >= 4) {
96 : : return 0;
97 : : }
98 : : rlen = 0;
99 [ # # ]: 0 : while (lenbyte > 0) {
100 : 0 : rlen = (rlen << 8) + input[pos];
101 : 0 : pos++;
102 : 0 : lenbyte--;
103 : : }
104 : : } else {
105 : : rlen = lenbyte;
106 : : }
107 [ + - ]: 154411 : if (rlen > inputlen - pos) {
108 : : return 0;
109 : : }
110 : 154411 : rpos = pos;
111 : 154411 : pos += rlen;
112 : :
113 : : /* Integer tag byte for S */
114 [ + - + - ]: 154411 : if (pos == inputlen || input[pos] != 0x02) {
115 : : return 0;
116 : : }
117 : 154411 : pos++;
118 : :
119 : : /* Integer length for S */
120 [ + - ]: 154411 : if (pos == inputlen) {
121 : : return 0;
122 : : }
123 : 154411 : lenbyte = input[pos++];
124 [ - + ]: 154411 : if (lenbyte & 0x80) {
125 : 0 : lenbyte -= 0x80;
126 [ # # ]: 0 : if (lenbyte > inputlen - pos) {
127 : : return 0;
128 : : }
129 [ # # # # ]: 0 : while (lenbyte > 0 && input[pos] == 0) {
130 : 0 : pos++;
131 : 0 : lenbyte--;
132 : : }
133 : 0 : static_assert(sizeof(size_t) >= 4, "size_t too small");
134 [ # # ]: 0 : if (lenbyte >= 4) {
135 : : return 0;
136 : : }
137 : : slen = 0;
138 [ # # ]: 0 : while (lenbyte > 0) {
139 : 0 : slen = (slen << 8) + input[pos];
140 : 0 : pos++;
141 : 0 : lenbyte--;
142 : : }
143 : : } else {
144 : : slen = lenbyte;
145 : : }
146 [ + - ]: 154411 : if (slen > inputlen - pos) {
147 : : return 0;
148 : : }
149 : 183665 : spos = pos;
150 : :
151 : : /* Ignore leading zeroes in R */
152 [ + - + + ]: 183665 : while (rlen > 0 && input[rpos] == 0) {
153 : 29254 : rlen--;
154 : 29254 : rpos++;
155 : : }
156 : : /* Copy R value */
157 [ + + ]: 154411 : if (rlen > 32) {
158 : 154411 : overflow = 1;
159 : : } else {
160 : 154410 : memcpy(tmpsig + 32 - rlen, input + rpos, rlen);
161 : : }
162 : :
163 : : /* Ignore leading zeroes in S */
164 [ + - + + ]: 156441 : while (slen > 0 && input[spos] == 0) {
165 : 2030 : slen--;
166 : 2030 : spos++;
167 : : }
168 : : /* Copy S value */
169 [ + - ]: 154411 : if (slen > 32) {
170 : : overflow = 1;
171 : : } else {
172 [ + + ]: 154411 : memcpy(tmpsig + 64 - slen, input + spos, slen);
173 : : }
174 : :
175 [ + + ]: 154411 : if (!overflow) {
176 : 154410 : overflow = !secp256k1_ecdsa_signature_parse_compact(secp256k1_context_static, sig, tmpsig);
177 : : }
178 [ - + ]: 154410 : if (overflow) {
179 : : /* Overwrite the result again with a correctly-parsed but invalid
180 : : signature if parsing failed. */
181 : 1 : memset(tmpsig, 0, 64);
182 : 1 : secp256k1_ecdsa_signature_parse_compact(secp256k1_context_static, sig, tmpsig);
183 : : }
184 : : return 1;
185 : : }
186 : :
187 : : /** Nothing Up My Sleeve (NUMS) point
188 : : *
189 : : * NUMS_H is a point with an unknown discrete logarithm, constructed by taking the sha256 of 'g'
190 : : * (uncompressed encoding), which happens to be a point on the curve.
191 : : *
192 : : * For an example script for calculating H, refer to the unit tests in
193 : : * ./test/functional/test_framework/crypto/secp256k1.py
194 : : */
195 : : constexpr XOnlyPubKey XOnlyPubKey::NUMS_H{
196 : : // Use immediate lambda to work around GCC-14 bug https://gcc.gnu.org/bugzilla/show_bug.cgi?id=117966
197 : : []() consteval { return XOnlyPubKey{"50929b74c1a04954b78b4b6035e97a5e078a5a0f28ec96d547bfee9ace803ac0"_hex_u8}; }(),
198 : : };
199 : :
200 : 344110 : std::vector<CKeyID> XOnlyPubKey::GetKeyIDs() const
201 : : {
202 : 344110 : std::vector<CKeyID> out;
203 : : // For now, use the old full pubkey-based key derivation logic. As it is indexed by
204 : : // Hash160(full pubkey), we need to return both a version prefixed with 0x02, and one
205 : : // with 0x03.
206 : 344110 : unsigned char b[33] = {0x02};
207 : 344110 : std::copy(m_keydata.begin(), m_keydata.end(), b + 1);
208 : 344110 : CPubKey fullpubkey;
209 : 344110 : fullpubkey.Set(b, b + 33);
210 [ + - ]: 344110 : out.push_back(fullpubkey.GetID());
211 : 344110 : b[0] = 0x03;
212 : 344110 : fullpubkey.Set(b, b + 33);
213 [ + - ]: 344110 : out.push_back(fullpubkey.GetID());
214 : 344110 : return out;
215 : 0 : }
216 : :
217 : 132330 : CPubKey XOnlyPubKey::GetEvenCorrespondingCPubKey() const
218 : : {
219 : 132330 : unsigned char full_key[CPubKey::COMPRESSED_SIZE] = {0x02};
220 : 132330 : std::copy(begin(), end(), full_key + 1);
221 : 132330 : return CPubKey{full_key};
222 : : }
223 : :
224 : 154251 : bool XOnlyPubKey::IsFullyValid() const
225 : : {
226 : 154251 : secp256k1_xonly_pubkey pubkey;
227 : 154251 : return secp256k1_xonly_pubkey_parse(secp256k1_context_static, &pubkey, m_keydata.data());
228 : : }
229 : :
230 : 9349 : bool XOnlyPubKey::VerifySchnorr(const uint256& msg, Span<const unsigned char> sigbytes) const
231 : : {
232 [ - + ]: 9349 : assert(sigbytes.size() == 64);
233 : 9349 : secp256k1_xonly_pubkey pubkey;
234 [ + + ]: 9349 : if (!secp256k1_xonly_pubkey_parse(secp256k1_context_static, &pubkey, m_keydata.data())) return false;
235 : 9347 : return secp256k1_schnorrsig_verify(secp256k1_context_static, sigbytes.data(), msg.begin(), 32, &pubkey);
236 : : }
237 : :
238 : : static const HashWriter HASHER_TAPTWEAK{TaggedHash("TapTweak")};
239 : :
240 : 211749 : uint256 XOnlyPubKey::ComputeTapTweakHash(const uint256* merkle_root) const
241 : : {
242 [ + + ]: 211749 : if (merkle_root == nullptr) {
243 : : // We have no scripts. The actual tweak does not matter, but follow BIP341 here to
244 : : // allow for reproducible tweaking.
245 : 118305 : return (HashWriter{HASHER_TAPTWEAK} << m_keydata).GetSHA256();
246 : : } else {
247 : 93444 : return (HashWriter{HASHER_TAPTWEAK} << m_keydata << *merkle_root).GetSHA256();
248 : : }
249 : : }
250 : :
251 : 76384 : bool XOnlyPubKey::CheckTapTweak(const XOnlyPubKey& internal, const uint256& merkle_root, bool parity) const
252 : : {
253 : 76384 : secp256k1_xonly_pubkey internal_key;
254 [ + + ]: 76384 : if (!secp256k1_xonly_pubkey_parse(secp256k1_context_static, &internal_key, internal.data())) return false;
255 : 76380 : uint256 tweak = internal.ComputeTapTweakHash(&merkle_root);
256 : 76380 : return secp256k1_xonly_pubkey_tweak_add_check(secp256k1_context_static, m_keydata.begin(), parity, &internal_key, tweak.begin());
257 : : }
258 : :
259 : 134783 : std::optional<std::pair<XOnlyPubKey, bool>> XOnlyPubKey::CreateTapTweak(const uint256* merkle_root) const
260 : : {
261 : 134783 : secp256k1_xonly_pubkey base_point;
262 [ - + ]: 134783 : if (!secp256k1_xonly_pubkey_parse(secp256k1_context_static, &base_point, data())) return std::nullopt;
263 : 134783 : secp256k1_pubkey out;
264 : 134783 : uint256 tweak = ComputeTapTweakHash(merkle_root);
265 [ - + ]: 134783 : if (!secp256k1_xonly_pubkey_tweak_add(secp256k1_context_static, &out, &base_point, tweak.data())) return std::nullopt;
266 : 134783 : int parity = -1;
267 : 134783 : std::pair<XOnlyPubKey, bool> ret;
268 : 134783 : secp256k1_xonly_pubkey out_xonly;
269 [ - + ]: 134783 : if (!secp256k1_xonly_pubkey_from_pubkey(secp256k1_context_static, &out_xonly, &parity, &out)) return std::nullopt;
270 : 134783 : secp256k1_xonly_pubkey_serialize(secp256k1_context_static, ret.first.begin(), &out_xonly);
271 [ - + ]: 134783 : assert(parity == 0 || parity == 1);
272 : 134783 : ret.second = parity;
273 : 134783 : return ret;
274 : : }
275 : :
276 : :
277 : 101954 : bool CPubKey::Verify(const uint256 &hash, const std::vector<unsigned char>& vchSig) const {
278 [ + - ]: 101954 : if (!IsValid())
279 : : return false;
280 : 101954 : secp256k1_pubkey pubkey;
281 : 101954 : secp256k1_ecdsa_signature sig;
282 [ + - ]: 101954 : if (!secp256k1_ec_pubkey_parse(secp256k1_context_static, &pubkey, vch, size())) {
283 : : return false;
284 : : }
285 [ + + ]: 101954 : if (!ecdsa_signature_parse_der_lax(&sig, vchSig.data(), vchSig.size())) {
286 : : return false;
287 : : }
288 : : /* libsecp256k1's ECDSA verification requires lower-S signatures, which have
289 : : * not historically been enforced in Bitcoin, so normalize them first. */
290 : 101918 : secp256k1_ecdsa_signature_normalize(secp256k1_context_static, &sig, &sig);
291 : 101918 : return secp256k1_ecdsa_verify(secp256k1_context_static, &sig, hash.begin(), &pubkey);
292 : : }
293 : :
294 : 77 : bool CPubKey::RecoverCompact(const uint256 &hash, const std::vector<unsigned char>& vchSig) {
295 [ + - ]: 77 : if (vchSig.size() != COMPACT_SIGNATURE_SIZE)
296 : : return false;
297 : 77 : int recid = (vchSig[0] - 27) & 3;
298 : 77 : bool fComp = ((vchSig[0] - 27) & 4) != 0;
299 : 77 : secp256k1_pubkey pubkey;
300 : 77 : secp256k1_ecdsa_recoverable_signature sig;
301 [ + - ]: 77 : if (!secp256k1_ecdsa_recoverable_signature_parse_compact(secp256k1_context_static, &sig, &vchSig[1], recid)) {
302 : : return false;
303 : : }
304 [ + + ]: 77 : if (!secp256k1_ecdsa_recover(secp256k1_context_static, &pubkey, &sig, hash.begin())) {
305 : : return false;
306 : : }
307 : 76 : unsigned char pub[SIZE];
308 : 76 : size_t publen = SIZE;
309 [ + + ]: 108 : secp256k1_ec_pubkey_serialize(secp256k1_context_static, pub, &publen, &pubkey, fComp ? SECP256K1_EC_COMPRESSED : SECP256K1_EC_UNCOMPRESSED);
310 : 76 : Set(pub, pub + publen);
311 : 76 : return true;
312 : : }
313 : :
314 : 49541 : bool CPubKey::IsFullyValid() const {
315 [ + + ]: 49541 : if (!IsValid())
316 : : return false;
317 : 31008 : secp256k1_pubkey pubkey;
318 : 31008 : return secp256k1_ec_pubkey_parse(secp256k1_context_static, &pubkey, vch, size());
319 : : }
320 : :
321 : 37 : bool CPubKey::Decompress() {
322 [ + - ]: 37 : if (!IsValid())
323 : : return false;
324 : 37 : secp256k1_pubkey pubkey;
325 [ + + ]: 37 : if (!secp256k1_ec_pubkey_parse(secp256k1_context_static, &pubkey, vch, size())) {
326 : : return false;
327 : : }
328 : 35 : unsigned char pub[SIZE];
329 : 35 : size_t publen = SIZE;
330 : 35 : secp256k1_ec_pubkey_serialize(secp256k1_context_static, pub, &publen, &pubkey, SECP256K1_EC_UNCOMPRESSED);
331 : 35 : Set(pub, pub + publen);
332 : 35 : return true;
333 : : }
334 : :
335 : 676084 : bool CPubKey::Derive(CPubKey& pubkeyChild, ChainCode &ccChild, unsigned int nChild, const ChainCode& cc) const {
336 [ - + ]: 676084 : assert(IsValid());
337 [ - + ]: 676084 : assert((nChild >> 31) == 0);
338 [ - + ]: 676084 : assert(size() == COMPRESSED_SIZE);
339 : 676084 : unsigned char out[64];
340 : 676084 : BIP32Hash(cc, nChild, *begin(), begin()+1, out);
341 : 676084 : memcpy(ccChild.begin(), out+32, 32);
342 : 676084 : secp256k1_pubkey pubkey;
343 [ + - ]: 676084 : if (!secp256k1_ec_pubkey_parse(secp256k1_context_static, &pubkey, vch, size())) {
344 : : return false;
345 : : }
346 [ + - ]: 676084 : if (!secp256k1_ec_pubkey_tweak_add(secp256k1_context_static, &pubkey, out)) {
347 : : return false;
348 : : }
349 : 676084 : unsigned char pub[COMPRESSED_SIZE];
350 : 676084 : size_t publen = COMPRESSED_SIZE;
351 : 676084 : secp256k1_ec_pubkey_serialize(secp256k1_context_static, pub, &publen, &pubkey, SECP256K1_EC_COMPRESSED);
352 : 676084 : pubkeyChild.Set(pub, pub + publen);
353 : 676084 : return true;
354 : : }
355 : :
356 : 705 : EllSwiftPubKey::EllSwiftPubKey(Span<const std::byte> ellswift) noexcept
357 : : {
358 [ - + ]: 705 : assert(ellswift.size() == SIZE);
359 : 705 : std::copy(ellswift.begin(), ellswift.end(), m_pubkey.begin());
360 : 705 : }
361 : :
362 : 4 : CPubKey EllSwiftPubKey::Decode() const
363 : : {
364 : 4 : secp256k1_pubkey pubkey;
365 : 4 : secp256k1_ellswift_decode(secp256k1_context_static, &pubkey, UCharCast(m_pubkey.data()));
366 : :
367 : 4 : size_t sz = CPubKey::COMPRESSED_SIZE;
368 : 4 : std::array<uint8_t, CPubKey::COMPRESSED_SIZE> vch_bytes;
369 : :
370 : 4 : secp256k1_ec_pubkey_serialize(secp256k1_context_static, vch_bytes.data(), &sz, &pubkey, SECP256K1_EC_COMPRESSED);
371 [ - + ]: 4 : assert(sz == vch_bytes.size());
372 : :
373 : 4 : return CPubKey{vch_bytes.begin(), vch_bytes.end()};
374 : : }
375 : :
376 : 144488 : void CExtPubKey::Encode(unsigned char code[BIP32_EXTKEY_SIZE]) const {
377 : 144488 : code[0] = nDepth;
378 : 144488 : memcpy(code+1, vchFingerprint, 4);
379 : 144488 : WriteBE32(code+5, nChild);
380 [ - + ]: 144488 : memcpy(code+9, chaincode.begin(), 32);
381 [ - + ]: 144488 : assert(pubkey.size() == CPubKey::COMPRESSED_SIZE);
382 : 144488 : memcpy(code+41, pubkey.begin(), CPubKey::COMPRESSED_SIZE);
383 : 144488 : }
384 : :
385 : 9933 : void CExtPubKey::Decode(const unsigned char code[BIP32_EXTKEY_SIZE]) {
386 : 9933 : nDepth = code[0];
387 : 9933 : memcpy(vchFingerprint, code+1, 4);
388 : 9933 : nChild = ReadBE32(code+5);
389 : 9933 : memcpy(chaincode.begin(), code+9, 32);
390 : 9933 : pubkey.Set(code+41, code+BIP32_EXTKEY_SIZE);
391 [ + + + + : 9933 : if ((nDepth == 0 && (nChild != 0 || ReadLE32(vchFingerprint) != 0)) || !pubkey.IsFullyValid()) pubkey = CPubKey();
+ + + + ]
392 : 9933 : }
393 : :
394 : 3 : void CExtPubKey::EncodeWithVersion(unsigned char code[BIP32_EXTKEY_WITH_VERSION_SIZE]) const
395 : : {
396 : 3 : memcpy(code, version, 4);
397 : 3 : Encode(&code[4]);
398 : 3 : }
399 : :
400 : 3 : void CExtPubKey::DecodeWithVersion(const unsigned char code[BIP32_EXTKEY_WITH_VERSION_SIZE])
401 : : {
402 : 3 : memcpy(version, code, 4);
403 : 3 : Decode(&code[4]);
404 : 3 : }
405 : :
406 : 676085 : bool CExtPubKey::Derive(CExtPubKey &out, unsigned int _nChild) const {
407 [ + + ]: 676085 : if (nDepth == std::numeric_limits<unsigned char>::max()) return false;
408 : 676084 : out.nDepth = nDepth + 1;
409 : 676084 : CKeyID id = pubkey.GetID();
410 : 676084 : memcpy(out.vchFingerprint, &id, 4);
411 : 676084 : out.nChild = _nChild;
412 : 676084 : return pubkey.Derive(out.pubkey, out.chaincode, _nChild, chaincode);
413 : : }
414 : :
415 : 52493 : /* static */ bool CPubKey::CheckLowS(const std::vector<unsigned char>& vchSig) {
416 : 52493 : secp256k1_ecdsa_signature sig;
417 [ + - ]: 52493 : if (!ecdsa_signature_parse_der_lax(&sig, vchSig.data(), vchSig.size())) {
418 : : return false;
419 : : }
420 : 52493 : return (!secp256k1_ecdsa_signature_normalize(secp256k1_context_static, nullptr, &sig));
421 : : }
|