Bitcoin Core 31.99.0
P2P Digital Currency
sigcache.h
Go to the documentation of this file.
1// Copyright (c) 2009-2010 Satoshi Nakamoto
2// Copyright (c) 2009-present 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#ifndef BITCOIN_SCRIPT_SIGCACHE_H
7#define BITCOIN_SCRIPT_SIGCACHE_H
8
9#include <consensus/amount.h>
10#include <crypto/sha256.h>
11#include <cuckoocache.h>
12#include <script/interpreter.h>
13#include <span.h>
14#include <uint256.h>
15#include <util/byte_units.h>
16#include <util/hasher.h>
17
18#include <cstddef>
19#include <shared_mutex>
20#include <vector>
21
22class CPubKey;
23class CTransaction;
24class XOnlyPubKey;
25
26// DoS prevention: limit cache size to 32MiB (over 1000000 entries on 64-bit
27// systems). Due to how we count cache size, actual memory usage is slightly
28// more (~32.25 MiB)
29static constexpr size_t DEFAULT_VALIDATION_CACHE_BYTES{32_MiB};
33
40{
41private:
47 std::shared_mutex cs_sigcache;
48
49public:
50 SignatureCache(size_t max_size_bytes);
51
54
55 void ComputeEntryECDSA(uint256& entry, const uint256 &hash, const std::vector<unsigned char>& vchSig, const CPubKey& pubkey) const;
56
57 void ComputeEntrySchnorr(uint256& entry, const uint256 &hash, std::span<const unsigned char> sig, const XOnlyPubKey& pubkey) const;
58
59 bool Get(const uint256& entry, bool erase);
60
61 void Set(const uint256& entry);
62};
63
65{
66private:
67 bool store;
69
70public:
71 CachingTransactionSignatureChecker(const CTransaction* txToIn, unsigned int nInIn, const CAmount& amountIn, bool storeIn, SignatureCache& signature_cache, PrecomputedTransactionData& txdataIn) : TransactionSignatureChecker(txToIn, nInIn, amountIn, txdataIn, MissingDataBehavior::ASSERT_FAIL), store(storeIn), m_signature_cache(signature_cache) {}
72
73 bool VerifyECDSASignature(const std::vector<unsigned char>& vchSig, const CPubKey& vchPubKey, const uint256& sighash) const override;
74 bool VerifySchnorrSignature(std::span<const unsigned char> sig, const XOnlyPubKey& pubkey, const uint256& sighash) const override;
75};
76
77#endif // BITCOIN_SCRIPT_SIGCACHE_H
int64_t CAmount
Amount in satoshis (Can be negative)
Definition: amount.h:12
An encapsulated public key.
Definition: pubkey.h:34
A hasher class for SHA-256.
Definition: sha256.h:14
The basic transaction that is broadcasted on the network and contained in blocks.
Definition: transaction.h:281
CachingTransactionSignatureChecker(const CTransaction *txToIn, unsigned int nInIn, const CAmount &amountIn, bool storeIn, SignatureCache &signature_cache, PrecomputedTransactionData &txdataIn)
Definition: sigcache.h:71
bool VerifySchnorrSignature(std::span< const unsigned char > sig, const XOnlyPubKey &pubkey, const uint256 &sighash) const override
Definition: sigcache.cpp:76
SignatureCache & m_signature_cache
Definition: sigcache.h:68
bool VerifyECDSASignature(const std::vector< unsigned char > &vchSig, const CPubKey &vchPubKey, const uint256 &sighash) const override
Definition: sigcache.cpp:63
Valid signature cache, to avoid doing expensive ECDSA signature checking twice for every transaction ...
Definition: sigcache.h:40
SignatureCache(size_t max_size_bytes)
Definition: sigcache.cpp:20
void ComputeEntrySchnorr(uint256 &entry, const uint256 &hash, std::span< const unsigned char > sig, const XOnlyPubKey &pubkey) const
Definition: sigcache.cpp:45
CSHA256 m_salted_hasher_schnorr
Definition: sigcache.h:44
void ComputeEntryECDSA(uint256 &entry, const uint256 &hash, const std::vector< unsigned char > &vchSig, const CPubKey &pubkey) const
Definition: sigcache.cpp:39
map_type setValid
Definition: sigcache.h:46
std::shared_mutex cs_sigcache
Definition: sigcache.h:47
bool Get(const uint256 &entry, bool erase)
Definition: sigcache.cpp:51
SignatureCache & operator=(const SignatureCache &)=delete
SignatureCache(const SignatureCache &)=delete
CSHA256 m_salted_hasher_ecdsa
Entries are SHA256(nonce || 'E' or 'S' || 31 zero bytes || signature hash || public key || signature)...
Definition: sigcache.h:43
CuckooCache::cache< uint256, SignatureCacheHasher > map_type
Definition: sigcache.h:45
void Set(const uint256 &entry)
Definition: sigcache.cpp:57
256-bit opaque blob.
Definition: uint256.h:196
MissingDataBehavior
Enum to specify what *TransactionSignatureChecker's behavior should be when dealing with missing tran...
Definition: interpreter.h:304
@ ASSERT_FAIL
Abort execution through assertion failure (for consensus code)
static constexpr size_t DEFAULT_SIGNATURE_CACHE_BYTES
Definition: sigcache.h:30
static constexpr size_t DEFAULT_SCRIPT_EXECUTION_CACHE_BYTES
Definition: sigcache.h:31
static constexpr size_t DEFAULT_VALIDATION_CACHE_BYTES
Definition: sigcache.h:29