Coverage Report

Created: 2025-03-18 19:34

/root/bitcoin/src/index/txindex.cpp
Line
Count
Source (jump to first uncovered line)
1
// Copyright (c) 2017-2022 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 <index/txindex.h>
6
7
#include <clientversion.h>
8
#include <common/args.h>
9
#include <index/disktxpos.h>
10
#include <logging.h>
11
#include <node/blockstorage.h>
12
#include <validation.h>
13
14
constexpr uint8_t DB_TXINDEX{'t'};
15
16
std::unique_ptr<TxIndex> g_txindex;
17
18
19
/** Access to the txindex database (indexes/txindex/) */
20
class TxIndex::DB : public BaseIndex::DB
21
{
22
public:
23
    explicit DB(size_t n_cache_size, bool f_memory = false, bool f_wipe = false);
24
25
    /// Read the disk location of the transaction data with the given hash. Returns false if the
26
    /// transaction hash is not indexed.
27
    bool ReadTxPos(const uint256& txid, CDiskTxPos& pos) const;
28
29
    /// Write a batch of transaction positions to the DB.
30
    [[nodiscard]] bool WriteTxs(const std::vector<std::pair<uint256, CDiskTxPos>>& v_pos);
31
};
32
33
TxIndex::DB::DB(size_t n_cache_size, bool f_memory, bool f_wipe) :
34
0
    BaseIndex::DB(gArgs.GetDataDirNet() / "indexes" / "txindex", n_cache_size, f_memory, f_wipe)
35
0
{}
36
37
bool TxIndex::DB::ReadTxPos(const uint256 &txid, CDiskTxPos& pos) const
38
0
{
39
0
    return Read(std::make_pair(DB_TXINDEX, txid), pos);
40
0
}
41
42
bool TxIndex::DB::WriteTxs(const std::vector<std::pair<uint256, CDiskTxPos>>& v_pos)
43
0
{
44
0
    CDBBatch batch(*this);
45
0
    for (const auto& tuple : v_pos) {
  Branch (45:28): [True: 0, False: 0]
46
0
        batch.Write(std::make_pair(DB_TXINDEX, tuple.first), tuple.second);
47
0
    }
48
0
    return WriteBatch(batch);
49
0
}
50
51
TxIndex::TxIndex(std::unique_ptr<interfaces::Chain> chain, size_t n_cache_size, bool f_memory, bool f_wipe)
52
0
    : BaseIndex(std::move(chain), "txindex"), m_db(std::make_unique<TxIndex::DB>(n_cache_size, f_memory, f_wipe))
53
0
{}
54
55
0
TxIndex::~TxIndex() = default;
56
57
bool TxIndex::CustomAppend(const interfaces::BlockInfo& block)
58
0
{
59
    // Exclude genesis block transaction because outputs are not spendable.
60
0
    if (block.height == 0) return true;
  Branch (60:9): [True: 0, False: 0]
61
62
0
    assert(block.data);
63
0
    CDiskTxPos pos({block.file_number, block.data_pos}, GetSizeOfCompactSize(block.data->vtx.size()));
64
0
    std::vector<std::pair<uint256, CDiskTxPos>> vPos;
65
0
    vPos.reserve(block.data->vtx.size());
66
0
    for (const auto& tx : block.data->vtx) {
  Branch (66:25): [True: 0, False: 0]
67
0
        vPos.emplace_back(tx->GetHash(), pos);
68
0
        pos.nTxOffset += ::GetSerializeSize(TX_WITH_WITNESS(*tx));
69
0
    }
70
0
    return m_db->WriteTxs(vPos);
71
0
}
72
73
0
BaseIndex::DB& TxIndex::GetDB() const { return *m_db; }
74
75
bool TxIndex::FindTx(const uint256& tx_hash, uint256& block_hash, CTransactionRef& tx) const
76
0
{
77
0
    CDiskTxPos postx;
78
0
    if (!m_db->ReadTxPos(tx_hash, postx)) {
  Branch (78:9): [True: 0, False: 0]
79
0
        return false;
80
0
    }
81
82
0
    AutoFile file{m_chainstate->m_blockman.OpenBlockFile(postx, true)};
83
0
    if (file.IsNull()) {
  Branch (83:9): [True: 0, False: 0]
84
0
        LogError("%s: OpenBlockFile failed\n", __func__);
85
0
        return false;
86
0
    }
87
0
    CBlockHeader header;
88
0
    try {
89
0
        file >> header;
90
0
        file.seek(postx.nTxOffset, SEEK_CUR);
91
0
        file >> TX_WITH_WITNESS(tx);
92
0
    } catch (const std::exception& e) {
93
0
        LogError("%s: Deserialize or I/O error - %s\n", __func__, e.what());
94
0
        return false;
95
0
    }
96
0
    if (tx->GetHash() != tx_hash) {
  Branch (96:9): [True: 0, False: 0]
97
0
        LogError("%s: txid mismatch\n", __func__);
98
0
        return false;
99
0
    }
100
0
    block_hash = header.GetHash();
101
0
    return true;
102
0
}