2014-09-10 16:16:09 +02:00
|
|
|
// Copyright (c) 2009-2010 Satoshi Nakamoto
|
2022-12-24 23:49:50 +00:00
|
|
|
// Copyright (c) 2009-2022 The Bitcoin Core developers
|
2014-10-06 13:00:55 +02:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2014-09-10 16:16:09 +02:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
2017-11-10 13:57:53 +13:00
|
|
|
#include <script/sigcache.h>
|
2014-09-10 16:16:09 +02:00
|
|
|
|
2024-05-18 21:39:48 +02:00
|
|
|
#include <crypto/sha256.h>
|
2023-03-23 12:23:29 +01:00
|
|
|
#include <logging.h>
|
2017-11-10 13:57:53 +13:00
|
|
|
#include <pubkey.h>
|
|
|
|
|
#include <random.h>
|
2024-05-18 21:39:48 +02:00
|
|
|
#include <script/interpreter.h>
|
|
|
|
|
#include <span.h>
|
2017-11-10 13:57:53 +13:00
|
|
|
#include <uint256.h>
|
2014-09-10 16:16:09 +02:00
|
|
|
|
2021-02-02 10:18:39 +08:00
|
|
|
#include <mutex>
|
|
|
|
|
#include <shared_mutex>
|
|
|
|
|
#include <vector>
|
2014-09-10 16:16:09 +02:00
|
|
|
|
2024-05-18 11:18:44 +02:00
|
|
|
SignatureCache::SignatureCache(const size_t max_size_bytes)
|
2014-09-10 16:16:09 +02:00
|
|
|
{
|
2024-05-18 21:39:48 +02:00
|
|
|
uint256 nonce = GetRandHash();
|
|
|
|
|
// We want the nonce to be 64 bytes long to force the hasher to process
|
|
|
|
|
// this chunk, which makes later hash computations more efficient. We
|
|
|
|
|
// just write our 32-byte entropy, and then pad with 'E' for ECDSA and
|
|
|
|
|
// 'S' for Schnorr (followed by 0 bytes).
|
|
|
|
|
static constexpr unsigned char PADDING_ECDSA[32] = {'E'};
|
|
|
|
|
static constexpr unsigned char PADDING_SCHNORR[32] = {'S'};
|
|
|
|
|
m_salted_hasher_ecdsa.Write(nonce.begin(), 32);
|
|
|
|
|
m_salted_hasher_ecdsa.Write(PADDING_ECDSA, 32);
|
|
|
|
|
m_salted_hasher_schnorr.Write(nonce.begin(), 32);
|
|
|
|
|
m_salted_hasher_schnorr.Write(PADDING_SCHNORR, 32);
|
2024-05-18 11:18:44 +02:00
|
|
|
|
|
|
|
|
const auto [num_elems, approx_size_bytes] = setValid.setup_bytes(max_size_bytes);
|
|
|
|
|
LogPrintf("Using %zu MiB out of %zu MiB requested for signature cache, able to store %zu elements\n",
|
|
|
|
|
approx_size_bytes >> 20, max_size_bytes >> 20, num_elems);
|
2024-05-18 21:39:48 +02:00
|
|
|
}
|
2014-09-10 16:16:09 +02:00
|
|
|
|
2024-05-18 21:39:48 +02:00
|
|
|
void SignatureCache::ComputeEntryECDSA(uint256& entry, const uint256& hash, const std::vector<unsigned char>& vchSig, const CPubKey& pubkey) const
|
|
|
|
|
{
|
|
|
|
|
CSHA256 hasher = m_salted_hasher_ecdsa;
|
|
|
|
|
hasher.Write(hash.begin(), 32).Write(pubkey.data(), pubkey.size()).Write(vchSig.data(), vchSig.size()).Finalize(entry.begin());
|
|
|
|
|
}
|
2015-10-30 23:14:38 +01:00
|
|
|
|
2024-05-18 21:39:48 +02:00
|
|
|
void SignatureCache::ComputeEntrySchnorr(uint256& entry, const uint256& hash, Span<const unsigned char> sig, const XOnlyPubKey& pubkey) const
|
|
|
|
|
{
|
|
|
|
|
CSHA256 hasher = m_salted_hasher_schnorr;
|
|
|
|
|
hasher.Write(hash.begin(), 32).Write(pubkey.data(), pubkey.size()).Write(sig.data(), sig.size()).Finalize(entry.begin());
|
|
|
|
|
}
|
2015-10-30 23:14:38 +01:00
|
|
|
|
2024-05-18 21:39:48 +02:00
|
|
|
bool SignatureCache::Get(const uint256& entry, const bool erase)
|
|
|
|
|
{
|
|
|
|
|
std::shared_lock<std::shared_mutex> lock(cs_sigcache);
|
|
|
|
|
return setValid.contains(entry, erase);
|
|
|
|
|
}
|
2020-09-11 14:33:30 -07:00
|
|
|
|
2024-05-18 21:39:48 +02:00
|
|
|
void SignatureCache::Set(const uint256& entry)
|
|
|
|
|
{
|
|
|
|
|
std::unique_lock<std::shared_mutex> lock(cs_sigcache);
|
|
|
|
|
setValid.insert(entry);
|
|
|
|
|
}
|
2014-09-10 16:16:09 +02:00
|
|
|
|
2020-09-11 14:33:23 -07:00
|
|
|
bool CachingTransactionSignatureChecker::VerifyECDSASignature(const std::vector<unsigned char>& vchSig, const CPubKey& pubkey, const uint256& sighash) const
|
2016-10-05 16:58:47 -04:00
|
|
|
{
|
2015-10-30 23:14:38 +01:00
|
|
|
uint256 entry;
|
2024-05-18 11:18:44 +02:00
|
|
|
m_signature_cache.ComputeEntryECDSA(entry, sighash, vchSig, pubkey);
|
|
|
|
|
if (m_signature_cache.Get(entry, !store))
|
2014-09-10 16:16:09 +02:00
|
|
|
return true;
|
2020-09-11 14:33:23 -07:00
|
|
|
if (!TransactionSignatureChecker::VerifyECDSASignature(vchSig, pubkey, sighash))
|
2014-09-10 16:16:09 +02:00
|
|
|
return false;
|
2016-10-05 16:58:47 -04:00
|
|
|
if (store)
|
2024-05-18 11:18:44 +02:00
|
|
|
m_signature_cache.Set(entry);
|
2014-09-10 16:16:09 +02:00
|
|
|
return true;
|
|
|
|
|
}
|
2020-09-11 14:33:30 -07:00
|
|
|
|
|
|
|
|
bool CachingTransactionSignatureChecker::VerifySchnorrSignature(Span<const unsigned char> sig, const XOnlyPubKey& pubkey, const uint256& sighash) const
|
|
|
|
|
{
|
|
|
|
|
uint256 entry;
|
2024-05-18 11:18:44 +02:00
|
|
|
m_signature_cache.ComputeEntrySchnorr(entry, sighash, sig, pubkey);
|
|
|
|
|
if (m_signature_cache.Get(entry, !store)) return true;
|
2020-09-11 14:33:30 -07:00
|
|
|
if (!TransactionSignatureChecker::VerifySchnorrSignature(sig, pubkey, sighash)) return false;
|
2024-05-18 11:18:44 +02:00
|
|
|
if (store) m_signature_cache.Set(entry);
|
2020-09-11 14:33:30 -07:00
|
|
|
return true;
|
|
|
|
|
}
|