5537 lines
190 KiB
C++
5537 lines
190 KiB
C++
// Copyright (c) 2014-2023, The Monero Project
|
|
// Portions Copyright (c) 2023-2024, Salvium (author: SRCG)
|
|
// All rights reserved.
|
|
//
|
|
// Redistribution and use in source and binary forms, with or without modification, are
|
|
// permitted provided that the following conditions are met:
|
|
//
|
|
// 1. Redistributions of source code must retain the above copyright notice, this list of
|
|
// conditions and the following disclaimer.
|
|
//
|
|
// 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
|
// of conditions and the following disclaimer in the documentation and/or other
|
|
// materials provided with the distribution.
|
|
//
|
|
// 3. Neither the name of the copyright holder nor the names of its contributors may be
|
|
// used to endorse or promote products derived from this software without specific
|
|
// prior written permission.
|
|
//
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
|
|
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
|
|
// THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
// STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
|
// THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
#include "db_lmdb.h"
|
|
|
|
#include <boost/filesystem.hpp>
|
|
#include <boost/format.hpp>
|
|
#include <boost/circular_buffer.hpp>
|
|
|
|
#include <memory> // std::unique_ptr
|
|
#include <cstring> // memcpy
|
|
|
|
#include "string_tools.h"
|
|
#include "file_io_utils.h"
|
|
#include "common/util.h"
|
|
#include "common/pruning.h"
|
|
#include "cryptonote_basic/cryptonote_format_utils.h"
|
|
#include "cryptonote_core/cryptonote_tx_utils.h"
|
|
#include "crypto/crypto.h"
|
|
#include "profile_tools.h"
|
|
#include "ringct/rctOps.h"
|
|
|
|
#include "oracle/asset_types.h"
|
|
#include "oracle/pricing_record.h"
|
|
|
|
#undef MONERO_DEFAULT_LOG_CATEGORY
|
|
#define MONERO_DEFAULT_LOG_CATEGORY "blockchain.db.lmdb"
|
|
|
|
|
|
#if defined(__i386) || defined(__x86_64)
|
|
#define MISALIGNED_OK 1
|
|
#endif
|
|
|
|
using epee::string_tools::pod_to_hex;
|
|
using namespace crypto;
|
|
|
|
// Increase when the DB structure changes
|
|
#define VERSION 2
|
|
|
|
namespace
|
|
{
|
|
|
|
#pragma pack(push, 1)
|
|
// This MUST be identical to output_data_t, without the extra rct data at the end
|
|
struct pre_rct_output_data_t
|
|
{
|
|
crypto::public_key pubkey; //!< the output's public key (for spend verification)
|
|
uint64_t unlock_time; //!< the output's unlock time (or height)
|
|
uint64_t height; //!< the height of the block which created the output
|
|
uint32_t asset_type; //!< the asset type of the output
|
|
};
|
|
#pragma pack(pop)
|
|
|
|
template <typename T>
|
|
inline void throw0(const T &e)
|
|
{
|
|
LOG_PRINT_L0(e.what());
|
|
throw e;
|
|
}
|
|
|
|
template <typename T>
|
|
inline void throw1(const T &e)
|
|
{
|
|
LOG_PRINT_L1(e.what());
|
|
throw e;
|
|
}
|
|
|
|
#define MDB_val_set(var, val) MDB_val var = {sizeof(val), (void *)&val}
|
|
|
|
#define MDB_val_sized(var, val) MDB_val var = {val.size(), (void *)val.data()}
|
|
|
|
#define MDB_val_str(var, val) MDB_val var = {strlen(val) + 1, (void *)val}
|
|
|
|
template<typename T>
|
|
struct MDB_val_copy: public MDB_val
|
|
{
|
|
MDB_val_copy(const T &t) :
|
|
t_copy(t)
|
|
{
|
|
mv_size = sizeof (T);
|
|
mv_data = &t_copy;
|
|
}
|
|
private:
|
|
T t_copy;
|
|
};
|
|
|
|
template<>
|
|
struct MDB_val_copy<cryptonote::blobdata>: public MDB_val
|
|
{
|
|
MDB_val_copy(const cryptonote::blobdata &bd) :
|
|
data(new char[bd.size()])
|
|
{
|
|
memcpy(data.get(), bd.data(), bd.size());
|
|
mv_size = bd.size();
|
|
mv_data = data.get();
|
|
}
|
|
private:
|
|
std::unique_ptr<char[]> data;
|
|
};
|
|
|
|
template<>
|
|
struct MDB_val_copy<const char*>: public MDB_val
|
|
{
|
|
MDB_val_copy(const char *s):
|
|
size(strlen(s)+1), // include the NUL, makes it easier for compares
|
|
data(new char[size])
|
|
{
|
|
mv_size = size;
|
|
mv_data = data.get();
|
|
memcpy(mv_data, s, size);
|
|
}
|
|
private:
|
|
size_t size;
|
|
std::unique_ptr<char[]> data;
|
|
};
|
|
|
|
}
|
|
|
|
namespace cryptonote
|
|
{
|
|
|
|
int BlockchainLMDB::compare_uint64(const MDB_val *a, const MDB_val *b)
|
|
{
|
|
uint64_t va, vb;
|
|
memcpy(&va, a->mv_data, sizeof(va));
|
|
memcpy(&vb, b->mv_data, sizeof(vb));
|
|
return (va < vb) ? -1 : va > vb;
|
|
}
|
|
|
|
int BlockchainLMDB::compare_hash32(const MDB_val *a, const MDB_val *b)
|
|
{
|
|
uint32_t *va = (uint32_t*) a->mv_data;
|
|
uint32_t *vb = (uint32_t*) b->mv_data;
|
|
for (int n = 7; n >= 0; n--)
|
|
{
|
|
if (va[n] == vb[n])
|
|
continue;
|
|
return va[n] < vb[n] ? -1 : 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int BlockchainLMDB::compare_string(const MDB_val *a, const MDB_val *b)
|
|
{
|
|
const char *va = (const char*) a->mv_data;
|
|
const char *vb = (const char*) b->mv_data;
|
|
const size_t sz = std::min(a->mv_size, b->mv_size);
|
|
int ret = strncmp(va, vb, sz);
|
|
if (ret)
|
|
return ret;
|
|
if (a->mv_size < b->mv_size)
|
|
return -1;
|
|
if (a->mv_size > b->mv_size)
|
|
return 1;
|
|
return 0;
|
|
}
|
|
|
|
}
|
|
|
|
namespace
|
|
{
|
|
|
|
/* DB schema:
|
|
*
|
|
* Table Key Data
|
|
* ----- --- ----
|
|
* blocks block ID block blob
|
|
* block_heights block hash block height
|
|
* block_info block ID {block metadata}
|
|
*
|
|
* txs_pruned txn ID pruned txn blob
|
|
* txs_prunable txn ID prunable txn blob
|
|
* txs_prunable_hash txn ID prunable txn hash
|
|
* txs_prunable_tip txn ID height
|
|
* tx_indices txn hash {txn ID, metadata}
|
|
* tx_outputs txn ID [txn amount output indices]
|
|
*
|
|
* output_txs output ID {txn hash, local index}
|
|
* output_amounts amount [{amount output index, metadata}...]
|
|
* output_types asset_type [{asset type output index, output id}]
|
|
*
|
|
* spent_keys input hash -
|
|
*
|
|
* txpool_meta txn hash txn metadata
|
|
* txpool_blob txn hash txn blob
|
|
*
|
|
* alt_blocks block hash {block data, block blob}
|
|
*
|
|
* yield_block_data block height {slippage_coins, locked_coins, lc_total, network_health}
|
|
* yield_tx_data block height {txn hash, locked_coins, return_address}
|
|
*
|
|
* audit_data block height {locked_coins, lc_total}
|
|
* audit_tx_data block height {txn hash, locked_coins, return_address}
|
|
*
|
|
* Note: where the data items are of uniform size, DUPFIXED tables have
|
|
* been used to save space. In most of these cases, a dummy "zerokval"
|
|
* key is used when accessing the table; the Key listed above will be
|
|
* attached as a prefix on the Data to serve as the DUPSORT key.
|
|
* (DUPFIXED saves 8 bytes per record.)
|
|
*
|
|
* The output_amounts table doesn't use a dummy key, but uses DUPSORT.
|
|
*/
|
|
|
|
const char* const LMDB_BLOCKS = "blocks";
|
|
const char* const LMDB_BLOCK_HEIGHTS = "block_heights";
|
|
const char* const LMDB_BLOCK_INFO = "block_info";
|
|
|
|
const char* const LMDB_TXS = "txs";
|
|
const char* const LMDB_TXS_PRUNED = "txs_pruned";
|
|
const char* const LMDB_TXS_PRUNABLE = "txs_prunable";
|
|
const char* const LMDB_TXS_PRUNABLE_HASH = "txs_prunable_hash";
|
|
const char* const LMDB_TXS_PRUNABLE_TIP = "txs_prunable_tip";
|
|
const char* const LMDB_TX_INDICES = "tx_indices";
|
|
const char* const LMDB_TX_OUTPUTS = "tx_outputs";
|
|
|
|
const char* const LMDB_OUTPUT_TXS = "output_txs";
|
|
const char* const LMDB_OUTPUT_AMOUNTS = "output_amounts";
|
|
const char* const LMDB_OUTPUT_TYPES = "output_types";
|
|
const char* const LMDB_SPENT_KEYS = "spent_keys";
|
|
|
|
const char* const LMDB_TXPOOL_META = "txpool_meta";
|
|
const char* const LMDB_TXPOOL_BLOB = "txpool_blob";
|
|
|
|
const char* const LMDB_ALT_BLOCKS = "alt_blocks";
|
|
|
|
const char* const LMDB_HF_STARTING_HEIGHTS = "hf_starting_heights";
|
|
const char* const LMDB_HF_VERSIONS = "hf_versions";
|
|
|
|
const char* const LMDB_PROPERTIES = "properties";
|
|
|
|
const char* const LMDB_CIRC_SUPPLY = "circ_supply";
|
|
const char* const LMDB_CIRC_SUPPLY_TALLY = "circ_supply_tally";
|
|
|
|
/**
|
|
* We have the following information that will go into a "yield_txs" table in the blockchain:
|
|
*
|
|
* block_height (uint64_t) (this is the key field)
|
|
* ------------------------------------------------------------
|
|
* txn_hash (crypto:hash) (so we can verify)
|
|
* dest_address (crypto::key) (where to send the yield)
|
|
* amount_locked (uint64_t) (how much was locked)
|
|
*
|
|
* We also have the following information that will go into a "yield_blocks" table:
|
|
*
|
|
* block_height (uint64_t) (this is the key field)
|
|
* ------------------------------------------------------------
|
|
* slippage_amount (uint64_t) (amount needed to determine yield payout for the block)
|
|
* locked_coins (uint64_t) (total number of coins locked at this height)
|
|
* locked_coins_total (uint64_t) (total number of coins locked at this height)
|
|
* network_health (uint8_t) (a fudge factor used to adjust the slippage:yield ratio dynamically)
|
|
*
|
|
* So, let's say that we have a block height h for which we want to assess the yield payments. First off,
|
|
* we are ONLY interested in making ANY payment if we have YIELD.block_height == h + 21600 (i.e. the yield
|
|
* TX has matured).
|
|
*
|
|
* Now, to calculate the payable yield, we need to know:
|
|
* # how much slippage is burnt from each of the (21,600) blocks (and therefore how much yield is payable)
|
|
* (this is "slippage_amount")
|
|
* # the total number of coins that are locked for yield for each of the (21,600) blocks
|
|
* (this is "coins_locked")
|
|
*
|
|
* Given this information, we would (for _each_ yield TX that matures in the current block)
|
|
* 1. perform the sum "yield_amount" = "slippage_amount" * "network_health" / "100" for each block
|
|
* 2. perform the sum "result" = "yield_amount" * "amount_locked" / "coins_locked" for each block
|
|
* 3. perform the aggregation of all "result" values to determine the total yield payable
|
|
*/
|
|
const char* const LMDB_YIELD_TXS = "yield_txs";
|
|
const char* const LMDB_YIELD_BLOCKS = "yield_blocks";
|
|
const char* const LMDB_AUDIT_TXS = "audit_txs";
|
|
const char* const LMDB_AUDIT_BLOCKS = "audit_blocks";
|
|
|
|
const char zerokey[8] = {0};
|
|
const MDB_val zerokval = { sizeof(zerokey), (void *)zerokey };
|
|
|
|
const std::string lmdb_error(const std::string& error_string, int mdb_res)
|
|
{
|
|
const std::string full_string = error_string + mdb_strerror(mdb_res);
|
|
return full_string;
|
|
}
|
|
|
|
inline void lmdb_db_open(MDB_txn* txn, const char* name, int flags, MDB_dbi& dbi, const std::string& error_string)
|
|
{
|
|
if (auto res = mdb_dbi_open(txn, name, flags, &dbi))
|
|
throw0(cryptonote::DB_OPEN_FAILURE((lmdb_error(error_string + " : ", res) + std::string(" - you may want to start with --db-salvage")).c_str()));
|
|
}
|
|
|
|
|
|
} // anonymous namespace
|
|
|
|
#define CURSOR(name) \
|
|
if (!m_cur_ ## name) { \
|
|
int result = mdb_cursor_open(*m_write_txn, m_ ## name, &m_cur_ ## name); \
|
|
if (result) \
|
|
throw0(DB_ERROR(lmdb_error("Failed to open cursor: ", result).c_str())); \
|
|
}
|
|
|
|
#define RCURSOR(name) \
|
|
if (!m_cur_ ## name) { \
|
|
int result = mdb_cursor_open(m_txn, m_ ## name, (MDB_cursor **)&m_cur_ ## name); \
|
|
if (result) \
|
|
throw0(DB_ERROR(lmdb_error("Failed to open cursor: ", result).c_str())); \
|
|
if (m_cursors != &m_wcursors) \
|
|
m_tinfo->m_ti_rflags.m_rf_ ## name = true; \
|
|
} else if (m_cursors != &m_wcursors && !m_tinfo->m_ti_rflags.m_rf_ ## name) { \
|
|
int result = mdb_cursor_renew(m_txn, m_cur_ ## name); \
|
|
if (result) \
|
|
throw0(DB_ERROR(lmdb_error("Failed to renew cursor: ", result).c_str())); \
|
|
m_tinfo->m_ti_rflags.m_rf_ ## name = true; \
|
|
}
|
|
|
|
namespace cryptonote
|
|
{
|
|
|
|
typedef struct mdb_block_info_1
|
|
{
|
|
uint64_t bi_height;
|
|
uint64_t bi_timestamp;
|
|
uint64_t bi_coins;
|
|
uint64_t bi_weight; // a size_t really but we need 32-bit compat
|
|
uint64_t bi_diff_lo;
|
|
uint64_t bi_diff_hi;
|
|
crypto::hash bi_hash;
|
|
uint64_t bi_cum_rct;
|
|
uint64_t bi_long_term_block_weight;
|
|
oracle::pricing_record bi_pricing_record;
|
|
oracle::asset_type_counts bi_cum_rct_by_asset_type;
|
|
} mdb_block_info_1;
|
|
|
|
typedef mdb_block_info_1 mdb_block_info;
|
|
|
|
typedef struct blk_height {
|
|
crypto::hash bh_hash;
|
|
uint64_t bh_height;
|
|
} blk_height;
|
|
|
|
typedef struct pre_rct_outkey {
|
|
uint64_t amount_index;
|
|
uint64_t output_id;
|
|
pre_rct_output_data_t data;
|
|
} pre_rct_outkey;
|
|
|
|
typedef struct outkey {
|
|
uint64_t amount_index;
|
|
uint64_t output_id;
|
|
output_data_t data;
|
|
} outkey;
|
|
|
|
typedef struct outtx {
|
|
uint64_t output_id;
|
|
crypto::hash tx_hash;
|
|
uint64_t local_index;
|
|
} outtx;
|
|
|
|
typedef struct outassettype {
|
|
uint64_t asset_type_output_index;
|
|
uint64_t output_id;
|
|
} outassettype;
|
|
|
|
typedef struct circ_supply_tally {
|
|
bool is_negative;
|
|
uint64_t amount_hi;
|
|
uint64_t amount_lo;
|
|
} circ_supply_tally;
|
|
|
|
std::atomic<uint64_t> mdb_txn_safe::num_active_txns{0};
|
|
std::atomic_flag mdb_txn_safe::creation_gate = ATOMIC_FLAG_INIT;
|
|
|
|
mdb_threadinfo::~mdb_threadinfo()
|
|
{
|
|
MDB_cursor **cur = &m_ti_rcursors.m_txc_blocks;
|
|
unsigned i;
|
|
for (i=0; i<sizeof(mdb_txn_cursors)/sizeof(MDB_cursor *); i++)
|
|
if (cur[i])
|
|
mdb_cursor_close(cur[i]);
|
|
if (m_ti_rtxn)
|
|
mdb_txn_abort(m_ti_rtxn);
|
|
}
|
|
|
|
mdb_txn_safe::mdb_txn_safe(const bool check) : m_txn(NULL), m_tinfo(NULL), m_check(check)
|
|
{
|
|
if (check)
|
|
{
|
|
while (creation_gate.test_and_set());
|
|
num_active_txns++;
|
|
creation_gate.clear();
|
|
}
|
|
}
|
|
|
|
mdb_txn_safe::~mdb_txn_safe()
|
|
{
|
|
if (!m_check)
|
|
return;
|
|
LOG_PRINT_L3("mdb_txn_safe: destructor");
|
|
if (m_tinfo != nullptr)
|
|
{
|
|
mdb_txn_reset(m_tinfo->m_ti_rtxn);
|
|
memset(&m_tinfo->m_ti_rflags, 0, sizeof(m_tinfo->m_ti_rflags));
|
|
} else if (m_txn != nullptr)
|
|
{
|
|
if (m_batch_txn) // this is a batch txn and should have been handled before this point for safety
|
|
{
|
|
LOG_PRINT_L0("WARNING: mdb_txn_safe: m_txn is a batch txn and it's not NULL in destructor - calling mdb_txn_abort()");
|
|
}
|
|
else
|
|
{
|
|
// Example of when this occurs: a lookup fails, so a read-only txn is
|
|
// aborted through this destructor. However, successful read-only txns
|
|
// ideally should have been committed when done and not end up here.
|
|
//
|
|
// NOTE: not sure if this is ever reached for a non-batch write
|
|
// transaction, but it's probably not ideal if it did.
|
|
LOG_PRINT_L3("mdb_txn_safe: m_txn not NULL in destructor - calling mdb_txn_abort()");
|
|
}
|
|
mdb_txn_abort(m_txn);
|
|
}
|
|
num_active_txns--;
|
|
}
|
|
|
|
void mdb_txn_safe::uncheck()
|
|
{
|
|
num_active_txns--;
|
|
m_check = false;
|
|
}
|
|
|
|
void mdb_txn_safe::commit(std::string message)
|
|
{
|
|
if (message.size() == 0)
|
|
{
|
|
message = "Failed to commit a transaction to the db";
|
|
}
|
|
|
|
if (auto result = mdb_txn_commit(m_txn))
|
|
{
|
|
m_txn = nullptr;
|
|
throw0(DB_ERROR(lmdb_error(message + ": ", result).c_str()));
|
|
}
|
|
m_txn = nullptr;
|
|
}
|
|
|
|
void mdb_txn_safe::abort()
|
|
{
|
|
LOG_PRINT_L3("mdb_txn_safe: abort()");
|
|
if(m_txn != nullptr)
|
|
{
|
|
mdb_txn_abort(m_txn);
|
|
m_txn = nullptr;
|
|
}
|
|
else
|
|
{
|
|
LOG_PRINT_L0("WARNING: mdb_txn_safe: abort() called, but m_txn is NULL");
|
|
}
|
|
}
|
|
|
|
uint64_t mdb_txn_safe::num_active_tx() const
|
|
{
|
|
return num_active_txns;
|
|
}
|
|
|
|
void mdb_txn_safe::prevent_new_txns()
|
|
{
|
|
while (creation_gate.test_and_set());
|
|
}
|
|
|
|
void mdb_txn_safe::wait_no_active_txns()
|
|
{
|
|
while (num_active_txns > 0);
|
|
}
|
|
|
|
void mdb_txn_safe::allow_new_txns()
|
|
{
|
|
creation_gate.clear();
|
|
}
|
|
|
|
void mdb_txn_safe::increment_txns(int i)
|
|
{
|
|
num_active_txns += i;
|
|
}
|
|
|
|
#define TXN_PREFIX(flags); \
|
|
mdb_txn_safe auto_txn; \
|
|
mdb_txn_safe* txn_ptr = &auto_txn; \
|
|
if (m_batch_active) \
|
|
txn_ptr = m_write_txn; \
|
|
else \
|
|
{ \
|
|
if (auto mdb_res = lmdb_txn_begin(m_env, NULL, flags, auto_txn)) \
|
|
throw0(DB_ERROR(lmdb_error(std::string("Failed to create a transaction for the db in ")+__FUNCTION__+": ", mdb_res).c_str())); \
|
|
} \
|
|
|
|
#define TXN_PREFIX_RDONLY() \
|
|
MDB_txn *m_txn; \
|
|
mdb_txn_cursors *m_cursors; \
|
|
mdb_txn_safe auto_txn; \
|
|
bool my_rtxn = block_rtxn_start(&m_txn, &m_cursors); \
|
|
if (my_rtxn) auto_txn.m_tinfo = m_tinfo.get(); \
|
|
else auto_txn.uncheck()
|
|
#define TXN_POSTFIX_RDONLY()
|
|
|
|
#define TXN_POSTFIX_SUCCESS() \
|
|
do { \
|
|
if (! m_batch_active) \
|
|
auto_txn.commit(); \
|
|
} while(0)
|
|
|
|
void lmdb_resized(MDB_env *env, int isactive)
|
|
{
|
|
mdb_txn_safe::prevent_new_txns();
|
|
|
|
MGINFO("LMDB map resize detected.");
|
|
|
|
MDB_envinfo mei;
|
|
|
|
mdb_env_info(env, &mei);
|
|
uint64_t old = mei.me_mapsize;
|
|
|
|
if (isactive)
|
|
mdb_txn_safe::increment_txns(-1);
|
|
mdb_txn_safe::wait_no_active_txns();
|
|
if (isactive)
|
|
mdb_txn_safe::increment_txns(1);
|
|
|
|
int result = mdb_env_set_mapsize(env, 0);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to set new mapsize: ", result).c_str()));
|
|
|
|
mdb_env_info(env, &mei);
|
|
uint64_t new_mapsize = mei.me_mapsize;
|
|
|
|
MGINFO("LMDB Mapsize increased." << " Old: " << old / (1024 * 1024) << "MiB" << ", New: " << new_mapsize / (1024 * 1024) << "MiB");
|
|
|
|
mdb_txn_safe::allow_new_txns();
|
|
}
|
|
|
|
inline int lmdb_txn_begin(MDB_env *env, MDB_txn *parent, unsigned int flags, MDB_txn **txn)
|
|
{
|
|
int res = mdb_txn_begin(env, parent, flags, txn);
|
|
if (res == MDB_MAP_RESIZED) {
|
|
lmdb_resized(env, 1);
|
|
res = mdb_txn_begin(env, parent, flags, txn);
|
|
}
|
|
return res;
|
|
}
|
|
|
|
inline int lmdb_txn_renew(MDB_txn *txn)
|
|
{
|
|
int res = mdb_txn_renew(txn);
|
|
if (res == MDB_MAP_RESIZED) {
|
|
lmdb_resized(mdb_txn_env(txn), 0);
|
|
res = mdb_txn_renew(txn);
|
|
}
|
|
return res;
|
|
}
|
|
|
|
inline void BlockchainLMDB::check_open() const
|
|
{
|
|
if (!m_open)
|
|
throw0(DB_ERROR("DB operation attempted on a not-open DB instance"));
|
|
}
|
|
|
|
void BlockchainLMDB::do_resize(uint64_t increase_size)
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
CRITICAL_REGION_LOCAL(m_synchronization_lock);
|
|
const uint64_t add_size = 1LL << 30;
|
|
|
|
// check disk capacity
|
|
try
|
|
{
|
|
boost::filesystem::path path(m_folder);
|
|
boost::filesystem::space_info si = boost::filesystem::space(path);
|
|
if(si.available < add_size)
|
|
{
|
|
MERROR("!! WARNING: Insufficient free space to extend database !!: " <<
|
|
(si.available >> 20L) << " MB available, " << (add_size >> 20L) << " MB needed");
|
|
return;
|
|
}
|
|
}
|
|
catch(...)
|
|
{
|
|
// print something but proceed.
|
|
MWARNING("Unable to query free disk space.");
|
|
}
|
|
|
|
MDB_envinfo mei;
|
|
|
|
mdb_env_info(m_env, &mei);
|
|
|
|
MDB_stat mst;
|
|
|
|
mdb_env_stat(m_env, &mst);
|
|
|
|
// add 1Gb per resize, instead of doing a percentage increase
|
|
uint64_t new_mapsize = (uint64_t) mei.me_mapsize + add_size;
|
|
|
|
// If given, use increase_size instead of above way of resizing.
|
|
// This is currently used for increasing by an estimated size at start of new
|
|
// batch txn.
|
|
if (increase_size > 0)
|
|
new_mapsize = mei.me_mapsize + increase_size;
|
|
|
|
new_mapsize += (new_mapsize % mst.ms_psize);
|
|
|
|
mdb_txn_safe::prevent_new_txns();
|
|
|
|
if (m_write_txn != nullptr)
|
|
{
|
|
if (m_batch_active)
|
|
{
|
|
throw0(DB_ERROR("lmdb resizing not yet supported when batch transactions enabled!"));
|
|
}
|
|
else
|
|
{
|
|
throw0(DB_ERROR("attempting resize with write transaction in progress, this should not happen!"));
|
|
}
|
|
}
|
|
|
|
mdb_txn_safe::wait_no_active_txns();
|
|
|
|
int result = mdb_env_set_mapsize(m_env, new_mapsize);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to set new mapsize: ", result).c_str()));
|
|
|
|
MGINFO("LMDB Mapsize increased." << " Old: " << mei.me_mapsize / (1024 * 1024) << "MiB" << ", New: " << new_mapsize / (1024 * 1024) << "MiB");
|
|
|
|
mdb_txn_safe::allow_new_txns();
|
|
}
|
|
|
|
// threshold_size is used for batch transactions
|
|
bool BlockchainLMDB::need_resize(uint64_t threshold_size) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
#if defined(ENABLE_AUTO_RESIZE)
|
|
MDB_envinfo mei;
|
|
|
|
mdb_env_info(m_env, &mei);
|
|
|
|
MDB_stat mst;
|
|
|
|
mdb_env_stat(m_env, &mst);
|
|
|
|
// size_used doesn't include data yet to be committed, which can be
|
|
// significant size during batch transactions. For that, we estimate the size
|
|
// needed at the beginning of the batch transaction and pass in the
|
|
// additional size needed.
|
|
uint64_t size_used = mst.ms_psize * mei.me_last_pgno;
|
|
|
|
MDEBUG("DB map size: " << mei.me_mapsize);
|
|
MDEBUG("Space used: " << size_used);
|
|
MDEBUG("Space remaining: " << mei.me_mapsize - size_used);
|
|
MDEBUG("Size threshold: " << threshold_size);
|
|
float resize_percent = RESIZE_PERCENT;
|
|
MDEBUG(boost::format("Percent used: %.04f Percent threshold: %.04f") % (100.*size_used/mei.me_mapsize) % (100.*resize_percent));
|
|
|
|
if (threshold_size > 0)
|
|
{
|
|
if (mei.me_mapsize - size_used < threshold_size)
|
|
{
|
|
MINFO("Threshold met (size-based)");
|
|
return true;
|
|
}
|
|
else
|
|
return false;
|
|
}
|
|
|
|
if ((double)size_used / mei.me_mapsize > resize_percent)
|
|
{
|
|
MINFO("Threshold met (percent-based)");
|
|
return true;
|
|
}
|
|
return false;
|
|
#else
|
|
return false;
|
|
#endif
|
|
}
|
|
|
|
void BlockchainLMDB::check_and_resize_for_batch(uint64_t batch_num_blocks, uint64_t batch_bytes)
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
MTRACE("[" << __func__ << "] " << "checking DB size");
|
|
const uint64_t min_increase_size = 512 * (1 << 20);
|
|
uint64_t threshold_size = 0;
|
|
uint64_t increase_size = 0;
|
|
if (batch_num_blocks > 0)
|
|
{
|
|
threshold_size = get_estimated_batch_size(batch_num_blocks, batch_bytes);
|
|
MDEBUG("calculated batch size: " << threshold_size);
|
|
|
|
// The increased DB size could be a multiple of threshold_size, a fixed
|
|
// size increase (> threshold_size), or other variations.
|
|
//
|
|
// Currently we use the greater of threshold size and a minimum size. The
|
|
// minimum size increase is used to avoid frequent resizes when the batch
|
|
// size is set to a very small numbers of blocks.
|
|
increase_size = (threshold_size > min_increase_size) ? threshold_size : min_increase_size;
|
|
MDEBUG("increase size: " << increase_size);
|
|
}
|
|
|
|
// if threshold_size is 0 (i.e. number of blocks for batch not passed in), it
|
|
// will fall back to the percent-based threshold check instead of the
|
|
// size-based check
|
|
if (need_resize(threshold_size))
|
|
{
|
|
MGINFO("[batch] DB resize needed");
|
|
do_resize(increase_size);
|
|
}
|
|
}
|
|
|
|
uint64_t BlockchainLMDB::get_estimated_batch_size(uint64_t batch_num_blocks, uint64_t batch_bytes) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
uint64_t threshold_size = 0;
|
|
|
|
// batch size estimate * batch safety factor = final size estimate
|
|
// Takes into account "reasonable" block size increases in batch.
|
|
float batch_safety_factor = 1.7f;
|
|
float batch_fudge_factor = batch_safety_factor * batch_num_blocks;
|
|
// estimate of stored block expanded from raw block, including denormalization and db overhead.
|
|
// Note that this probably doesn't grow linearly with block size.
|
|
float db_expand_factor = 4.5f;
|
|
uint64_t num_prev_blocks = 500;
|
|
// For resizing purposes, allow for at least 4k average block size.
|
|
uint64_t min_block_size = 4 * 1024;
|
|
|
|
uint64_t block_stop = 0;
|
|
uint64_t m_height = height();
|
|
if (m_height > 1)
|
|
block_stop = m_height - 1;
|
|
uint64_t block_start = 0;
|
|
if (block_stop >= num_prev_blocks)
|
|
block_start = block_stop - num_prev_blocks + 1;
|
|
uint32_t num_blocks_used = 0;
|
|
uint64_t total_block_size = 0;
|
|
MDEBUG("[" << __func__ << "] " << "m_height: " << m_height << " block_start: " << block_start << " block_stop: " << block_stop);
|
|
size_t avg_block_size = 0;
|
|
if (batch_bytes)
|
|
{
|
|
avg_block_size = batch_bytes / batch_num_blocks;
|
|
goto estim;
|
|
}
|
|
if (m_height == 0)
|
|
{
|
|
MDEBUG("No existing blocks to check for average block size");
|
|
}
|
|
else if (m_cum_count >= num_prev_blocks)
|
|
{
|
|
avg_block_size = m_cum_size / m_cum_count;
|
|
MDEBUG("average block size across recent " << m_cum_count << " blocks: " << avg_block_size);
|
|
m_cum_size = 0;
|
|
m_cum_count = 0;
|
|
}
|
|
else
|
|
{
|
|
{
|
|
TXN_PREFIX_RDONLY();
|
|
for (uint64_t block_num = block_start; block_num <= block_stop; ++block_num)
|
|
{
|
|
// we have access to block weight, which will be greater or equal to block size,
|
|
// so use this as a proxy. If it's too much off, we might have to check actual size,
|
|
// which involves reading more data, so is not really wanted
|
|
size_t block_weight = get_block_weight(block_num);
|
|
total_block_size += block_weight;
|
|
// Track number of blocks being totalled here instead of assuming, in case
|
|
// some blocks were to be skipped for being outliers.
|
|
++num_blocks_used;
|
|
}
|
|
}
|
|
avg_block_size = total_block_size / (num_blocks_used ? num_blocks_used : 1);
|
|
MDEBUG("average block size across recent " << num_blocks_used << " blocks: " << avg_block_size);
|
|
}
|
|
estim:
|
|
if (avg_block_size < min_block_size)
|
|
avg_block_size = min_block_size;
|
|
MDEBUG("estimated average block size for batch: " << avg_block_size);
|
|
|
|
// bigger safety margin on smaller block sizes
|
|
if (batch_fudge_factor < 5000.0)
|
|
batch_fudge_factor = 5000.0;
|
|
threshold_size = avg_block_size * db_expand_factor * batch_fudge_factor;
|
|
return threshold_size;
|
|
}
|
|
|
|
int BlockchainLMDB::get_audit_block_info(const uint64_t height, audit_block_info& abi) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
// Clear the ABI, just in case
|
|
std::memset(&abi, 0, sizeof(struct audit_block_info));
|
|
|
|
// Query for the matured AUDIT_BLOCK_INFO information
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(audit_blocks);
|
|
|
|
MDB_val v;
|
|
MDB_val_set(k, height);
|
|
int ret = mdb_cursor_get(m_cur_audit_blocks, &k, &v, MDB_SET);
|
|
if (ret == MDB_NOTFOUND) {
|
|
LOG_ERROR("Failed to locate ABI for block height " << height);
|
|
return ret;
|
|
}
|
|
if (ret)
|
|
throw0(DB_ERROR(lmdb_error("Failed to enumerate audit block info: ", ret).c_str()));
|
|
|
|
audit_block_info *p = (audit_block_info*)v.mv_data;
|
|
abi = *p;
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
|
|
// Return success to caller
|
|
return ret;
|
|
}
|
|
|
|
int BlockchainLMDB::get_audit_tx_info(const uint64_t height, std::vector<yield_tx_info>& ati_container) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
// Clear the container
|
|
ati_container.clear();
|
|
|
|
// Query for the (presumably matured) AUDIT_TX_INFO information (we actually reuse YIELD_TX_INFO for this)
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(audit_txs);
|
|
|
|
MDB_val v;
|
|
MDB_val_set(k, height);
|
|
MDB_cursor_op op = MDB_SET;
|
|
while (1)
|
|
{
|
|
int ret = mdb_cursor_get(m_cur_audit_txs, &k, &v, op);
|
|
op = MDB_NEXT_DUP;
|
|
if (ret == MDB_NOTFOUND)
|
|
break;
|
|
if (ret)
|
|
throw0(DB_ERROR(lmdb_error("Failed to enumerate audit TX info: ", ret).c_str()));
|
|
|
|
// Get the data
|
|
yield_tx_info *p = (yield_tx_info*)v.mv_data;
|
|
// Push result back into the container
|
|
ati_container.emplace_back(*p);
|
|
// Update the height retrospectively (because the DB stores the count of elements there to handle duplicates, because it's rubbish)
|
|
ati_container.back().block_height = height;
|
|
}
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
|
|
// Return success to caller
|
|
return 0;
|
|
}
|
|
|
|
int BlockchainLMDB::get_yield_block_info(const uint64_t height, yield_block_info& ybi) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
// Clear the YBI, just in case
|
|
std::memset(&ybi, 0, sizeof(struct yield_block_info));
|
|
|
|
// Query for the matured YIELD_BLOCK_INFO information
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(yield_blocks);
|
|
|
|
MDB_val v;
|
|
MDB_val_set(k, height);
|
|
int ret = mdb_cursor_get(m_cur_yield_blocks, &k, &v, MDB_SET);
|
|
if (ret == MDB_NOTFOUND) {
|
|
LOG_ERROR("Failed to locate YBI for block height " << height);
|
|
return ret;
|
|
}
|
|
if (ret)
|
|
throw0(DB_ERROR(lmdb_error("Failed to enumerate yield block info: ", ret).c_str()));
|
|
|
|
yield_block_info *p = (yield_block_info*)v.mv_data;
|
|
ybi = *p;
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
|
|
// Return success to caller
|
|
return ret;
|
|
}
|
|
|
|
int BlockchainLMDB::get_yield_tx_info(const uint64_t height, std::vector<yield_tx_info>& yti_container) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
// Clear the container
|
|
yti_container.clear();
|
|
|
|
// Query for the (presumably matured) YIELD_TX_INFO information
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(yield_txs);
|
|
|
|
MDB_val v;
|
|
MDB_val_set(k, height);
|
|
MDB_cursor_op op = MDB_SET;
|
|
while (1)
|
|
{
|
|
int ret = mdb_cursor_get(m_cur_yield_txs, &k, &v, op);
|
|
op = MDB_NEXT_DUP;
|
|
if (ret == MDB_NOTFOUND)
|
|
break;
|
|
if (ret)
|
|
throw0(DB_ERROR(lmdb_error("Failed to enumerate yield TX info: ", ret).c_str()));
|
|
|
|
// Get the data
|
|
yield_tx_info *p = (yield_tx_info*)v.mv_data;
|
|
// Push result back into the container
|
|
yti_container.emplace_back(*p);
|
|
// Update the height retrospectively (because the DB stores the count of elements there to handle duplicates, because it's rubbish)
|
|
yti_container.back().block_height = height;
|
|
}
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
|
|
// Return success to caller
|
|
return 0;
|
|
}
|
|
|
|
void BlockchainLMDB::add_block(const block& blk, size_t block_weight, uint64_t long_term_block_weight, const difficulty_type& cumulative_difficulty, const uint64_t& coins_generated, uint64_t num_rct_outs, oracle::asset_type_counts& cum_rct_by_asset_type, const crypto::hash& blk_hash, uint64_t slippage_total, uint64_t yield_total, uint64_t audit_total, const cryptonote::network_type nettype, cryptonote::yield_block_info& ybi, cryptonote::audit_block_info& abi)
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
mdb_txn_cursors *m_cursors = &m_wcursors;
|
|
uint64_t m_height = height();
|
|
|
|
CURSOR(block_heights)
|
|
blk_height bh = {blk_hash, m_height};
|
|
MDB_val_set(val_h, bh);
|
|
if (mdb_cursor_get(m_cur_block_heights, (MDB_val *)&zerokval, &val_h, MDB_GET_BOTH) == 0)
|
|
throw1(BLOCK_EXISTS("Attempting to add block that's already in the db"));
|
|
|
|
if (m_height > 0)
|
|
{
|
|
MDB_val_set(parent_key, blk.prev_id);
|
|
int result = mdb_cursor_get(m_cur_block_heights, (MDB_val *)&zerokval, &parent_key, MDB_GET_BOTH);
|
|
if (result)
|
|
{
|
|
LOG_PRINT_L3("m_height: " << m_height);
|
|
LOG_PRINT_L3("parent_key: " << blk.prev_id);
|
|
throw0(DB_ERROR(lmdb_error("Failed to get top block hash to check for new block's parent: ", result).c_str()));
|
|
}
|
|
blk_height *prev = (blk_height *)parent_key.mv_data;
|
|
if (prev->bh_height != m_height - 1)
|
|
throw0(BLOCK_PARENT_DNE("Top block is not new block's parent"));
|
|
}
|
|
|
|
int result = 0;
|
|
|
|
// Create the AUDIT_BLOCK_INFO instance for this block
|
|
CURSOR(audit_blocks)
|
|
abi.block_height = m_height;
|
|
abi.locked_coins_this_block = audit_total;
|
|
|
|
// Put the YBI into the table
|
|
MDB_val_set(key, m_height);
|
|
MDB_val_set(abi_val, abi);
|
|
result = mdb_cursor_put(m_cur_audit_blocks, &key, &abi_val, MDB_APPEND);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to add ABI to db: ", result).c_str()));
|
|
|
|
CURSOR(yield_blocks)
|
|
yield_block_info ybi_matured, ybi_prev;
|
|
uint64_t yield_lock_period = cryptonote::get_config(nettype).STAKE_LOCK_PERIOD;
|
|
if (m_height > yield_lock_period) {
|
|
uint64_t height_matured = m_height - yield_lock_period - 1;
|
|
result = get_yield_block_info(height_matured, ybi_matured);
|
|
if (result)
|
|
{
|
|
throw0(DB_ERROR(lmdb_error("Failed to get YBI for matured height: ", result).c_str()));
|
|
}
|
|
} else {
|
|
// Chain is too new - just clear the memory of the "matured" YBI struct
|
|
std::memset(&ybi_matured, 0, sizeof(struct yield_block_info));
|
|
ybi_prev.network_health_percentage = 100;
|
|
}
|
|
if (m_height >= 1) {
|
|
// Query for the latest YIELD_BLOCK_INFO information
|
|
result = get_yield_block_info(m_height - 1, ybi_prev);
|
|
if (result)
|
|
{
|
|
throw0(DB_ERROR(lmdb_error("Failed to get YBI for last block: ", result).c_str()));
|
|
}
|
|
} else {
|
|
// Chain is too new - just clear the memory of the "prev" YBI struct
|
|
std::memset(&ybi_prev, 0, sizeof(struct yield_block_info));
|
|
ybi_prev.network_health_percentage = 100;
|
|
}
|
|
|
|
// Create the YIELD_BLOCK_INFO instance for this block
|
|
ybi.block_height = m_height;
|
|
ybi.slippage_total_this_block = slippage_total;
|
|
ybi.locked_coins_this_block = yield_total;
|
|
ybi.locked_coins_tally = ybi_prev.locked_coins_tally - ybi_matured.locked_coins_this_block + yield_total;
|
|
ybi.network_health_percentage = 100;
|
|
|
|
// Put the YBI into the table
|
|
MDB_val_set(ybi_val, ybi);
|
|
result = mdb_cursor_put(m_cur_yield_blocks, &key, &ybi_val, MDB_APPEND);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to add YBI to db: ", result).c_str()));
|
|
|
|
CURSOR(blocks)
|
|
CURSOR(block_info)
|
|
|
|
// this call to mdb_cursor_put will change height()
|
|
cryptonote::blobdata block_blob(block_to_blob(blk));
|
|
MDB_val_sized(blob, block_blob);
|
|
result = mdb_cursor_put(m_cur_blocks, &key, &blob, MDB_APPEND);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to add block blob to db transaction: ", result).c_str()));
|
|
|
|
mdb_block_info bi;
|
|
bi.bi_height = m_height;
|
|
bi.bi_timestamp = blk.timestamp;
|
|
bi.bi_coins = coins_generated;
|
|
bi.bi_weight = block_weight;
|
|
bi.bi_diff_hi = ((cumulative_difficulty >> 64) & 0xffffffffffffffff).convert_to<uint64_t>();
|
|
bi.bi_diff_lo = (cumulative_difficulty & 0xffffffffffffffff).convert_to<uint64_t>();
|
|
bi.bi_hash = blk_hash;
|
|
bi.bi_cum_rct = num_rct_outs;
|
|
bi.bi_pricing_record = blk.pricing_record;
|
|
if (m_height > 0)
|
|
{
|
|
uint64_t last_height = m_height-1;
|
|
MDB_val_set(h, last_height);
|
|
if ((result = mdb_cursor_get(m_cur_block_info, (MDB_val *)&zerokval, &h, MDB_GET_BOTH)))
|
|
throw1(BLOCK_DNE(lmdb_error("Failed to get block info: ", result).c_str()));
|
|
const mdb_block_info *bi_prev = (const mdb_block_info*)h.mv_data;
|
|
bi.bi_cum_rct += bi_prev->bi_cum_rct;
|
|
for (auto const& asset_type : oracle::ASSET_TYPES)
|
|
cum_rct_by_asset_type.add(asset_type, bi_prev->bi_cum_rct_by_asset_type[asset_type]);
|
|
}
|
|
bi.bi_long_term_block_weight = long_term_block_weight;
|
|
bi.bi_cum_rct_by_asset_type = cum_rct_by_asset_type;
|
|
|
|
MDB_val_set(val, bi);
|
|
result = mdb_cursor_put(m_cur_block_info, (MDB_val *)&zerokval, &val, MDB_APPENDDUP);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to add block info to db transaction: ", result).c_str()));
|
|
|
|
result = mdb_cursor_put(m_cur_block_heights, (MDB_val *)&zerokval, &val_h, 0);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to add block height by hash to db transaction: ", result).c_str()));
|
|
|
|
// we use weight as a proxy for size, since we don't have size but weight is >= size
|
|
// and often actually equal
|
|
m_cum_size += block_weight;
|
|
m_cum_count++;
|
|
}
|
|
|
|
void BlockchainLMDB::remove_block()
|
|
{
|
|
int result;
|
|
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
uint64_t m_height = height();
|
|
|
|
if (m_height == 0)
|
|
throw0(BLOCK_DNE ("Attempting to remove block from an empty blockchain"));
|
|
|
|
mdb_txn_cursors *m_cursors = &m_wcursors;
|
|
CURSOR(block_info)
|
|
CURSOR(block_heights)
|
|
CURSOR(blocks)
|
|
CURSOR(circ_supply_tally)
|
|
CURSOR(yield_blocks)
|
|
CURSOR(audit_blocks)
|
|
MDB_val_copy<uint64_t> k(m_height - 1);
|
|
MDB_val h = k;
|
|
if ((result = mdb_cursor_get(m_cur_block_info, (MDB_val *)&zerokval, &h, MDB_GET_BOTH)))
|
|
throw1(BLOCK_DNE(lmdb_error("Attempting to remove block that's not in the db: ", result).c_str()));
|
|
|
|
// must use h now; deleting from m_block_info will invalidate it
|
|
mdb_block_info *bi = (mdb_block_info *)h.mv_data;
|
|
blk_height bh = {bi->bi_hash, 0};
|
|
h.mv_data = (void *)&bh;
|
|
h.mv_size = sizeof(bh);
|
|
if ((result = mdb_cursor_get(m_cur_block_heights, (MDB_val *)&zerokval, &h, MDB_GET_BOTH)))
|
|
throw1(DB_ERROR(lmdb_error("Failed to locate block height by hash for removal: ", result).c_str()));
|
|
if ((result = mdb_cursor_del(m_cur_block_heights, 0)))
|
|
throw1(DB_ERROR(lmdb_error("Failed to add removal of block height by hash to db transaction: ", result).c_str()));
|
|
|
|
if ((result = mdb_cursor_del(m_cur_blocks, 0)))
|
|
throw1(DB_ERROR(lmdb_error("Failed to add removal of block to db transaction: ", result).c_str()));
|
|
|
|
if ((result = mdb_cursor_del(m_cur_block_info, 0)))
|
|
throw1(DB_ERROR(lmdb_error("Failed to add removal of block info to db transaction: ", result).c_str()));
|
|
|
|
MDB_val_copy<uint64_t> k2(m_height - 1);
|
|
MDB_val v = k2;
|
|
if ((result = mdb_cursor_get(m_cur_yield_blocks, &k2, NULL, MDB_SET)))
|
|
throw1(BLOCK_DNE(lmdb_error("Attempting to remove yield block info that's not in the db: ", result).c_str()));
|
|
if ((result = mdb_cursor_del(m_cur_yield_blocks, 0)))
|
|
throw1(DB_ERROR(lmdb_error("Failed to add removal of yield block info to db transaction: ", result).c_str()));
|
|
|
|
// Is the block within an audit window?
|
|
if ((result = mdb_cursor_get(m_cur_audit_blocks, &k2, NULL, MDB_SET)) == 0)
|
|
if ((result = mdb_cursor_del(m_cur_audit_blocks, 0)))
|
|
throw1(DB_ERROR(lmdb_error("Failed to add removal of audit block info to db transaction: ", result).c_str()));
|
|
}
|
|
|
|
boost::multiprecision::int128_t
|
|
import_tally_from_cst(circ_supply_tally *cst)
|
|
{
|
|
// rebuild the int128_t tally from the two stored uint64_t integers
|
|
boost::multiprecision::int128_t tally = cst->amount_hi;
|
|
tally <<= 64;
|
|
tally |= cst->amount_lo;
|
|
|
|
// The boolean is_negative is kept separate because Boost 128-bit signed integers
|
|
// use 128 bits of precision plus an extra sign bit. If tally is supposed to be negative,
|
|
// need to flip tally to negative to get its correct value for subsequent arithmetic.
|
|
// See Boost docs on multiprecision ints for more ("Things you should know when using this type"):
|
|
// https://www.boost.org/doc/libs/1_72_0/libs/multiprecision/doc/html/boost_multiprecision/tut/ints/cpp_int.html
|
|
if (cst->is_negative)
|
|
tally = -tally;
|
|
|
|
return tally;
|
|
}
|
|
|
|
int read_circulating_supply_data(MDB_cursor *cur_circ_supply_tally, MDB_val idx, boost::multiprecision::int128_t& tally)
|
|
{
|
|
MDB_val vcst;
|
|
circ_supply_tally cst;
|
|
int result = mdb_cursor_get(cur_circ_supply_tally, &idx, &vcst, MDB_SET);
|
|
if (result == MDB_NOTFOUND) {
|
|
LOG_PRINT_L1("Failed to obtain circulating supply - must be first TX with this asset");
|
|
tally = 0;
|
|
} else if (!result) {
|
|
cst = *(circ_supply_tally*) vcst.mv_data;
|
|
tally = import_tally_from_cst(&cst);
|
|
} else {
|
|
throw0(DB_ERROR(lmdb_error("Failed to obtain tally for circulating supply: ", result).c_str()));
|
|
tally = -1;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
void write_circulating_supply_data(MDB_cursor *cur_circ_supply_tally, MDB_val idx, boost::multiprecision::int128_t tally)
|
|
{
|
|
// packing the Boost 128-bit signed integer into 2 uint64's + a sign bit
|
|
circ_supply_tally cst;
|
|
|
|
// From the Boost docs, bitwise operations on negative values "Yields the value, but not the bit pattern, that would result from
|
|
// performing the operation on a 2's complement integer type." This means in order to keep bit patterns consistent during bitwise ops,
|
|
// we need to turn a negative Boost 128-bit integer into its positive value, perform bitwise operations on
|
|
// the positive Boost 128 bit signed integer, and store the sign bit to keep track when reading back from the DB.
|
|
// https://www.boost.org/doc/libs/1_72_0/libs/multiprecision/doc/html/boost_multiprecision/tut/ints/cpp_int.html
|
|
if (tally < 0)
|
|
{
|
|
tally = -tally;
|
|
cst.is_negative = true;
|
|
}
|
|
else
|
|
cst.is_negative = false;
|
|
|
|
// export into two uint64_t integers to store in LMDB as familiar native types
|
|
cst.amount_hi = ((tally >> 64) & 0xffffffffffffffff).convert_to<uint64_t>();
|
|
cst.amount_lo = (tally & 0xffffffffffffffff).convert_to<uint64_t>();
|
|
|
|
MDB_val_set(nvs, cst);
|
|
int result = mdb_cursor_put(cur_circ_supply_tally, &idx, &nvs, 0);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to update tally for source circulating supply: ", result).c_str()));
|
|
}
|
|
|
|
uint64_t BlockchainLMDB::add_transaction_data(const crypto::hash& blk_hash, const std::pair<transaction, blobdata_ref>& txp, const crypto::hash& tx_hash, const crypto::hash& tx_prunable_hash, const bool miner_tx)
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
mdb_txn_cursors *m_cursors = &m_wcursors;
|
|
uint64_t m_height = height();
|
|
|
|
int result;
|
|
uint64_t tx_id = get_tx_count();
|
|
|
|
CURSOR(txs_pruned)
|
|
CURSOR(txs_prunable)
|
|
CURSOR(txs_prunable_hash)
|
|
CURSOR(txs_prunable_tip)
|
|
CURSOR(tx_indices)
|
|
CURSOR(circ_supply)
|
|
CURSOR(circ_supply_tally)
|
|
CURSOR(yield_txs)
|
|
CURSOR(audit_txs)
|
|
|
|
MDB_val_set(val_tx_id, tx_id);
|
|
MDB_val_set(val_h, tx_hash);
|
|
result = mdb_cursor_get(m_cur_tx_indices, (MDB_val *)&zerokval, &val_h, MDB_GET_BOTH);
|
|
if (result == 0) {
|
|
txindex *tip = (txindex *)val_h.mv_data;
|
|
throw1(TX_EXISTS(std::string("Attempting to add transaction that's already in the db (tx id ").append(boost::lexical_cast<std::string>(tip->data.tx_id)).append(")").c_str()));
|
|
} else if (result != MDB_NOTFOUND) {
|
|
throw1(DB_ERROR(lmdb_error(std::string("Error checking if tx index exists for tx hash ") + epee::string_tools::pod_to_hex(tx_hash) + ": ", result).c_str()));
|
|
}
|
|
|
|
const cryptonote::transaction &tx = txp.first;
|
|
txindex ti;
|
|
ti.key = tx_hash;
|
|
ti.data.tx_id = tx_id;
|
|
ti.data.unlock_time = tx.unlock_time;
|
|
ti.data.block_id = m_height; // we don't need blk_hash since we know m_height
|
|
|
|
val_h.mv_size = sizeof(ti);
|
|
val_h.mv_data = (void *)&ti;
|
|
|
|
result = mdb_cursor_put(m_cur_tx_indices, (MDB_val *)&zerokval, &val_h, 0);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to add tx data to db transaction: ", result).c_str()));
|
|
|
|
const cryptonote::blobdata_ref &blob = txp.second;
|
|
|
|
unsigned int unprunable_size = tx.unprunable_size;
|
|
if (unprunable_size == 0)
|
|
{
|
|
std::stringstream ss;
|
|
binary_archive<true> ba(ss);
|
|
bool r = const_cast<cryptonote::transaction&>(tx).serialize_base(ba);
|
|
if (!r)
|
|
throw0(DB_ERROR("Failed to serialize pruned tx"));
|
|
unprunable_size = ss.str().size();
|
|
}
|
|
|
|
if (unprunable_size > blob.size())
|
|
throw0(DB_ERROR("pruned tx size is larger than tx size"));
|
|
|
|
MDB_val pruned_blob = {unprunable_size, (void*)blob.data()};
|
|
result = mdb_cursor_put(m_cur_txs_pruned, &val_tx_id, &pruned_blob, MDB_APPEND);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to add pruned tx blob to db transaction: ", result).c_str()));
|
|
|
|
MDB_val prunable_blob = {blob.size() - unprunable_size, (void*)(blob.data() + unprunable_size)};
|
|
result = mdb_cursor_put(m_cur_txs_prunable, &val_tx_id, &prunable_blob, MDB_APPEND);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to add prunable tx blob to db transaction: ", result).c_str()));
|
|
|
|
if (get_blockchain_pruning_seed())
|
|
{
|
|
MDB_val_set(val_height, m_height);
|
|
result = mdb_cursor_put(m_cur_txs_prunable_tip, &val_tx_id, &val_height, 0);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to add prunable tx id to db transaction: ", result).c_str()));
|
|
}
|
|
|
|
if (tx.version > 1)
|
|
{
|
|
MDB_val_set(val_prunable_hash, tx_prunable_hash);
|
|
result = mdb_cursor_put(m_cur_txs_prunable_hash, &val_tx_id, &val_prunable_hash, MDB_APPEND);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to add prunable tx prunable hash to db transaction: ", result).c_str()));
|
|
}
|
|
|
|
const uint8_t hf_version = m_hardfork->get_ideal_version(m_height);
|
|
if (tx.type == cryptonote::transaction_type::MINER) {
|
|
|
|
// Update the circulating supply tally because of potentially burnt block_reward proportion
|
|
std::string miner_asset_type = "SAL";
|
|
if (hf_version >= HF_VERSION_SALVIUM_ONE_PROOFS) {
|
|
miner_asset_type = "SAL1";
|
|
}
|
|
|
|
MDB_val_copy<uint64_t> source_idx(cryptonote::asset_id_from_type(miner_asset_type));
|
|
boost::multiprecision::int128_t source_tally = 0;
|
|
result = read_circulating_supply_data(m_cur_circ_supply_tally, source_idx, source_tally);
|
|
if (result && result != MDB_NOTFOUND)
|
|
throw0(DB_ERROR(lmdb_error("Failed to get circulating supply tally when adding db transaction: ", result).c_str()));
|
|
boost::multiprecision::int128_t final_source_tally = source_tally;
|
|
for (const auto& out: tx.vout) {
|
|
|
|
// Sanity check - prevent overflow
|
|
if (final_source_tally > final_source_tally + out.amount)
|
|
throw0(DB_ERROR("numeric overflow detected when adding miner_tx for db transaction"));
|
|
|
|
// Fetch the amount for this output
|
|
final_source_tally += out.amount;
|
|
}
|
|
write_circulating_supply_data(m_cur_circ_supply_tally, source_idx, final_source_tally);
|
|
LOG_PRINT_L1("tx ID " << tx_id << "\n\tTally before burn = " << source_tally.str() << "\n\tTally after burn = " << final_source_tally.str());
|
|
|
|
MDB_val_copy<uint64_t> burn_idx(cryptonote::asset_id_from_type("BURN"));
|
|
boost::multiprecision::int128_t burn_tally = 0;
|
|
result = read_circulating_supply_data(m_cur_circ_supply_tally, burn_idx, burn_tally);
|
|
if (result && result != MDB_NOTFOUND)
|
|
throw0(DB_ERROR(lmdb_error("Failed to get circulating supply tally when adding db transaction: ", result).c_str()));
|
|
// Sanity check - prevent overflow
|
|
if (burn_tally > burn_tally + tx.amount_burnt)
|
|
throw0(DB_ERROR("burn overflow detected when adding miner_tx for db transaction"));
|
|
boost::multiprecision::int128_t final_burn_tally = burn_tally + tx.amount_burnt;
|
|
write_circulating_supply_data(m_cur_circ_supply_tally, burn_idx, final_burn_tally);
|
|
}
|
|
|
|
if (tx.type == cryptonote::transaction_type::BURN || tx.type == cryptonote::transaction_type::CONVERT || tx.type == cryptonote::transaction_type::STAKE || tx.type == cryptonote::transaction_type::AUDIT || tx.type == cryptonote::transaction_type::TRANSFER) {
|
|
|
|
// Get the current tally value for the source currency type
|
|
MDB_val_copy<uint64_t> source_idx(cryptonote::asset_id_from_type(tx.source_asset_type));
|
|
boost::multiprecision::int128_t source_tally = 0;
|
|
result = read_circulating_supply_data(m_cur_circ_supply_tally, source_idx, source_tally);
|
|
boost::multiprecision::int128_t final_source_tally = source_tally - tx.amount_burnt - tx.rct_signatures.txnFee;
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to get circulating supply tally when adding db transaction: ", result).c_str()));
|
|
// Sanity check - prevent underflow
|
|
if (source_tally < final_source_tally)
|
|
throw0(DB_ERROR("numeric underflow detected when processing C/B/S/A/T for db transaction"));
|
|
write_circulating_supply_data(m_cur_circ_supply_tally, source_idx, final_source_tally);
|
|
LOG_PRINT_L1("tx ID " << tx_id << "\n\tTally before burn = " << source_tally.str() << "\n\tTally after burn = " << final_source_tally.str());
|
|
|
|
MDB_val_copy<uint64_t> burn_idx(cryptonote::asset_id_from_type("BURN"));
|
|
boost::multiprecision::int128_t burn_tally = 0;
|
|
result = read_circulating_supply_data(m_cur_circ_supply_tally, burn_idx, burn_tally);
|
|
if (result && /*(m_height>0 ||*/ result != MDB_NOTFOUND/*)*/)
|
|
throw0(DB_ERROR(lmdb_error("Failed to get circulating supply tally when adding db transaction: ", result).c_str()));
|
|
boost::multiprecision::int128_t final_burn_tally = burn_tally + tx.amount_burnt + tx.rct_signatures.txnFee;
|
|
// Sanity check - prevent underflow
|
|
if (burn_tally > final_burn_tally)
|
|
throw0(DB_ERROR("burn overflow detected when adding tx for db transaction"));
|
|
write_circulating_supply_data(m_cur_circ_supply_tally, burn_idx, final_burn_tally);
|
|
}
|
|
|
|
if (tx.type == cryptonote::transaction_type::PROTOCOL) {
|
|
|
|
// Iterate over all of the outputs for a PROTOCOL_TX since they're all MINTED
|
|
std::map<uint32_t, uint64_t> minted_amounts;
|
|
for (const auto& out: tx.vout) {
|
|
|
|
// Fetch the amount and output_asset_type for this output
|
|
std::string asset_type = "";
|
|
bool ok = cryptonote::get_output_asset_type(out, asset_type);
|
|
if (!ok)
|
|
throw0(DB_ERROR("failed to get output asset type (needed to update the circulating supply data for the PROTOCOL_TX)"));
|
|
minted_amounts[cryptonote::asset_id_from_type(asset_type)] += out.amount;
|
|
}
|
|
|
|
// Now update the overall tally entries
|
|
for (const auto& asset: minted_amounts) {
|
|
|
|
// Get the current tally value for the source currency type
|
|
MDB_val_copy<uint64_t> source_idx(asset.first);
|
|
boost::multiprecision::int128_t source_tally = 0;
|
|
result = read_circulating_supply_data(m_cur_circ_supply_tally, source_idx, source_tally);
|
|
if (result == MDB_NOTFOUND)
|
|
throw0(DB_ERROR("minted asset not found"));
|
|
else if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to get circulating supply tally when adding db transaction: ", result).c_str()));
|
|
if (source_tally > source_tally + asset.second)
|
|
throw0(DB_ERROR("add_transaction_data() - mint overflow"));
|
|
boost::multiprecision::int128_t final_source_tally = source_tally + asset.second;
|
|
write_circulating_supply_data(m_cur_circ_supply_tally, source_idx, final_source_tally);
|
|
LOG_PRINT_L1("tx ID " << tx_id << "\n\tAsset Type = " << cryptonote::asset_type_from_id(asset.first) << "\n\tTally before burn =" << source_tally.str() << "\n\tTally after burn =" << final_source_tally.str());
|
|
|
|
MDB_val_copy<uint64_t> burn_idx(cryptonote::asset_id_from_type("BURN"));
|
|
boost::multiprecision::int128_t burn_tally = 0;
|
|
result = read_circulating_supply_data(m_cur_circ_supply_tally, burn_idx, burn_tally);
|
|
if (result && result != MDB_NOTFOUND)
|
|
throw0(DB_ERROR(lmdb_error("Failed to get circulating supply tally when adding db transaction: ", result).c_str()));
|
|
if (burn_tally < asset.second)
|
|
throw0(DB_ERROR("add_transaction_data() - burn underflow"));
|
|
boost::multiprecision::int128_t final_burn_tally = burn_tally - asset.second;
|
|
write_circulating_supply_data(m_cur_circ_supply_tally, burn_idx, final_burn_tally);
|
|
}
|
|
}
|
|
|
|
// Is there yield_tx data to add?
|
|
if (tx.type == cryptonote::transaction_type::STAKE) {
|
|
|
|
// Create the object we are going to write to the database
|
|
yield_tx_info yield_data;
|
|
yield_data.block_height = m_height;
|
|
yield_data.tx_hash = tx_hash;
|
|
if (tx.version == TRANSACTION_VERSION_2_OUTS) {
|
|
if (tx.return_address == crypto::null_pkey)
|
|
throw0(DB_ERROR("missing return_address entry (needed to create yield data for PROTOCOL_TX) - v2 STAKE"));
|
|
yield_data.return_address = tx.return_address;
|
|
} else if (tx.version >= TRANSACTION_VERSION_N_OUTS) {
|
|
if (tx.return_address_list.empty())
|
|
throw0(DB_ERROR("no return_address_list entry (needed to create yield data for the PROTOCOL_TX)"));
|
|
else if (tx.return_address_list.size() > 1)
|
|
throw0(DB_ERROR("too many return_address_list entries provided (only one needed to create yield data for the PROTOCOL_TX)"));
|
|
yield_data.return_address = tx.return_address_list[0];
|
|
}
|
|
yield_data.locked_coins = tx.amount_burnt;
|
|
if (tx.vin.empty())
|
|
throw0(DB_ERROR("tx.vin is empty (needed to create yield data for the PROTOCOL_TX)"));
|
|
if (tx.vin[0].type() != typeid(cryptonote::txin_to_key))
|
|
throw0(DB_ERROR("tx.vin[0] is wrong type (needed to create yield data for the PROTOCOL_TX)"));
|
|
yield_data.return_pubkey = tx.return_pubkey;
|
|
if (tx.vout.size() != 1)
|
|
throw0(DB_ERROR("tx.vout is wrong size (needed to create yield data for the PROTOCOL_TX)"));
|
|
if (!cryptonote::get_output_public_key(tx.vout[0], yield_data.P_change))
|
|
throw0(DB_ERROR("failed to get P_change from tx.vout[0] (needed to create yield data for the PROTOCOL_TX)"));
|
|
|
|
// Because LMDB is shockingly bad at handling duplicates, we have resorted to using a counter of elements
|
|
// in the first element of the struct.
|
|
MDB_val data;
|
|
MDB_val_set(val_height, m_height);
|
|
result = mdb_cursor_get(m_cur_yield_txs, &val_height, &data, MDB_SET);
|
|
if (!result)
|
|
{
|
|
mdb_size_t num_elems = 0;
|
|
result = mdb_cursor_count(m_cur_yield_txs, &num_elems);
|
|
if (result)
|
|
throw0(DB_ERROR(std::string("Failed to get number of yield TXs for height: ").append(mdb_strerror(result)).c_str()));
|
|
yield_data.block_height = num_elems;
|
|
}
|
|
else if (result != MDB_NOTFOUND)
|
|
throw0(DB_ERROR(lmdb_error("Failed to get output amount in db transaction: ", result).c_str()));
|
|
else
|
|
yield_data.block_height = 0;
|
|
|
|
// Now we know how many there are, write out the data to the DB
|
|
MDB_val_set(val_yield_tx_data, yield_data);
|
|
result = mdb_cursor_put(m_cur_yield_txs, &val_height, &val_yield_tx_data, MDB_APPENDDUP);
|
|
if (result)
|
|
throw0(DB_ERROR( lmdb_error("Failed to add tx yield data to db transaction: ", result).c_str() ));
|
|
}
|
|
|
|
// Is there audit_tx data to add?
|
|
if (tx.type == cryptonote::transaction_type::AUDIT) {
|
|
|
|
// Create the object we are going to write to the database
|
|
yield_tx_info audit_data;
|
|
audit_data.block_height = m_height;
|
|
audit_data.tx_hash = tx_hash;
|
|
if (tx.version == TRANSACTION_VERSION_2_OUTS) {
|
|
if (tx.return_address == crypto::null_pkey)
|
|
throw0(DB_ERROR("missing return_address entry (needed to create audit data for PROTOCOL_TX) - v2 STAKE"));
|
|
audit_data.return_address = tx.return_address;
|
|
} else if (tx.version >= TRANSACTION_VERSION_N_OUTS) {
|
|
if (tx.return_address_list.empty())
|
|
throw0(DB_ERROR("no return_address_list entry (needed to create audit data for the PROTOCOL_TX)"));
|
|
else if (tx.return_address_list.size() > 1)
|
|
throw0(DB_ERROR("too many return_address_list entries provided (only one needed to create audit data for the PROTOCOL_TX)"));
|
|
audit_data.return_address = tx.return_address_list[0];
|
|
}
|
|
audit_data.locked_coins = tx.amount_burnt;
|
|
if (tx.vin.empty())
|
|
throw0(DB_ERROR("tx.vin is empty (needed to create audit data for the PROTOCOL_TX)"));
|
|
if (tx.vin[0].type() != typeid(cryptonote::txin_to_key))
|
|
throw0(DB_ERROR("tx.vin[0] is wrong type (needed to create audit data for the PROTOCOL_TX)"));
|
|
audit_data.return_pubkey = tx.return_pubkey;
|
|
if (tx.vout.size() != 1)
|
|
throw0(DB_ERROR("tx.vout is wrong size (needed to create audit data for the PROTOCOL_TX)"));
|
|
if (!cryptonote::get_output_public_key(tx.vout[0], audit_data.P_change))
|
|
throw0(DB_ERROR("failed to get P_change from tx.vout[0] (needed to create audit data for the PROTOCOL_TX)"));
|
|
|
|
// Because LMDB is shockingly bad at handling duplicates, we have resorted to using a counter of elements
|
|
// in the first element of the struct.
|
|
MDB_val data;
|
|
MDB_val_set(val_height, m_height);
|
|
result = mdb_cursor_get(m_cur_audit_txs, &val_height, &data, MDB_SET);
|
|
if (!result)
|
|
{
|
|
mdb_size_t num_elems = 0;
|
|
result = mdb_cursor_count(m_cur_audit_txs, &num_elems);
|
|
if (result)
|
|
throw0(DB_ERROR(std::string("Failed to get number of audit TXs for height: ").append(mdb_strerror(result)).c_str()));
|
|
audit_data.block_height = num_elems;
|
|
}
|
|
else if (result != MDB_NOTFOUND)
|
|
throw0(DB_ERROR(lmdb_error("Failed to get output amount in db transaction: ", result).c_str()));
|
|
else
|
|
audit_data.block_height = 0;
|
|
|
|
// Now we know how many there are, write out the data to the DB
|
|
MDB_val_set(val_audit_tx_data, audit_data);
|
|
result = mdb_cursor_put(m_cur_audit_txs, &val_height, &val_audit_tx_data, MDB_APPENDDUP);
|
|
if (result)
|
|
throw0(DB_ERROR( lmdb_error("Failed to add tx audit data to db transaction: ", result).c_str() ));
|
|
}
|
|
|
|
return tx_id;
|
|
}
|
|
|
|
// TODO: compare pros and cons of looking up the tx hash's tx index once and
|
|
// passing it in to functions like this
|
|
void BlockchainLMDB::remove_transaction_data(const crypto::hash& tx_hash, const transaction& tx, const bool miner_tx)
|
|
{
|
|
uint64_t m_height = height();
|
|
int result;
|
|
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
mdb_txn_cursors *m_cursors = &m_wcursors;
|
|
CURSOR(tx_indices)
|
|
CURSOR(txs_pruned)
|
|
CURSOR(txs_prunable)
|
|
CURSOR(txs_prunable_hash)
|
|
CURSOR(txs_prunable_tip)
|
|
CURSOR(tx_outputs)
|
|
CURSOR(circ_supply_tally)
|
|
CURSOR(yield_txs)
|
|
CURSOR(audit_txs)
|
|
|
|
MDB_val_set(val_h, tx_hash);
|
|
|
|
if (mdb_cursor_get(m_cur_tx_indices, (MDB_val *)&zerokval, &val_h, MDB_GET_BOTH))
|
|
throw1(TX_DNE("Attempting to remove transaction that isn't in the db"));
|
|
txindex *tip = (txindex *)val_h.mv_data;
|
|
MDB_val_set(val_tx_id, tip->data.tx_id);
|
|
|
|
if ((result = mdb_cursor_get(m_cur_txs_pruned, &val_tx_id, NULL, MDB_SET)))
|
|
throw1(DB_ERROR(lmdb_error("Failed to locate pruned tx for removal: ", result).c_str()));
|
|
result = mdb_cursor_del(m_cur_txs_pruned, 0);
|
|
if (result)
|
|
throw1(DB_ERROR(lmdb_error("Failed to add removal of pruned tx to db transaction: ", result).c_str()));
|
|
|
|
result = mdb_cursor_get(m_cur_txs_prunable, &val_tx_id, NULL, MDB_SET);
|
|
if (result == 0)
|
|
{
|
|
result = mdb_cursor_del(m_cur_txs_prunable, 0);
|
|
if (result)
|
|
throw1(DB_ERROR(lmdb_error("Failed to add removal of prunable tx to db transaction: ", result).c_str()));
|
|
}
|
|
else if (result != MDB_NOTFOUND)
|
|
throw1(DB_ERROR(lmdb_error("Failed to locate prunable tx for removal: ", result).c_str()));
|
|
|
|
result = mdb_cursor_get(m_cur_txs_prunable_tip, &val_tx_id, NULL, MDB_SET);
|
|
if (result && result != MDB_NOTFOUND)
|
|
throw1(DB_ERROR(lmdb_error("Failed to locate tx id for removal: ", result).c_str()));
|
|
if (result == 0)
|
|
{
|
|
result = mdb_cursor_del(m_cur_txs_prunable_tip, 0);
|
|
if (result)
|
|
throw1(DB_ERROR(lmdb_error("Error adding removal of tx id to db transaction", result).c_str()));
|
|
}
|
|
|
|
if (tx.version > 1)
|
|
{
|
|
if ((result = mdb_cursor_get(m_cur_txs_prunable_hash, &val_tx_id, NULL, MDB_SET)))
|
|
throw1(DB_ERROR(lmdb_error("Failed to locate prunable hash tx for removal: ", result).c_str()));
|
|
result = mdb_cursor_del(m_cur_txs_prunable_hash, 0);
|
|
if (result)
|
|
throw1(DB_ERROR(lmdb_error("Failed to add removal of prunable hash tx to db transaction: ", result).c_str()));
|
|
}
|
|
|
|
const uint8_t hf_version = m_hardfork->get_ideal_version(m_height);
|
|
if (tx.type == cryptonote::transaction_type::MINER) {
|
|
|
|
// Update the circulating supply tally because of potentially burnt block_reward proportion
|
|
std::string miner_asset_type = "SAL";
|
|
if (hf_version >= HF_VERSION_SALVIUM_ONE_PROOFS) {
|
|
miner_asset_type = "SAL1";
|
|
}
|
|
|
|
MDB_val_copy<uint64_t> source_idx(cryptonote::asset_id_from_type(miner_asset_type));
|
|
boost::multiprecision::int128_t source_tally = 0;
|
|
result = read_circulating_supply_data(m_cur_circ_supply_tally, source_idx, source_tally);
|
|
if (result && result != MDB_NOTFOUND)
|
|
throw0(DB_ERROR(lmdb_error("remove_transaction_data() - Failed to get circulating supply tally when removing db transaction: ", result).c_str()));
|
|
boost::multiprecision::int128_t final_source_tally = source_tally;
|
|
for (const auto& out: tx.vout) {
|
|
|
|
// Sanity check - prevent underflow
|
|
if (final_source_tally < final_source_tally - out.amount)
|
|
throw0(DB_ERROR("numeric underflow detected when removing miner_tx for db transaction"));
|
|
|
|
// Fetch the amount for this output
|
|
final_source_tally -= out.amount;
|
|
}
|
|
write_circulating_supply_data(m_cur_circ_supply_tally, source_idx, final_source_tally);
|
|
LOG_PRINT_L1("tx ID " << tip->data.tx_id << "\n\tTally before burn = " << source_tally.str() << "\n\tTally after burn = " << final_source_tally.str());
|
|
|
|
MDB_val_copy<uint64_t> burn_idx(cryptonote::asset_id_from_type("BURN"));
|
|
boost::multiprecision::int128_t burn_tally = 0;
|
|
result = read_circulating_supply_data(m_cur_circ_supply_tally, burn_idx, burn_tally);
|
|
if (result && result != MDB_NOTFOUND)
|
|
throw0(DB_ERROR(lmdb_error("Failed to get circulating supply tally when adding db transaction: ", result).c_str()));
|
|
// Sanity check - prevent underflow
|
|
if (burn_tally < tx.amount_burnt)
|
|
throw0(DB_ERROR("burn underflow detected when removing miner_tx for db transaction"));
|
|
boost::multiprecision::int128_t final_burn_tally = burn_tally - tx.amount_burnt;
|
|
write_circulating_supply_data(m_cur_circ_supply_tally, burn_idx, final_burn_tally);
|
|
}
|
|
|
|
if (tx.type == cryptonote::transaction_type::BURN || tx.type == cryptonote::transaction_type::CONVERT || tx.type == cryptonote::transaction_type::STAKE || tx.type == cryptonote::transaction_type::AUDIT || tx.type == cryptonote::transaction_type::TRANSFER) {
|
|
|
|
// Get the current tally value for the source currency type
|
|
MDB_val_copy<uint64_t> source_idx(cryptonote::asset_id_from_type(tx.source_asset_type));
|
|
boost::multiprecision::int128_t source_tally = 0;
|
|
result = read_circulating_supply_data(m_cur_circ_supply_tally, source_idx, source_tally);
|
|
boost::multiprecision::int128_t final_source_tally = source_tally + tx.amount_burnt + tx.rct_signatures.txnFee;
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to get circulating supply tally when removing db transaction: ", result).c_str()));
|
|
// Sanity check - prevent overflow
|
|
if (source_tally > final_source_tally)
|
|
throw0(DB_ERROR("numeric overflow detected when processing C/B/S/A/T for db transaction"));
|
|
write_circulating_supply_data(m_cur_circ_supply_tally, source_idx, final_source_tally);
|
|
LOG_PRINT_L1("tx ID " << tip->data.tx_id << "\n\tTally before remint =" << source_tally.str() << "\n\tTally after remint =" << final_source_tally.str());
|
|
|
|
MDB_val_copy<uint64_t> burn_idx(cryptonote::asset_id_from_type("BURN"));
|
|
boost::multiprecision::int128_t burn_tally = 0;
|
|
result = read_circulating_supply_data(m_cur_circ_supply_tally, burn_idx, burn_tally);
|
|
if (result && /*(m_height>0 ||*/ result != MDB_NOTFOUND/*)*/)
|
|
throw0(DB_ERROR(lmdb_error("Failed to get circulating supply tally when adding db transaction: ", result).c_str()));
|
|
boost::multiprecision::int128_t final_burn_tally = burn_tally - tx.amount_burnt - tx.rct_signatures.txnFee;
|
|
// Sanity check - prevent underflow
|
|
if (burn_tally < (tx.amount_burnt + tx.rct_signatures.txnFee))
|
|
throw0(DB_ERROR("burn underflow detected when removing tx for db transaction"));
|
|
write_circulating_supply_data(m_cur_circ_supply_tally, burn_idx, final_burn_tally);
|
|
}
|
|
|
|
if (tx.type == cryptonote::transaction_type::PROTOCOL) {
|
|
|
|
// Iterate over all of the outputs for a PROTOCOL_TX since they're all MINTED
|
|
std::map<uint32_t, uint64_t> minted_amounts;
|
|
for (const auto& out: tx.vout) {
|
|
|
|
// Fetch the amount and output_asset_type for this output
|
|
std::string asset_type = "";
|
|
bool ok = cryptonote::get_output_asset_type(out, asset_type);
|
|
if (!ok)
|
|
throw0(DB_ERROR("failed to get output asset type (needed to update the circulating supply data for the PROTOCOL_TX)"));
|
|
minted_amounts[cryptonote::asset_id_from_type(asset_type)] += out.amount;
|
|
}
|
|
|
|
// Now update the overall tally entries
|
|
for (const auto& asset: minted_amounts) {
|
|
|
|
// Get the current tally value for the source currency type
|
|
MDB_val_copy<uint64_t> source_idx(asset.first);
|
|
boost::multiprecision::int128_t source_tally = 0;
|
|
result = read_circulating_supply_data(m_cur_circ_supply_tally, source_idx, source_tally);
|
|
if (result == MDB_NOTFOUND)
|
|
throw0(DB_ERROR("minted asset not found"));
|
|
else if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to get circulating supply tally when removing db transaction: ", result).c_str()));
|
|
if (source_tally < asset.second)
|
|
throw0(DB_ERROR("remove_transaction_data() - mint underflow"));
|
|
boost::multiprecision::int128_t final_source_tally = source_tally - asset.second;
|
|
write_circulating_supply_data(m_cur_circ_supply_tally, source_idx, final_source_tally);
|
|
LOG_PRINT_L1("tx ID " << tip->data.tx_id << "\n\tAsset Type = " << cryptonote::asset_type_from_id(asset.first) << "\n\tTally before undoing mint =" << source_tally.str() << "\n\tTally after undoing mint =" << final_source_tally.str());
|
|
|
|
MDB_val_copy<uint64_t> burn_idx(cryptonote::asset_id_from_type("BURN"));
|
|
boost::multiprecision::int128_t burn_tally = 0;
|
|
result = read_circulating_supply_data(m_cur_circ_supply_tally, burn_idx, burn_tally);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to get circulating supply tally when removing db transaction: ", result).c_str()));
|
|
if (burn_tally > burn_tally + asset.second)
|
|
throw0(DB_ERROR("remove_transaction_data() - burn overflow"));
|
|
boost::multiprecision::int128_t final_burn_tally = burn_tally + asset.second;
|
|
write_circulating_supply_data(m_cur_circ_supply_tally, burn_idx, final_burn_tally);
|
|
}
|
|
}
|
|
remove_tx_outputs(tip->data.tx_id, tx);
|
|
|
|
result = mdb_cursor_get(m_cur_tx_outputs, &val_tx_id, NULL, MDB_SET);
|
|
if (result == MDB_NOTFOUND)
|
|
LOG_PRINT_L1("tx has no outputs to remove: " << tx_hash);
|
|
else if (result)
|
|
throw1(DB_ERROR(lmdb_error("Failed to locate tx outputs for removal: ", result).c_str()));
|
|
if (!result)
|
|
{
|
|
result = mdb_cursor_del(m_cur_tx_outputs, 0);
|
|
if (result)
|
|
throw1(DB_ERROR(lmdb_error("Failed to add removal of tx outputs to db transaction: ", result).c_str()));
|
|
}
|
|
|
|
// SRCG: The following code is designed to clean up AUDIT+STAKE transactions, but it is very poorly written
|
|
// Since transactions are ALWAYS supposed to be created in order, it stands that they should ALWAYS be
|
|
// removed in REVERSE ORDER. Yet the following loop starts from the beginning - this is the worst possible
|
|
// implementation in performance terms, since it will ALWAYS take the longest possible time to remove the
|
|
// correct TX.
|
|
|
|
// RECODE TO START FROM THE END OF THE DATABASE TABLE, AND THROW AN EXCEPTION IF YOU DO NOT MATCH FIRST TIME!
|
|
|
|
// Is there audit_tx data to remove?
|
|
if (tx.type == cryptonote::transaction_type::AUDIT) {
|
|
// Remove any yield_tx data for this transaction
|
|
MDB_val_set(val_height, m_height);
|
|
MDB_val v;
|
|
MDB_cursor_op op = MDB_SET;
|
|
while (1) {
|
|
result = mdb_cursor_get(m_cur_audit_txs, &val_height, &v, op);
|
|
if (result == MDB_NOTFOUND) {
|
|
throw1(DB_ERROR("Failed to locate audit tx for removal from db transaction"));
|
|
} else if (result) {
|
|
throw1(DB_ERROR(lmdb_error("Failed to locate audit_tx data for removal: ", result).c_str()));
|
|
}
|
|
op = MDB_NEXT_DUP;
|
|
const yield_tx_info ati = *(const yield_tx_info*)v.mv_data;
|
|
if (ati.tx_hash == tx_hash) {
|
|
result = mdb_cursor_del(m_cur_audit_txs, 0);
|
|
if (result)
|
|
throw1(DB_ERROR(lmdb_error("Failed to add removal of audit_tx data to db transaction: ", result).c_str()));
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Is there yield_tx data to remove?
|
|
if (tx.type == cryptonote::transaction_type::STAKE) {
|
|
// Remove any yield_tx data for this transaction
|
|
MDB_val_set(val_height, m_height);
|
|
MDB_val v;
|
|
MDB_cursor_op op = MDB_SET;
|
|
while (1) {
|
|
result = mdb_cursor_get(m_cur_yield_txs, &val_height, &v, op);
|
|
if (result == MDB_NOTFOUND) {
|
|
throw1(DB_ERROR("Failed to locate yield tx for removal from db transaction"));
|
|
} else if (result) {
|
|
throw1(DB_ERROR(lmdb_error("Failed to locate yield_tx data for removal: ", result).c_str()));
|
|
}
|
|
op = MDB_NEXT_DUP;
|
|
const yield_tx_info yti = *(const yield_tx_info*)v.mv_data;
|
|
if (yti.tx_hash == tx_hash) {
|
|
result = mdb_cursor_del(m_cur_yield_txs, 0);
|
|
if (result)
|
|
throw1(DB_ERROR(lmdb_error("Failed to add removal of yield_tx data to db transaction: ", result).c_str()));
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Don't delete the tx_indices entry until the end, after we're done with val_tx_id
|
|
if (mdb_cursor_del(m_cur_tx_indices, 0))
|
|
throw1(DB_ERROR("Failed to add removal of tx index to db transaction"));
|
|
}
|
|
|
|
std::pair<uint64_t, uint64_t> BlockchainLMDB::add_output(const crypto::hash& tx_hash,
|
|
const tx_out& tx_output,
|
|
const uint64_t& local_index,
|
|
const uint64_t unlock_time,
|
|
const rct::key *commitment)
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
mdb_txn_cursors *m_cursors = &m_wcursors;
|
|
uint64_t m_height = height();
|
|
uint64_t m_num_outputs = num_outputs();
|
|
|
|
int result = 0;
|
|
|
|
CURSOR(output_txs)
|
|
CURSOR(output_amounts)
|
|
CURSOR(output_types)
|
|
|
|
std::string output_asset_type;
|
|
if (!get_output_asset_type(tx_output, output_asset_type))
|
|
throw0(DB_ERROR("Could not get an output asset_type from a tx output."));
|
|
|
|
crypto::public_key output_public_key;
|
|
if (!get_output_public_key(tx_output, output_public_key))
|
|
throw0(DB_ERROR("Could not get an output public key from a tx output."));
|
|
if (tx_output.amount == 0 && !commitment)
|
|
throw0(DB_ERROR("RCT output without commitment"));
|
|
|
|
outtx ot = {m_num_outputs, tx_hash, local_index};
|
|
MDB_val_set(vot, ot);
|
|
|
|
result = mdb_cursor_put(m_cur_output_txs, (MDB_val *)&zerokval, &vot, MDB_APPENDDUP);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to add output tx hash to db transaction: ", result).c_str()));
|
|
|
|
uint32_t asset_type = cryptonote::asset_id_from_type(output_asset_type);
|
|
|
|
outkey ok;
|
|
MDB_val data;
|
|
MDB_val_copy<uint64_t> val_amount(tx_output.amount);
|
|
result = mdb_cursor_get(m_cur_output_amounts, &val_amount, &data, MDB_SET);
|
|
if (!result)
|
|
{
|
|
mdb_size_t num_elems = 0;
|
|
result = mdb_cursor_count(m_cur_output_amounts, &num_elems);
|
|
if (result)
|
|
throw0(DB_ERROR(std::string("Failed to get number of outputs for amount: ").append(mdb_strerror(result)).c_str()));
|
|
ok.amount_index = num_elems;
|
|
}
|
|
else if (result != MDB_NOTFOUND)
|
|
throw0(DB_ERROR(lmdb_error("Failed to get output amount in db transaction: ", result).c_str()));
|
|
else
|
|
ok.amount_index = 0;
|
|
ok.output_id = m_num_outputs;
|
|
ok.data.pubkey = output_public_key;
|
|
ok.data.unlock_time = unlock_time;
|
|
ok.data.height = m_height;
|
|
ok.data.asset_type = asset_type;
|
|
|
|
if (tx_output.amount == 0)
|
|
{
|
|
ok.data.commitment = *commitment;
|
|
data.mv_size = sizeof(ok);
|
|
}
|
|
else
|
|
{
|
|
data.mv_size = sizeof(pre_rct_outkey);
|
|
}
|
|
data.mv_data = &ok;
|
|
|
|
if ((result = mdb_cursor_put(m_cur_output_amounts, &val_amount, &data, MDB_APPENDDUP)))
|
|
throw0(DB_ERROR(lmdb_error("Failed to add output pubkey to db transaction: ", result).c_str()));
|
|
|
|
|
|
MDB_val_copy<uint32_t> k(asset_type);
|
|
MDB_val v;
|
|
|
|
mdb_size_t num_outputs_of_asset_type = 0;
|
|
result = mdb_cursor_get(m_cur_output_types, &k, &v, MDB_SET);
|
|
if (!result)
|
|
{
|
|
result = mdb_cursor_count(m_cur_output_types, &num_outputs_of_asset_type);
|
|
if (result)
|
|
throw0(DB_ERROR(std::string("Failed to get number of outputs for type: ").append(mdb_strerror(result)).c_str()));
|
|
}
|
|
else if (result != MDB_NOTFOUND)
|
|
throw0(DB_ERROR(lmdb_error("Failed to get output types in db transaction: ", result).c_str()));
|
|
|
|
outassettype oat;
|
|
oat.asset_type_output_index = num_outputs_of_asset_type;
|
|
oat.output_id = ok.output_id;
|
|
MDB_val_set(voat, oat);
|
|
|
|
MDB_val_copy<uint32_t> koat(asset_type);
|
|
if ((result = mdb_cursor_put(m_cur_output_types, &koat, &voat, MDB_APPENDDUP)))
|
|
throw0(DB_ERROR(lmdb_error("Failed to add output type to db transaction: ", result).c_str()));
|
|
|
|
return std::make_pair(ok.amount_index, oat.asset_type_output_index);
|
|
}
|
|
|
|
void BlockchainLMDB::add_tx_amount_output_indices(const uint64_t tx_id,
|
|
const std::vector<std::pair<uint64_t, uint64_t>>& amount_output_indices)
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
mdb_txn_cursors *m_cursors = &m_wcursors;
|
|
CURSOR(tx_outputs)
|
|
|
|
int result = 0;
|
|
|
|
size_t num_outputs = amount_output_indices.size();
|
|
|
|
MDB_val_set(k_tx_id, tx_id);
|
|
MDB_val v;
|
|
v.mv_data = num_outputs ? (void *)amount_output_indices.data() : (void*)"";
|
|
v.mv_size = sizeof(std::pair<uint64_t, uint64_t>) * num_outputs;
|
|
// LOG_PRINT_L1("tx_outputs[tx_hash] size: " << v.mv_size);
|
|
|
|
result = mdb_cursor_put(m_cur_tx_outputs, &k_tx_id, &v, MDB_APPEND);
|
|
if (result)
|
|
throw0(DB_ERROR(std::string("Failed to add <tx hash, amount output index array> to db transaction: ").append(mdb_strerror(result)).c_str()));
|
|
}
|
|
|
|
void BlockchainLMDB::remove_tx_outputs(const uint64_t tx_id, const transaction& tx)
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
|
|
std::vector<std::vector<std::pair<uint64_t, uint64_t>>> amount_output_indices_set = get_tx_amount_output_indices(tx_id, 1);
|
|
const std::vector<std::pair<uint64_t, uint64_t>> &amount_output_indices = amount_output_indices_set.front();
|
|
|
|
if (amount_output_indices.empty())
|
|
{
|
|
if (tx.vout.empty())
|
|
LOG_PRINT_L2("tx has no outputs, so no output indices");
|
|
else
|
|
throw0(DB_ERROR("tx has outputs, but no output indices found"));
|
|
}
|
|
|
|
bool is_pseudo_rct = tx.version >= 2 && tx.vin.size() == 1 && tx.vin[0].type() == typeid(txin_gen);
|
|
for (size_t i = tx.vout.size(); i-- > 0;)
|
|
{
|
|
uint64_t amount = is_pseudo_rct ? 0 : tx.vout[i].amount;
|
|
std::string output_asset_type_str;
|
|
if (!get_output_asset_type(tx.vout[i], output_asset_type_str))
|
|
throw0(DB_ERROR("Could not get an output asset_type from a tx output (removing)."));
|
|
remove_output(amount, amount_output_indices[i].first, output_asset_type_str, amount_output_indices[i].second);
|
|
}
|
|
}
|
|
|
|
void BlockchainLMDB::remove_output(const uint64_t amount, const uint64_t& out_index, const std::string& output_asset_type_str, const uint64_t& asset_type_output_id)
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
mdb_txn_cursors *m_cursors = &m_wcursors;
|
|
CURSOR(output_amounts);
|
|
CURSOR(output_txs);
|
|
CURSOR(output_types);
|
|
|
|
MDB_val_set(k, amount);
|
|
MDB_val_set(v, out_index);
|
|
|
|
auto result = mdb_cursor_get(m_cur_output_amounts, &k, &v, MDB_GET_BOTH);
|
|
if (result == MDB_NOTFOUND)
|
|
throw1(OUTPUT_DNE("Attempting to get an output index by amount and amount index, but amount not found"));
|
|
else if (result)
|
|
throw0(DB_ERROR(lmdb_error("DB error attempting to get an output", result).c_str()));
|
|
|
|
const pre_rct_outkey *ok = (const pre_rct_outkey *)v.mv_data;
|
|
MDB_val_set(otxk, ok->output_id);
|
|
result = mdb_cursor_get(m_cur_output_txs, (MDB_val *)&zerokval, &otxk, MDB_GET_BOTH);
|
|
if (result == MDB_NOTFOUND)
|
|
{
|
|
throw0(DB_ERROR("Unexpected: global output index not found in m_output_txs"));
|
|
}
|
|
else if (result)
|
|
{
|
|
throw1(DB_ERROR(lmdb_error("Error adding removal of output tx to db transaction", result).c_str()));
|
|
}
|
|
|
|
uint32_t output_asset_type = cryptonote::asset_id_from_type(output_asset_type_str);
|
|
MDB_val_copy<uint32_t> koat(output_asset_type);
|
|
MDB_val_set(voat, asset_type_output_id);
|
|
|
|
result = mdb_cursor_get(m_cur_output_types, &koat, &voat, MDB_GET_BOTH);
|
|
if (result == MDB_NOTFOUND)
|
|
{
|
|
throw0(DB_ERROR("Unexpected: asset type output id not found in m_output_types"));
|
|
}
|
|
else if (result)
|
|
{
|
|
throw1(DB_ERROR(lmdb_error("Error adding removal of output type to db transaction", result).c_str()));
|
|
}
|
|
|
|
const outassettype *oat = (const outassettype *)voat.mv_data;
|
|
if (oat->output_id != out_index)
|
|
throw0(DB_ERROR(std::string("Unexpected: output_id ")
|
|
.append(boost::lexical_cast<std::string>(oat->output_id))
|
|
.append(" from m_output_types does not match expected output index ")
|
|
.append(boost::lexical_cast<std::string>(out_index)).c_str()));
|
|
|
|
|
|
result = mdb_cursor_del(m_cur_output_txs, 0);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error(std::string("Error deleting output index ").append(boost::lexical_cast<std::string>(out_index).append(": ")).c_str(), result).c_str()));
|
|
|
|
// now delete the amount
|
|
result = mdb_cursor_del(m_cur_output_amounts, 0);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error(std::string("Error deleting amount for output index ").append(boost::lexical_cast<std::string>(out_index).append(": ")).c_str(), result).c_str()));
|
|
|
|
result = mdb_cursor_del(m_cur_output_types, 0);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error(std::string("Error deleting type for output index ").append(boost::lexical_cast<std::string>(out_index).append(": ")).c_str(), result).c_str()));
|
|
}
|
|
|
|
void BlockchainLMDB::prune_outputs(uint64_t amount)
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
mdb_txn_cursors *m_cursors = &m_wcursors;
|
|
CURSOR(output_amounts);
|
|
CURSOR(output_txs);
|
|
|
|
MINFO("Pruning outputs for amount " << amount);
|
|
|
|
MDB_val v;
|
|
MDB_val_set(k, amount);
|
|
int result = mdb_cursor_get(m_cur_output_amounts, &k, &v, MDB_SET);
|
|
if (result == MDB_NOTFOUND)
|
|
return;
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Error looking up outputs: ", result).c_str()));
|
|
|
|
// gather output ids
|
|
mdb_size_t num_elems;
|
|
mdb_cursor_count(m_cur_output_amounts, &num_elems);
|
|
MINFO(num_elems << " outputs found");
|
|
std::vector<uint64_t> output_ids;
|
|
output_ids.reserve(num_elems);
|
|
while (1)
|
|
{
|
|
const pre_rct_outkey *okp = (const pre_rct_outkey *)v.mv_data;
|
|
output_ids.push_back(okp->output_id);
|
|
MDEBUG("output id " << okp->output_id);
|
|
result = mdb_cursor_get(m_cur_output_amounts, &k, &v, MDB_NEXT_DUP);
|
|
if (result == MDB_NOTFOUND)
|
|
break;
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Error counting outputs: ", result).c_str()));
|
|
}
|
|
if (output_ids.size() != num_elems)
|
|
throw0(DB_ERROR("Unexpected number of outputs"));
|
|
|
|
result = mdb_cursor_del(m_cur_output_amounts, MDB_NODUPDATA);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Error deleting outputs: ", result).c_str()));
|
|
|
|
for (uint64_t output_id: output_ids)
|
|
{
|
|
MDB_val_set(v, output_id);
|
|
result = mdb_cursor_get(m_cur_output_txs, (MDB_val *)&zerokval, &v, MDB_GET_BOTH);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Error looking up output: ", result).c_str()));
|
|
result = mdb_cursor_del(m_cur_output_txs, 0);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Error deleting output: ", result).c_str()));
|
|
}
|
|
}
|
|
|
|
void BlockchainLMDB::add_spent_key(const crypto::key_image& k_image)
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
mdb_txn_cursors *m_cursors = &m_wcursors;
|
|
|
|
CURSOR(spent_keys)
|
|
|
|
MDB_val k = {sizeof(k_image), (void *)&k_image};
|
|
if (auto result = mdb_cursor_put(m_cur_spent_keys, (MDB_val *)&zerokval, &k, MDB_NODUPDATA)) {
|
|
if (result == MDB_KEYEXIST)
|
|
throw1(KEY_IMAGE_EXISTS("Attempting to add spent key image that's already in the db"));
|
|
else
|
|
throw1(DB_ERROR(lmdb_error("Error adding spent key image to db transaction: ", result).c_str()));
|
|
}
|
|
}
|
|
|
|
void BlockchainLMDB::remove_spent_key(const crypto::key_image& k_image)
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
mdb_txn_cursors *m_cursors = &m_wcursors;
|
|
|
|
CURSOR(spent_keys)
|
|
|
|
MDB_val k = {sizeof(k_image), (void *)&k_image};
|
|
auto result = mdb_cursor_get(m_cur_spent_keys, (MDB_val *)&zerokval, &k, MDB_GET_BOTH);
|
|
if (result != 0 && result != MDB_NOTFOUND)
|
|
throw1(DB_ERROR(lmdb_error("Error finding spent key to remove", result).c_str()));
|
|
if (!result)
|
|
{
|
|
result = mdb_cursor_del(m_cur_spent_keys, 0);
|
|
if (result)
|
|
throw1(DB_ERROR(lmdb_error("Error adding removal of key image to db transaction", result).c_str()));
|
|
}
|
|
}
|
|
|
|
BlockchainLMDB::~BlockchainLMDB()
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
|
|
// batch transaction shouldn't be active at this point. If it is, consider it aborted.
|
|
if (m_batch_active)
|
|
{
|
|
try { BlockchainLMDB::batch_abort(); }
|
|
catch (...) { /* ignore */ }
|
|
}
|
|
if (m_open)
|
|
BlockchainLMDB::close();
|
|
}
|
|
|
|
BlockchainLMDB::BlockchainLMDB(bool batch_transactions): BlockchainDB()
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
// initialize folder to something "safe" just in case
|
|
// someone accidentally misuses this class...
|
|
m_folder = "thishsouldnotexistbecauseitisgibberish";
|
|
|
|
m_batch_transactions = batch_transactions;
|
|
m_write_txn = nullptr;
|
|
m_write_batch_txn = nullptr;
|
|
m_batch_active = false;
|
|
m_cum_size = 0;
|
|
m_cum_count = 0;
|
|
|
|
// reset may also need changing when initialize things here
|
|
|
|
m_hardfork = nullptr;
|
|
}
|
|
|
|
void BlockchainLMDB::open(const std::string& filename, const int db_flags)
|
|
{
|
|
int result;
|
|
int mdb_flags = MDB_NORDAHEAD;
|
|
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
|
|
if (m_open)
|
|
throw0(DB_OPEN_FAILURE("Attempted to open db, but it's already open"));
|
|
|
|
boost::filesystem::path direc(filename);
|
|
if (!boost::filesystem::exists(direc) &&
|
|
!boost::filesystem::create_directories(direc)) {
|
|
throw0(DB_OPEN_FAILURE(std::string("Failed to create directory ").append(filename).c_str()));
|
|
}
|
|
|
|
// check for existing LMDB files in base directory
|
|
boost::filesystem::path old_files = direc.parent_path();
|
|
if (boost::filesystem::exists(old_files / CRYPTONOTE_BLOCKCHAINDATA_FILENAME)
|
|
|| boost::filesystem::exists(old_files / CRYPTONOTE_BLOCKCHAINDATA_LOCK_FILENAME))
|
|
{
|
|
LOG_PRINT_L0("Found existing LMDB files in " << old_files.string());
|
|
LOG_PRINT_L0("Move " << CRYPTONOTE_BLOCKCHAINDATA_FILENAME << " and/or " << CRYPTONOTE_BLOCKCHAINDATA_LOCK_FILENAME << " to " << filename << ", or delete them, and then restart");
|
|
throw DB_ERROR("Database could not be opened");
|
|
}
|
|
|
|
boost::optional<bool> is_hdd_result = tools::is_hdd(filename.c_str());
|
|
if (is_hdd_result)
|
|
{
|
|
if (is_hdd_result.value())
|
|
MCLOG_RED(el::Level::Warning, "global", "The blockchain is on a rotating drive: this will be very slow, use an SSD if possible");
|
|
}
|
|
|
|
m_folder = filename;
|
|
|
|
#ifdef __OpenBSD__
|
|
if ((mdb_flags & MDB_WRITEMAP) == 0) {
|
|
MCLOG_RED(el::Level::Info, "global", "Running on OpenBSD: forcing WRITEMAP");
|
|
mdb_flags |= MDB_WRITEMAP;
|
|
}
|
|
#endif
|
|
// set up lmdb environment
|
|
if ((result = mdb_env_create(&m_env)))
|
|
throw0(DB_ERROR(lmdb_error("Failed to create lmdb environment: ", result).c_str()));
|
|
if ((result = mdb_env_set_maxdbs(m_env, 32)))
|
|
throw0(DB_ERROR(lmdb_error("Failed to set max number of dbs: ", result).c_str()));
|
|
|
|
int threads = tools::get_max_concurrency();
|
|
if (threads > 110 && /* maxreaders default is 126, leave some slots for other read processes */
|
|
(result = mdb_env_set_maxreaders(m_env, threads+16)))
|
|
throw0(DB_ERROR(lmdb_error("Failed to set max number of readers: ", result).c_str()));
|
|
|
|
size_t mapsize = DEFAULT_MAPSIZE;
|
|
|
|
if (db_flags & DBF_FAST)
|
|
mdb_flags |= MDB_NOSYNC;
|
|
if (db_flags & DBF_FASTEST)
|
|
mdb_flags |= MDB_NOSYNC | MDB_WRITEMAP | MDB_MAPASYNC;
|
|
if (db_flags & DBF_RDONLY)
|
|
mdb_flags = MDB_RDONLY;
|
|
if (db_flags & DBF_SALVAGE)
|
|
mdb_flags |= MDB_PREVSNAPSHOT;
|
|
|
|
if (auto result = mdb_env_open(m_env, filename.c_str(), mdb_flags, 0644))
|
|
throw0(DB_ERROR(lmdb_error("Failed to open lmdb environment: ", result).c_str()));
|
|
|
|
MDB_envinfo mei;
|
|
mdb_env_info(m_env, &mei);
|
|
uint64_t cur_mapsize = (uint64_t)mei.me_mapsize;
|
|
|
|
if (cur_mapsize < mapsize)
|
|
{
|
|
if (auto result = mdb_env_set_mapsize(m_env, mapsize))
|
|
throw0(DB_ERROR(lmdb_error("Failed to set max memory map size: ", result).c_str()));
|
|
mdb_env_info(m_env, &mei);
|
|
cur_mapsize = (uint64_t)mei.me_mapsize;
|
|
LOG_PRINT_L1("LMDB memory map size: " << cur_mapsize);
|
|
}
|
|
|
|
if (need_resize())
|
|
{
|
|
LOG_PRINT_L0("LMDB memory map needs to be resized, doing that now.");
|
|
do_resize();
|
|
}
|
|
|
|
int txn_flags = 0;
|
|
if (mdb_flags & MDB_RDONLY)
|
|
txn_flags |= MDB_RDONLY;
|
|
|
|
// get a read/write MDB_txn, depending on mdb_flags
|
|
mdb_txn_safe txn;
|
|
if (auto mdb_res = mdb_txn_begin(m_env, NULL, txn_flags, txn))
|
|
throw0(DB_ERROR(lmdb_error("Failed to create a transaction for the db: ", mdb_res).c_str()));
|
|
|
|
// open necessary databases, and set properties as needed
|
|
// uses macros to avoid having to change things too many places
|
|
// also change blockchain_prune.cpp to match
|
|
lmdb_db_open(txn, LMDB_BLOCKS, MDB_INTEGERKEY | MDB_CREATE, m_blocks, "Failed to open db handle for m_blocks");
|
|
|
|
lmdb_db_open(txn, LMDB_BLOCK_INFO, MDB_INTEGERKEY | MDB_CREATE | MDB_DUPSORT | MDB_DUPFIXED, m_block_info, "Failed to open db handle for m_block_info");
|
|
lmdb_db_open(txn, LMDB_BLOCK_HEIGHTS, MDB_INTEGERKEY | MDB_CREATE | MDB_DUPSORT | MDB_DUPFIXED, m_block_heights, "Failed to open db handle for m_block_heights");
|
|
|
|
lmdb_db_open(txn, LMDB_TXS, MDB_INTEGERKEY | MDB_CREATE, m_txs, "Failed to open db handle for m_txs");
|
|
lmdb_db_open(txn, LMDB_TXS_PRUNED, MDB_INTEGERKEY | MDB_CREATE, m_txs_pruned, "Failed to open db handle for m_txs_pruned");
|
|
lmdb_db_open(txn, LMDB_TXS_PRUNABLE, MDB_INTEGERKEY | MDB_CREATE, m_txs_prunable, "Failed to open db handle for m_txs_prunable");
|
|
lmdb_db_open(txn, LMDB_TXS_PRUNABLE_HASH, MDB_INTEGERKEY | MDB_DUPSORT | MDB_DUPFIXED | MDB_CREATE, m_txs_prunable_hash, "Failed to open db handle for m_txs_prunable_hash");
|
|
if (!(mdb_flags & MDB_RDONLY))
|
|
lmdb_db_open(txn, LMDB_TXS_PRUNABLE_TIP, MDB_INTEGERKEY | MDB_DUPSORT | MDB_DUPFIXED | MDB_CREATE, m_txs_prunable_tip, "Failed to open db handle for m_txs_prunable_tip");
|
|
lmdb_db_open(txn, LMDB_TX_INDICES, MDB_INTEGERKEY | MDB_CREATE | MDB_DUPSORT | MDB_DUPFIXED, m_tx_indices, "Failed to open db handle for m_tx_indices");
|
|
lmdb_db_open(txn, LMDB_TX_OUTPUTS, MDB_INTEGERKEY | MDB_CREATE, m_tx_outputs, "Failed to open db handle for m_tx_outputs");
|
|
|
|
lmdb_db_open(txn, LMDB_OUTPUT_TXS, MDB_INTEGERKEY | MDB_CREATE | MDB_DUPSORT | MDB_DUPFIXED, m_output_txs, "Failed to open db handle for m_output_txs");
|
|
lmdb_db_open(txn, LMDB_OUTPUT_AMOUNTS, MDB_INTEGERKEY | MDB_DUPSORT | MDB_DUPFIXED | MDB_CREATE, m_output_amounts, "Failed to open db handle for m_output_amounts");
|
|
lmdb_db_open(txn, LMDB_OUTPUT_TYPES, MDB_DUPSORT | MDB_DUPFIXED | MDB_CREATE, m_output_types, "Failed to open db handle for m_output_types");
|
|
|
|
lmdb_db_open(txn, LMDB_SPENT_KEYS, MDB_INTEGERKEY | MDB_CREATE | MDB_DUPSORT | MDB_DUPFIXED, m_spent_keys, "Failed to open db handle for m_spent_keys");
|
|
|
|
lmdb_db_open(txn, LMDB_TXPOOL_META, MDB_CREATE, m_txpool_meta, "Failed to open db handle for m_txpool_meta");
|
|
lmdb_db_open(txn, LMDB_TXPOOL_BLOB, MDB_CREATE, m_txpool_blob, "Failed to open db handle for m_txpool_blob");
|
|
|
|
lmdb_db_open(txn, LMDB_ALT_BLOCKS, MDB_CREATE, m_alt_blocks, "Failed to open db handle for m_alt_blocks");
|
|
|
|
// this subdb is dropped on sight, so it may not be present when we open the DB.
|
|
// Since we use MDB_CREATE, we'll get an exception if we open read-only and it does not exist.
|
|
// So we don't open for read-only, and also not drop below. It is not used elsewhere.
|
|
if (!(mdb_flags & MDB_RDONLY))
|
|
lmdb_db_open(txn, LMDB_HF_STARTING_HEIGHTS, MDB_CREATE, m_hf_starting_heights, "Failed to open db handle for m_hf_starting_heights");
|
|
|
|
lmdb_db_open(txn, LMDB_HF_VERSIONS, MDB_INTEGERKEY | MDB_CREATE, m_hf_versions, "Failed to open db handle for m_hf_versions");
|
|
|
|
lmdb_db_open(txn, LMDB_PROPERTIES, MDB_CREATE, m_properties, "Failed to open db handle for m_properties");
|
|
|
|
lmdb_db_open(txn, LMDB_CIRC_SUPPLY, MDB_INTEGERKEY | MDB_DUPSORT | MDB_DUPFIXED | MDB_CREATE, m_circ_supply, "Failed to open db handle for m_circ_supply");
|
|
lmdb_db_open(txn, LMDB_CIRC_SUPPLY_TALLY, MDB_CREATE, m_circ_supply_tally, "Failed to open db handle for m_circ_supply_tally");
|
|
|
|
lmdb_db_open(txn, LMDB_YIELD_TXS, MDB_INTEGERKEY | MDB_DUPSORT | MDB_DUPFIXED | MDB_CREATE, m_yield_txs, "Failed to open db handle for m_yield_txs");
|
|
lmdb_db_open(txn, LMDB_YIELD_BLOCKS, MDB_INTEGERKEY | MDB_CREATE, m_yield_blocks, "Failed to open db handle for m_yield_blocks");
|
|
|
|
lmdb_db_open(txn, LMDB_AUDIT_TXS, MDB_INTEGERKEY | MDB_DUPSORT | MDB_DUPFIXED | MDB_CREATE, m_audit_txs, "Failed to open db handle for m_audit_txs");
|
|
lmdb_db_open(txn, LMDB_AUDIT_BLOCKS, MDB_INTEGERKEY | MDB_CREATE, m_audit_blocks, "Failed to open db handle for m_audit_blocks");
|
|
|
|
mdb_set_dupsort(txn, m_spent_keys, compare_hash32);
|
|
mdb_set_dupsort(txn, m_block_heights, compare_hash32);
|
|
mdb_set_dupsort(txn, m_tx_indices, compare_hash32);
|
|
mdb_set_dupsort(txn, m_output_amounts, compare_uint64);
|
|
mdb_set_dupsort(txn, m_output_txs, compare_uint64);
|
|
mdb_set_compare(txn, m_output_types, compare_string);
|
|
mdb_set_dupsort(txn, m_output_types, compare_uint64);
|
|
mdb_set_dupsort(txn, m_block_info, compare_uint64);
|
|
if (!(mdb_flags & MDB_RDONLY))
|
|
mdb_set_dupsort(txn, m_txs_prunable_tip, compare_uint64);
|
|
mdb_set_compare(txn, m_txs_prunable, compare_uint64);
|
|
mdb_set_dupsort(txn, m_txs_prunable_hash, compare_uint64);
|
|
|
|
mdb_set_compare(txn, m_txpool_meta, compare_hash32);
|
|
mdb_set_compare(txn, m_txpool_blob, compare_hash32);
|
|
mdb_set_compare(txn, m_alt_blocks, compare_hash32);
|
|
mdb_set_compare(txn, m_properties, compare_string);
|
|
|
|
mdb_set_compare(txn, m_circ_supply, compare_uint64);
|
|
mdb_set_dupsort(txn, m_circ_supply, compare_uint64);
|
|
mdb_set_compare(txn, m_circ_supply_tally, compare_uint64);
|
|
|
|
mdb_set_dupsort(txn, m_yield_txs, compare_uint64);
|
|
mdb_set_dupsort(txn, m_audit_txs, compare_uint64);
|
|
|
|
if (!(mdb_flags & MDB_RDONLY))
|
|
{
|
|
result = mdb_drop(txn, m_hf_starting_heights, 1);
|
|
if (result && result != MDB_NOTFOUND)
|
|
throw0(DB_ERROR(lmdb_error("Failed to drop m_hf_starting_heights: ", result).c_str()));
|
|
}
|
|
|
|
// get and keep current height
|
|
MDB_stat db_stats;
|
|
if ((result = mdb_stat(txn, m_blocks, &db_stats)))
|
|
throw0(DB_ERROR(lmdb_error("Failed to query m_blocks: ", result).c_str()));
|
|
LOG_PRINT_L2("Setting m_height to: " << db_stats.ms_entries);
|
|
uint64_t m_height = db_stats.ms_entries;
|
|
|
|
bool compatible = true;
|
|
|
|
MDB_val_str(k, "version");
|
|
MDB_val v;
|
|
auto get_result = mdb_get(txn, m_properties, &k, &v);
|
|
if(get_result == MDB_SUCCESS)
|
|
{
|
|
const uint32_t db_version = *(const uint32_t*)v.mv_data;
|
|
if (db_version > VERSION)
|
|
{
|
|
MWARNING("Existing lmdb database was made by a later version (" << db_version << "). We don't know how it will change yet.");
|
|
compatible = false;
|
|
}
|
|
#if VERSION > 0
|
|
else if (db_version < VERSION)
|
|
{
|
|
if (mdb_flags & MDB_RDONLY)
|
|
{
|
|
txn.abort();
|
|
mdb_env_close(m_env);
|
|
m_open = false;
|
|
MFATAL("Existing lmdb database needs to be converted, which cannot be done on a read-only database.");
|
|
MFATAL("Please run salviumd once to convert the database.");
|
|
return;
|
|
}
|
|
// Note that there was a schema change within version 0 as well.
|
|
// See commit e5d2680094ee15889934fe28901e4e133cda56f2 2015/07/10
|
|
// We don't handle the old format previous to that commit.
|
|
txn.commit();
|
|
m_open = true;
|
|
migrate(db_version);
|
|
return;
|
|
}
|
|
#endif
|
|
}
|
|
else
|
|
{
|
|
// if not found, and the DB is non-empty, this is probably
|
|
// an "old" version 0, which we don't handle. If the DB is
|
|
// empty it's fine.
|
|
if (VERSION > 0 && m_height > 0)
|
|
compatible = false;
|
|
}
|
|
|
|
if (!compatible)
|
|
{
|
|
txn.abort();
|
|
mdb_env_close(m_env);
|
|
m_open = false;
|
|
MFATAL("Existing lmdb database is incompatible with this version.");
|
|
MFATAL("Please delete the existing database and resync.");
|
|
return;
|
|
}
|
|
|
|
if (!(mdb_flags & MDB_RDONLY))
|
|
{
|
|
// only write version on an empty DB
|
|
if (m_height == 0)
|
|
{
|
|
MDB_val_str(k, "version");
|
|
MDB_val_copy<uint32_t> v(VERSION);
|
|
auto put_result = mdb_put(txn, m_properties, &k, &v, 0);
|
|
if (put_result != MDB_SUCCESS)
|
|
{
|
|
txn.abort();
|
|
mdb_env_close(m_env);
|
|
m_open = false;
|
|
MERROR("Failed to write version to database.");
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
// commit the transaction
|
|
txn.commit();
|
|
|
|
m_open = true;
|
|
// from here, init should be finished
|
|
}
|
|
|
|
void BlockchainLMDB::close()
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
if (m_batch_active)
|
|
{
|
|
LOG_PRINT_L3("close() first calling batch_abort() due to active batch transaction");
|
|
BlockchainLMDB::batch_abort();
|
|
}
|
|
BlockchainLMDB::sync();
|
|
m_tinfo.reset();
|
|
|
|
// FIXME: not yet thread safe!!! Use with care.
|
|
mdb_env_close(m_env);
|
|
m_open = false;
|
|
}
|
|
|
|
void BlockchainLMDB::sync()
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
if (BlockchainLMDB::is_read_only())
|
|
return;
|
|
|
|
// Does nothing unless LMDB environment was opened with MDB_NOSYNC or in part
|
|
// MDB_NOMETASYNC. Force flush to be synchronous.
|
|
if (auto result = mdb_env_sync(m_env, true))
|
|
{
|
|
throw0(DB_ERROR(lmdb_error("Failed to sync database: ", result).c_str()));
|
|
}
|
|
}
|
|
|
|
void BlockchainLMDB::safesyncmode(const bool onoff)
|
|
{
|
|
MINFO("switching safe mode " << (onoff ? "on" : "off"));
|
|
mdb_env_set_flags(m_env, MDB_NOSYNC|MDB_MAPASYNC, !onoff);
|
|
}
|
|
|
|
void BlockchainLMDB::reset()
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
mdb_txn_safe txn;
|
|
if (auto result = lmdb_txn_begin(m_env, NULL, 0, txn))
|
|
throw0(DB_ERROR(lmdb_error("Failed to create a transaction for the db: ", result).c_str()));
|
|
|
|
if (auto result = mdb_drop(txn, m_blocks, 0))
|
|
throw0(DB_ERROR(lmdb_error("Failed to drop m_blocks: ", result).c_str()));
|
|
if (auto result = mdb_drop(txn, m_block_info, 0))
|
|
throw0(DB_ERROR(lmdb_error("Failed to drop m_block_info: ", result).c_str()));
|
|
if (auto result = mdb_drop(txn, m_block_heights, 0))
|
|
throw0(DB_ERROR(lmdb_error("Failed to drop m_block_heights: ", result).c_str()));
|
|
if (auto result = mdb_drop(txn, m_txs_pruned, 0))
|
|
throw0(DB_ERROR(lmdb_error("Failed to drop m_txs_pruned: ", result).c_str()));
|
|
if (auto result = mdb_drop(txn, m_txs_prunable, 0))
|
|
throw0(DB_ERROR(lmdb_error("Failed to drop m_txs_prunable: ", result).c_str()));
|
|
if (auto result = mdb_drop(txn, m_txs_prunable_hash, 0))
|
|
throw0(DB_ERROR(lmdb_error("Failed to drop m_txs_prunable_hash: ", result).c_str()));
|
|
if (auto result = mdb_drop(txn, m_txs_prunable_tip, 0))
|
|
throw0(DB_ERROR(lmdb_error("Failed to drop m_txs_prunable_tip: ", result).c_str()));
|
|
if (auto result = mdb_drop(txn, m_tx_indices, 0))
|
|
throw0(DB_ERROR(lmdb_error("Failed to drop m_tx_indices: ", result).c_str()));
|
|
if (auto result = mdb_drop(txn, m_tx_outputs, 0))
|
|
throw0(DB_ERROR(lmdb_error("Failed to drop m_tx_outputs: ", result).c_str()));
|
|
if (auto result = mdb_drop(txn, m_circ_supply, 0))
|
|
throw0(DB_ERROR(lmdb_error("Failed to drop m_circ_supply: ", result).c_str()));
|
|
if (auto result = mdb_drop(txn, m_circ_supply_tally, 0))
|
|
throw0(DB_ERROR(lmdb_error("Failed to drop m_circ_supply_tally: ", result).c_str()));
|
|
if (auto result = mdb_drop(txn, m_output_txs, 0))
|
|
throw0(DB_ERROR(lmdb_error("Failed to drop m_output_txs: ", result).c_str()));
|
|
if (auto result = mdb_drop(txn, m_output_amounts, 0))
|
|
throw0(DB_ERROR(lmdb_error("Failed to drop m_output_amounts: ", result).c_str()));
|
|
if (auto result = mdb_drop(txn, m_output_types, 0))
|
|
throw0(DB_ERROR(lmdb_error("Failed to drop m_output_types: ", result).c_str()));
|
|
if (auto result = mdb_drop(txn, m_spent_keys, 0))
|
|
throw0(DB_ERROR(lmdb_error("Failed to drop m_spent_keys: ", result).c_str()));
|
|
(void)mdb_drop(txn, m_hf_starting_heights, 0); // this one is dropped in new code
|
|
if (auto result = mdb_drop(txn, m_hf_versions, 0))
|
|
throw0(DB_ERROR(lmdb_error("Failed to drop m_hf_versions: ", result).c_str()));
|
|
if (auto result = mdb_drop(txn, m_properties, 0))
|
|
throw0(DB_ERROR(lmdb_error("Failed to drop m_properties: ", result).c_str()));
|
|
if (auto result = mdb_drop(txn, m_yield_txs, 0))
|
|
throw0(DB_ERROR(lmdb_error("Failed to drop m_yield_txs: ", result).c_str()));
|
|
if (auto result = mdb_drop(txn, m_yield_blocks, 0))
|
|
throw0(DB_ERROR(lmdb_error("Failed to drop m_yield_blocks: ", result).c_str()));
|
|
if (auto result = mdb_drop(txn, m_audit_txs, 0))
|
|
throw0(DB_ERROR(lmdb_error("Failed to drop m_audit_txs: ", result).c_str()));
|
|
if (auto result = mdb_drop(txn, m_audit_blocks, 0))
|
|
throw0(DB_ERROR(lmdb_error("Failed to drop m_audit_blocks: ", result).c_str()));
|
|
|
|
// init with current version
|
|
MDB_val_str(k, "version");
|
|
MDB_val_copy<uint32_t> v(VERSION);
|
|
if (auto result = mdb_put(txn, m_properties, &k, &v, 0))
|
|
throw0(DB_ERROR(lmdb_error("Failed to write version to database: ", result).c_str()));
|
|
|
|
txn.commit();
|
|
m_cum_size = 0;
|
|
m_cum_count = 0;
|
|
}
|
|
|
|
std::vector<std::string> BlockchainLMDB::get_filenames() const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
std::vector<std::string> filenames;
|
|
|
|
boost::filesystem::path datafile(m_folder);
|
|
datafile /= CRYPTONOTE_BLOCKCHAINDATA_FILENAME;
|
|
boost::filesystem::path lockfile(m_folder);
|
|
lockfile /= CRYPTONOTE_BLOCKCHAINDATA_LOCK_FILENAME;
|
|
|
|
filenames.push_back(datafile.string());
|
|
filenames.push_back(lockfile.string());
|
|
|
|
return filenames;
|
|
}
|
|
|
|
bool BlockchainLMDB::remove_data_file(const std::string& folder) const
|
|
{
|
|
const std::string filename = folder + "/data.mdb";
|
|
try
|
|
{
|
|
boost::filesystem::remove(filename);
|
|
}
|
|
catch (const std::exception &e)
|
|
{
|
|
MERROR("Failed to remove " << filename << ": " << e.what());
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
std::string BlockchainLMDB::get_db_name() const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
|
|
return std::string("lmdb");
|
|
}
|
|
|
|
// TODO: this?
|
|
bool BlockchainLMDB::lock()
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
return false;
|
|
}
|
|
|
|
// TODO: this?
|
|
void BlockchainLMDB::unlock()
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
}
|
|
|
|
|
|
// The below two macros are for DB access within block add/remove, whether
|
|
// regular batch txn is in use or not. m_write_txn is used as a batch txn, even
|
|
// if it's only within block add/remove.
|
|
//
|
|
// DB access functions that may be called both within block add/remove and
|
|
// without should use these. If the function will be called ONLY within block
|
|
// add/remove, m_write_txn alone may be used instead of these macros.
|
|
|
|
#define TXN_BLOCK_PREFIX(flags); \
|
|
mdb_txn_safe auto_txn; \
|
|
mdb_txn_safe* txn_ptr = &auto_txn; \
|
|
if (m_batch_active || m_write_txn) \
|
|
txn_ptr = m_write_txn; \
|
|
else \
|
|
{ \
|
|
if (auto mdb_res = lmdb_txn_begin(m_env, NULL, flags, auto_txn)) \
|
|
throw0(DB_ERROR(lmdb_error(std::string("Failed to create a transaction for the db in ")+__FUNCTION__+": ", mdb_res).c_str())); \
|
|
} \
|
|
|
|
#define TXN_BLOCK_POSTFIX_SUCCESS() \
|
|
do { \
|
|
if (! m_batch_active && ! m_write_txn) \
|
|
auto_txn.commit(); \
|
|
} while(0)
|
|
|
|
void BlockchainLMDB::add_txpool_tx(const crypto::hash &txid, const cryptonote::blobdata_ref &blob, const txpool_tx_meta_t &meta)
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
mdb_txn_cursors *m_cursors = &m_wcursors;
|
|
|
|
CURSOR(txpool_meta)
|
|
CURSOR(txpool_blob)
|
|
|
|
MDB_val k = {sizeof(txid), (void *)&txid};
|
|
MDB_val v = {sizeof(meta), (void *)&meta};
|
|
if (auto result = mdb_cursor_put(m_cur_txpool_meta, &k, &v, MDB_NODUPDATA)) {
|
|
if (result == MDB_KEYEXIST)
|
|
throw1(DB_ERROR("Attempting to add txpool tx metadata that's already in the db"));
|
|
else
|
|
throw1(DB_ERROR(lmdb_error("Error adding txpool tx metadata to db transaction: ", result).c_str()));
|
|
}
|
|
MDB_val_sized(blob_val, blob);
|
|
if (auto result = mdb_cursor_put(m_cur_txpool_blob, &k, &blob_val, MDB_NODUPDATA)) {
|
|
if (result == MDB_KEYEXIST)
|
|
throw1(DB_ERROR("Attempting to add txpool tx blob that's already in the db"));
|
|
else
|
|
throw1(DB_ERROR(lmdb_error("Error adding txpool tx blob to db transaction: ", result).c_str()));
|
|
}
|
|
}
|
|
|
|
void BlockchainLMDB::update_txpool_tx(const crypto::hash &txid, const txpool_tx_meta_t &meta)
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
mdb_txn_cursors *m_cursors = &m_wcursors;
|
|
|
|
CURSOR(txpool_meta)
|
|
CURSOR(txpool_blob)
|
|
|
|
MDB_val k = {sizeof(txid), (void *)&txid};
|
|
MDB_val v;
|
|
auto result = mdb_cursor_get(m_cur_txpool_meta, &k, &v, MDB_SET);
|
|
if (result != 0)
|
|
throw1(DB_ERROR(lmdb_error("Error finding txpool tx meta to update: ", result).c_str()));
|
|
result = mdb_cursor_del(m_cur_txpool_meta, 0);
|
|
if (result)
|
|
throw1(DB_ERROR(lmdb_error("Error adding removal of txpool tx metadata to db transaction: ", result).c_str()));
|
|
v = MDB_val({sizeof(meta), (void *)&meta});
|
|
if ((result = mdb_cursor_put(m_cur_txpool_meta, &k, &v, MDB_NODUPDATA)) != 0) {
|
|
if (result == MDB_KEYEXIST)
|
|
throw1(DB_ERROR("Attempting to add txpool tx metadata that's already in the db"));
|
|
else
|
|
throw1(DB_ERROR(lmdb_error("Error adding txpool tx metadata to db transaction: ", result).c_str()));
|
|
}
|
|
}
|
|
|
|
uint64_t BlockchainLMDB::get_txpool_tx_count(relay_category category) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
int result;
|
|
uint64_t num_entries = 0;
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
|
|
if (category == relay_category::all)
|
|
{
|
|
// No filtering, we can get the number of tx the "fast" way
|
|
MDB_stat db_stats;
|
|
if ((result = mdb_stat(m_txn, m_txpool_meta, &db_stats)))
|
|
throw0(DB_ERROR(lmdb_error("Failed to query m_txpool_meta: ", result).c_str()));
|
|
num_entries = db_stats.ms_entries;
|
|
}
|
|
else
|
|
{
|
|
// Filter unrelayed tx out of the result, so we need to loop over transactions and check their meta data
|
|
RCURSOR(txpool_meta);
|
|
RCURSOR(txpool_blob);
|
|
|
|
MDB_val k;
|
|
MDB_val v;
|
|
MDB_cursor_op op = MDB_FIRST;
|
|
while (1)
|
|
{
|
|
result = mdb_cursor_get(m_cur_txpool_meta, &k, &v, op);
|
|
op = MDB_NEXT;
|
|
if (result == MDB_NOTFOUND)
|
|
break;
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to enumerate txpool tx metadata: ", result).c_str()));
|
|
const txpool_tx_meta_t &meta = *(const txpool_tx_meta_t*)v.mv_data;
|
|
if (meta.matches(category))
|
|
++num_entries;
|
|
}
|
|
}
|
|
TXN_POSTFIX_RDONLY();
|
|
|
|
return num_entries;
|
|
}
|
|
|
|
bool BlockchainLMDB::txpool_has_tx(const crypto::hash& txid, relay_category tx_category) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(txpool_meta)
|
|
|
|
MDB_val k = {sizeof(txid), (void *)&txid};
|
|
MDB_val v;
|
|
auto result = mdb_cursor_get(m_cur_txpool_meta, &k, &v, MDB_SET);
|
|
if (result != 0 && result != MDB_NOTFOUND)
|
|
throw1(DB_ERROR(lmdb_error("Error finding txpool tx meta: ", result).c_str()));
|
|
if (result == MDB_NOTFOUND)
|
|
return false;
|
|
|
|
bool found = true;
|
|
if (tx_category != relay_category::all)
|
|
{
|
|
const txpool_tx_meta_t &meta = *(const txpool_tx_meta_t*)v.mv_data;
|
|
found = meta.matches(tx_category);
|
|
}
|
|
TXN_POSTFIX_RDONLY();
|
|
return found;
|
|
}
|
|
|
|
void BlockchainLMDB::remove_txpool_tx(const crypto::hash& txid)
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
mdb_txn_cursors *m_cursors = &m_wcursors;
|
|
|
|
CURSOR(txpool_meta)
|
|
CURSOR(txpool_blob)
|
|
|
|
MDB_val k = {sizeof(txid), (void *)&txid};
|
|
auto result = mdb_cursor_get(m_cur_txpool_meta, &k, NULL, MDB_SET);
|
|
if (result != 0 && result != MDB_NOTFOUND)
|
|
throw1(DB_ERROR(lmdb_error("Error finding txpool tx meta to remove: ", result).c_str()));
|
|
if (!result)
|
|
{
|
|
result = mdb_cursor_del(m_cur_txpool_meta, 0);
|
|
if (result)
|
|
throw1(DB_ERROR(lmdb_error("Error adding removal of txpool tx metadata to db transaction: ", result).c_str()));
|
|
}
|
|
result = mdb_cursor_get(m_cur_txpool_blob, &k, NULL, MDB_SET);
|
|
if (result != 0 && result != MDB_NOTFOUND)
|
|
throw1(DB_ERROR(lmdb_error("Error finding txpool tx blob to remove: ", result).c_str()));
|
|
if (!result)
|
|
{
|
|
result = mdb_cursor_del(m_cur_txpool_blob, 0);
|
|
if (result)
|
|
throw1(DB_ERROR(lmdb_error("Error adding removal of txpool tx blob to db transaction: ", result).c_str()));
|
|
}
|
|
}
|
|
|
|
bool BlockchainLMDB::get_txpool_tx_meta(const crypto::hash& txid, txpool_tx_meta_t &meta) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(txpool_meta)
|
|
|
|
MDB_val k = {sizeof(txid), (void *)&txid};
|
|
MDB_val v;
|
|
auto result = mdb_cursor_get(m_cur_txpool_meta, &k, &v, MDB_SET);
|
|
if (result == MDB_NOTFOUND)
|
|
return false;
|
|
if (result != 0)
|
|
throw1(DB_ERROR(lmdb_error("Error finding txpool tx meta: ", result).c_str()));
|
|
|
|
meta = *(const txpool_tx_meta_t*)v.mv_data;
|
|
TXN_POSTFIX_RDONLY();
|
|
return true;
|
|
}
|
|
|
|
bool BlockchainLMDB::get_txpool_tx_blob(const crypto::hash& txid, cryptonote::blobdata &bd, relay_category tx_category) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(txpool_blob)
|
|
|
|
MDB_val k = {sizeof(txid), (void *)&txid};
|
|
MDB_val v;
|
|
|
|
// if filtering, make sure those requirements are met before copying blob
|
|
if (tx_category != relay_category::all)
|
|
{
|
|
RCURSOR(txpool_meta)
|
|
auto result = mdb_cursor_get(m_cur_txpool_meta, &k, &v, MDB_SET);
|
|
if (result == MDB_NOTFOUND)
|
|
return false;
|
|
if (result != 0)
|
|
throw1(DB_ERROR(lmdb_error("Error finding txpool tx meta: ", result).c_str()));
|
|
|
|
const txpool_tx_meta_t& meta = *(const txpool_tx_meta_t*)v.mv_data;
|
|
if (!meta.matches(tx_category))
|
|
return false;
|
|
}
|
|
|
|
auto result = mdb_cursor_get(m_cur_txpool_blob, &k, &v, MDB_SET);
|
|
if (result == MDB_NOTFOUND)
|
|
return false;
|
|
if (result != 0)
|
|
throw1(DB_ERROR(lmdb_error("Error finding txpool tx blob: ", result).c_str()));
|
|
|
|
bd.assign(reinterpret_cast<const char*>(v.mv_data), v.mv_size);
|
|
TXN_POSTFIX_RDONLY();
|
|
return true;
|
|
}
|
|
|
|
cryptonote::blobdata BlockchainLMDB::get_txpool_tx_blob(const crypto::hash& txid, relay_category tx_category) const
|
|
{
|
|
cryptonote::blobdata bd;
|
|
if (!get_txpool_tx_blob(txid, bd, tx_category))
|
|
throw1(DB_ERROR("Tx not found in txpool: "));
|
|
return bd;
|
|
}
|
|
|
|
uint32_t BlockchainLMDB::get_blockchain_pruning_seed() const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(properties)
|
|
MDB_val_str(k, "pruning_seed");
|
|
MDB_val v;
|
|
int result = mdb_cursor_get(m_cur_properties, &k, &v, MDB_SET);
|
|
if (result == MDB_NOTFOUND)
|
|
return 0;
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to retrieve pruning seed: ", result).c_str()));
|
|
if (v.mv_size != sizeof(uint32_t))
|
|
throw0(DB_ERROR("Failed to retrieve or create pruning seed: unexpected value size"));
|
|
uint32_t pruning_seed;
|
|
memcpy(&pruning_seed, v.mv_data, sizeof(pruning_seed));
|
|
TXN_POSTFIX_RDONLY();
|
|
return pruning_seed;
|
|
}
|
|
|
|
static bool is_v1_tx(MDB_cursor *c_txs_pruned, MDB_val *tx_id)
|
|
{
|
|
MDB_val v;
|
|
int ret = mdb_cursor_get(c_txs_pruned, tx_id, &v, MDB_SET);
|
|
if (ret)
|
|
throw0(DB_ERROR(lmdb_error("Failed to find transaction pruned data: ", ret).c_str()));
|
|
if (v.mv_size == 0)
|
|
throw0(DB_ERROR("Invalid transaction pruned data"));
|
|
return cryptonote::is_v1_tx(cryptonote::blobdata_ref{(const char*)v.mv_data, v.mv_size});
|
|
}
|
|
|
|
enum { prune_mode_prune, prune_mode_update, prune_mode_check };
|
|
|
|
bool BlockchainLMDB::prune_worker(int mode, uint32_t pruning_seed)
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
const uint32_t log_stripes = tools::get_pruning_log_stripes(pruning_seed);
|
|
if (log_stripes && log_stripes != CRYPTONOTE_PRUNING_LOG_STRIPES)
|
|
throw0(DB_ERROR("Pruning seed not in range"));
|
|
pruning_seed = tools::get_pruning_stripe(pruning_seed);
|
|
if (pruning_seed > (1ul << CRYPTONOTE_PRUNING_LOG_STRIPES))
|
|
throw0(DB_ERROR("Pruning seed not in range"));
|
|
check_open();
|
|
|
|
TIME_MEASURE_START(t);
|
|
|
|
size_t n_total_records = 0, n_prunable_records = 0, n_pruned_records = 0, commit_counter = 0;
|
|
uint64_t n_bytes = 0;
|
|
|
|
mdb_txn_safe txn;
|
|
auto result = mdb_txn_begin(m_env, NULL, 0, txn);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to create a transaction for the db: ", result).c_str()));
|
|
|
|
MDB_stat db_stats;
|
|
if ((result = mdb_stat(txn, m_txs_prunable, &db_stats)))
|
|
throw0(DB_ERROR(lmdb_error("Failed to query m_txs_prunable: ", result).c_str()));
|
|
const size_t pages0 = db_stats.ms_branch_pages + db_stats.ms_leaf_pages + db_stats.ms_overflow_pages;
|
|
|
|
MDB_val_str(k, "pruning_seed");
|
|
MDB_val v;
|
|
result = mdb_get(txn, m_properties, &k, &v);
|
|
bool prune_tip_table = false;
|
|
if (result == MDB_NOTFOUND)
|
|
{
|
|
// not pruned yet
|
|
if (mode != prune_mode_prune)
|
|
{
|
|
txn.abort();
|
|
TIME_MEASURE_FINISH(t);
|
|
MDEBUG("Pruning not enabled, nothing to do");
|
|
return true;
|
|
}
|
|
if (pruning_seed == 0)
|
|
pruning_seed = tools::get_random_stripe();
|
|
pruning_seed = tools::make_pruning_seed(pruning_seed, CRYPTONOTE_PRUNING_LOG_STRIPES);
|
|
v.mv_data = &pruning_seed;
|
|
v.mv_size = sizeof(pruning_seed);
|
|
result = mdb_put(txn, m_properties, &k, &v, 0);
|
|
if (result)
|
|
throw0(DB_ERROR("Failed to save pruning seed"));
|
|
prune_tip_table = false;
|
|
}
|
|
else if (result == 0)
|
|
{
|
|
// pruned already
|
|
if (v.mv_size != sizeof(uint32_t))
|
|
throw0(DB_ERROR("Failed to retrieve or create pruning seed: unexpected value size"));
|
|
const uint32_t data = *(const uint32_t*)v.mv_data;
|
|
if (pruning_seed == 0)
|
|
pruning_seed = tools::get_pruning_stripe(data);
|
|
if (tools::get_pruning_stripe(data) != pruning_seed)
|
|
throw0(DB_ERROR("Blockchain already pruned with different seed"));
|
|
if (tools::get_pruning_log_stripes(data) != CRYPTONOTE_PRUNING_LOG_STRIPES)
|
|
throw0(DB_ERROR("Blockchain already pruned with different base"));
|
|
pruning_seed = tools::make_pruning_seed(pruning_seed, CRYPTONOTE_PRUNING_LOG_STRIPES);
|
|
prune_tip_table = (mode == prune_mode_update);
|
|
}
|
|
else
|
|
{
|
|
throw0(DB_ERROR(lmdb_error("Failed to retrieve or create pruning seed: ", result).c_str()));
|
|
}
|
|
|
|
if (mode == prune_mode_check)
|
|
MINFO("Checking blockchain pruning...");
|
|
else
|
|
MINFO("Pruning blockchain...");
|
|
|
|
MDB_cursor *c_txs_pruned, *c_txs_prunable, *c_txs_prunable_tip;
|
|
result = mdb_cursor_open(txn, m_txs_pruned, &c_txs_pruned);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to open a cursor for txs_pruned: ", result).c_str()));
|
|
result = mdb_cursor_open(txn, m_txs_prunable, &c_txs_prunable);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to open a cursor for txs_prunable: ", result).c_str()));
|
|
result = mdb_cursor_open(txn, m_txs_prunable_tip, &c_txs_prunable_tip);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to open a cursor for txs_prunable_tip: ", result).c_str()));
|
|
const uint64_t blockchain_height = height();
|
|
|
|
if (prune_tip_table)
|
|
{
|
|
MDB_cursor_op op = MDB_FIRST;
|
|
while (1)
|
|
{
|
|
int ret = mdb_cursor_get(c_txs_prunable_tip, &k, &v, op);
|
|
op = MDB_NEXT;
|
|
if (ret == MDB_NOTFOUND)
|
|
break;
|
|
if (ret)
|
|
throw0(DB_ERROR(lmdb_error("Failed to enumerate transactions: ", ret).c_str()));
|
|
|
|
uint64_t block_height;
|
|
memcpy(&block_height, v.mv_data, sizeof(block_height));
|
|
if (block_height + CRYPTONOTE_PRUNING_TIP_BLOCKS < blockchain_height)
|
|
{
|
|
++n_total_records;
|
|
if (!tools::has_unpruned_block(block_height, blockchain_height, pruning_seed) && !is_v1_tx(c_txs_pruned, &k))
|
|
{
|
|
++n_prunable_records;
|
|
result = mdb_cursor_get(c_txs_prunable, &k, &v, MDB_SET);
|
|
if (result == MDB_NOTFOUND)
|
|
MDEBUG("Already pruned at height " << block_height << "/" << blockchain_height);
|
|
else if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to find transaction prunable data: ", result).c_str()));
|
|
else
|
|
{
|
|
MDEBUG("Pruning at height " << block_height << "/" << blockchain_height);
|
|
++n_pruned_records;
|
|
++commit_counter;
|
|
n_bytes += k.mv_size + v.mv_size;
|
|
result = mdb_cursor_del(c_txs_prunable, 0);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to delete transaction prunable data: ", result).c_str()));
|
|
}
|
|
}
|
|
result = mdb_cursor_del(c_txs_prunable_tip, 0);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to delete transaction tip data: ", result).c_str()));
|
|
|
|
if (mode != prune_mode_check && commit_counter >= 4096)
|
|
{
|
|
MDEBUG("Committing txn at checkpoint...");
|
|
txn.commit();
|
|
result = mdb_txn_begin(m_env, NULL, 0, txn);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to create a transaction for the db: ", result).c_str()));
|
|
result = mdb_cursor_open(txn, m_txs_pruned, &c_txs_pruned);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to open a cursor for txs_pruned: ", result).c_str()));
|
|
result = mdb_cursor_open(txn, m_txs_prunable, &c_txs_prunable);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to open a cursor for txs_prunable: ", result).c_str()));
|
|
result = mdb_cursor_open(txn, m_txs_prunable_tip, &c_txs_prunable_tip);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to open a cursor for txs_prunable_tip: ", result).c_str()));
|
|
commit_counter = 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
MDB_cursor *c_tx_indices;
|
|
result = mdb_cursor_open(txn, m_tx_indices, &c_tx_indices);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to open a cursor for tx_indices: ", result).c_str()));
|
|
MDB_cursor_op op = MDB_FIRST;
|
|
while (1)
|
|
{
|
|
int ret = mdb_cursor_get(c_tx_indices, &k, &v, op);
|
|
op = MDB_NEXT;
|
|
if (ret == MDB_NOTFOUND)
|
|
break;
|
|
if (ret)
|
|
throw0(DB_ERROR(lmdb_error("Failed to enumerate transactions: ", ret).c_str()));
|
|
|
|
++n_total_records;
|
|
//const txindex *ti = (const txindex *)v.mv_data;
|
|
txindex ti;
|
|
memcpy(&ti, v.mv_data, sizeof(ti));
|
|
const uint64_t block_height = ti.data.block_id;
|
|
if (block_height + CRYPTONOTE_PRUNING_TIP_BLOCKS >= blockchain_height)
|
|
{
|
|
MDB_val_set(kp, ti.data.tx_id);
|
|
MDB_val_set(vp, block_height);
|
|
if (mode == prune_mode_check)
|
|
{
|
|
result = mdb_cursor_get(c_txs_prunable_tip, &kp, &vp, MDB_SET);
|
|
if (result && result != MDB_NOTFOUND)
|
|
throw0(DB_ERROR(lmdb_error("Error looking for transaction prunable data: ", result).c_str()));
|
|
if (result == MDB_NOTFOUND)
|
|
MERROR("Transaction not found in prunable tip table for height " << block_height << "/" << blockchain_height <<
|
|
", seed " << epee::string_tools::to_string_hex(pruning_seed));
|
|
}
|
|
else
|
|
{
|
|
result = mdb_cursor_put(c_txs_prunable_tip, &kp, &vp, 0);
|
|
if (result && result != MDB_NOTFOUND)
|
|
throw0(DB_ERROR(lmdb_error("Error looking for transaction prunable data: ", result).c_str()));
|
|
}
|
|
}
|
|
MDB_val_set(kp, ti.data.tx_id);
|
|
if (!tools::has_unpruned_block(block_height, blockchain_height, pruning_seed) && !is_v1_tx(c_txs_pruned, &kp))
|
|
{
|
|
result = mdb_cursor_get(c_txs_prunable, &kp, &v, MDB_SET);
|
|
if (result && result != MDB_NOTFOUND)
|
|
throw0(DB_ERROR(lmdb_error("Error looking for transaction prunable data: ", result).c_str()));
|
|
if (mode == prune_mode_check)
|
|
{
|
|
if (result != MDB_NOTFOUND)
|
|
MERROR("Prunable data found for pruned height " << block_height << "/" << blockchain_height <<
|
|
", seed " << epee::string_tools::to_string_hex(pruning_seed));
|
|
}
|
|
else
|
|
{
|
|
++n_prunable_records;
|
|
if (result == MDB_NOTFOUND)
|
|
MDEBUG("Already pruned at height " << block_height << "/" << blockchain_height);
|
|
else
|
|
{
|
|
MDEBUG("Pruning at height " << block_height << "/" << blockchain_height);
|
|
++n_pruned_records;
|
|
n_bytes += kp.mv_size + v.mv_size;
|
|
result = mdb_cursor_del(c_txs_prunable, 0);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to delete transaction prunable data: ", result).c_str()));
|
|
++commit_counter;
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (mode == prune_mode_check)
|
|
{
|
|
MDB_val_set(kp, ti.data.tx_id);
|
|
result = mdb_cursor_get(c_txs_prunable, &kp, &v, MDB_SET);
|
|
if (result && result != MDB_NOTFOUND)
|
|
throw0(DB_ERROR(lmdb_error("Error looking for transaction prunable data: ", result).c_str()));
|
|
if (result == MDB_NOTFOUND)
|
|
MERROR("Prunable data not found for unpruned height " << block_height << "/" << blockchain_height <<
|
|
", seed " << epee::string_tools::to_string_hex(pruning_seed));
|
|
}
|
|
}
|
|
|
|
if (mode != prune_mode_check && commit_counter >= 4096)
|
|
{
|
|
MDEBUG("Committing txn at checkpoint...");
|
|
txn.commit();
|
|
result = mdb_txn_begin(m_env, NULL, 0, txn);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to create a transaction for the db: ", result).c_str()));
|
|
result = mdb_cursor_open(txn, m_txs_pruned, &c_txs_pruned);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to open a cursor for txs_pruned: ", result).c_str()));
|
|
result = mdb_cursor_open(txn, m_txs_prunable, &c_txs_prunable);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to open a cursor for txs_prunable: ", result).c_str()));
|
|
result = mdb_cursor_open(txn, m_txs_prunable_tip, &c_txs_prunable_tip);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to open a cursor for txs_prunable_tip: ", result).c_str()));
|
|
result = mdb_cursor_open(txn, m_tx_indices, &c_tx_indices);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to open a cursor for tx_indices: ", result).c_str()));
|
|
MDB_val val;
|
|
val.mv_size = sizeof(ti);
|
|
val.mv_data = (void *)&ti;
|
|
result = mdb_cursor_get(c_tx_indices, (MDB_val*)&zerokval, &val, MDB_GET_BOTH);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to restore cursor for tx_indices: ", result).c_str()));
|
|
commit_counter = 0;
|
|
}
|
|
}
|
|
mdb_cursor_close(c_tx_indices);
|
|
}
|
|
|
|
if ((result = mdb_stat(txn, m_txs_prunable, &db_stats)))
|
|
throw0(DB_ERROR(lmdb_error("Failed to query m_txs_prunable: ", result).c_str()));
|
|
const size_t pages1 = db_stats.ms_branch_pages + db_stats.ms_leaf_pages + db_stats.ms_overflow_pages;
|
|
const size_t db_bytes = (pages0 - pages1) * db_stats.ms_psize;
|
|
|
|
mdb_cursor_close(c_txs_prunable_tip);
|
|
mdb_cursor_close(c_txs_prunable);
|
|
mdb_cursor_close(c_txs_pruned);
|
|
|
|
txn.commit();
|
|
|
|
TIME_MEASURE_FINISH(t);
|
|
|
|
MINFO((mode == prune_mode_check ? "Checked" : "Pruned") << " blockchain in " <<
|
|
t << " ms: " << (n_bytes/1024.0f/1024.0f) << " MB (" << db_bytes/1024.0f/1024.0f << " MB) pruned in " <<
|
|
n_pruned_records << " records (" << pages0 - pages1 << "/" << pages0 << " " << db_stats.ms_psize << " byte pages), " <<
|
|
n_prunable_records << "/" << n_total_records << " pruned records");
|
|
return true;
|
|
}
|
|
|
|
bool BlockchainLMDB::prune_blockchain(uint32_t pruning_seed)
|
|
{
|
|
return prune_worker(prune_mode_prune, pruning_seed);
|
|
}
|
|
|
|
bool BlockchainLMDB::update_pruning()
|
|
{
|
|
return prune_worker(prune_mode_update, 0);
|
|
}
|
|
|
|
bool BlockchainLMDB::check_pruning()
|
|
{
|
|
return prune_worker(prune_mode_check, 0);
|
|
}
|
|
|
|
bool BlockchainLMDB::for_all_txpool_txes(std::function<bool(const crypto::hash&, const txpool_tx_meta_t&, const cryptonote::blobdata_ref*)> f, bool include_blob, relay_category category) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(txpool_meta);
|
|
RCURSOR(txpool_blob);
|
|
|
|
MDB_val k;
|
|
MDB_val v;
|
|
bool ret = true;
|
|
|
|
MDB_cursor_op op = MDB_FIRST;
|
|
while (1)
|
|
{
|
|
int result = mdb_cursor_get(m_cur_txpool_meta, &k, &v, op);
|
|
op = MDB_NEXT;
|
|
if (result == MDB_NOTFOUND)
|
|
break;
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to enumerate txpool tx metadata: ", result).c_str()));
|
|
const crypto::hash txid = *(const crypto::hash*)k.mv_data;
|
|
const txpool_tx_meta_t &meta = *(const txpool_tx_meta_t*)v.mv_data;
|
|
if (!meta.matches(category))
|
|
continue;
|
|
cryptonote::blobdata_ref bd;
|
|
if (include_blob)
|
|
{
|
|
MDB_val b;
|
|
result = mdb_cursor_get(m_cur_txpool_blob, &k, &b, MDB_SET);
|
|
if (result == MDB_NOTFOUND)
|
|
throw0(DB_ERROR("Failed to find txpool tx blob to match metadata"));
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to enumerate txpool tx blob: ", result).c_str()));
|
|
bd = {reinterpret_cast<const char*>(b.mv_data), b.mv_size};
|
|
}
|
|
|
|
if (!f(txid, meta, &bd)) {
|
|
ret = false;
|
|
break;
|
|
}
|
|
}
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
|
|
return ret;
|
|
}
|
|
|
|
bool BlockchainLMDB::for_all_alt_blocks(std::function<bool(const crypto::hash&, const alt_block_data_t&, const cryptonote::blobdata_ref*)> f, bool include_blob) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(alt_blocks);
|
|
|
|
MDB_val k;
|
|
MDB_val v;
|
|
bool ret = true;
|
|
|
|
MDB_cursor_op op = MDB_FIRST;
|
|
while (1)
|
|
{
|
|
int result = mdb_cursor_get(m_cur_alt_blocks, &k, &v, op);
|
|
op = MDB_NEXT;
|
|
if (result == MDB_NOTFOUND)
|
|
break;
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to enumerate alt blocks: ", result).c_str()));
|
|
const crypto::hash &blkid = *(const crypto::hash*)k.mv_data;
|
|
if (v.mv_size < sizeof(alt_block_data_t))
|
|
throw0(DB_ERROR("alt_blocks record is too small"));
|
|
const alt_block_data_t *data = (const alt_block_data_t*)v.mv_data;
|
|
cryptonote::blobdata_ref bd;
|
|
if (include_blob)
|
|
{
|
|
bd = {reinterpret_cast<const char*>(v.mv_data) + sizeof(alt_block_data_t), v.mv_size - sizeof(alt_block_data_t)};
|
|
}
|
|
|
|
if (!f(blkid, *data, &bd)) {
|
|
ret = false;
|
|
break;
|
|
}
|
|
}
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
|
|
return ret;
|
|
}
|
|
|
|
bool BlockchainLMDB::block_exists(const crypto::hash& h, uint64_t *height) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(block_heights);
|
|
|
|
bool ret = false;
|
|
MDB_val_set(key, h);
|
|
auto get_result = mdb_cursor_get(m_cur_block_heights, (MDB_val *)&zerokval, &key, MDB_GET_BOTH);
|
|
if (get_result == MDB_NOTFOUND)
|
|
{
|
|
LOG_PRINT_L3("Block with hash " << epee::string_tools::pod_to_hex(h) << " not found in db");
|
|
}
|
|
else if (get_result)
|
|
throw0(DB_ERROR(lmdb_error("DB error attempting to fetch block index from hash", get_result).c_str()));
|
|
else
|
|
{
|
|
if (height)
|
|
{
|
|
const blk_height *bhp = (const blk_height *)key.mv_data;
|
|
*height = bhp->bh_height;
|
|
}
|
|
ret = true;
|
|
}
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
return ret;
|
|
}
|
|
|
|
cryptonote::blobdata BlockchainLMDB::get_block_blob(const crypto::hash& h) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
return get_block_blob_from_height(get_block_height(h));
|
|
}
|
|
|
|
uint64_t BlockchainLMDB::get_block_height(const crypto::hash& h) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(block_heights);
|
|
|
|
MDB_val_set(key, h);
|
|
auto get_result = mdb_cursor_get(m_cur_block_heights, (MDB_val *)&zerokval, &key, MDB_GET_BOTH);
|
|
if (get_result == MDB_NOTFOUND)
|
|
throw1(BLOCK_DNE("Attempted to retrieve non-existent block height"));
|
|
else if (get_result)
|
|
throw0(DB_ERROR("Error attempting to retrieve a block height from the db"));
|
|
|
|
blk_height *bhp = (blk_height *)key.mv_data;
|
|
uint64_t ret = bhp->bh_height;
|
|
TXN_POSTFIX_RDONLY();
|
|
return ret;
|
|
}
|
|
|
|
block_header BlockchainLMDB::get_block_header(const crypto::hash& h) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
// block_header object is automatically cast from block object
|
|
return get_block(h);
|
|
}
|
|
|
|
cryptonote::blobdata BlockchainLMDB::get_block_blob_from_height(const uint64_t& height) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(blocks);
|
|
|
|
MDB_val_copy<uint64_t> key(height);
|
|
MDB_val result;
|
|
auto get_result = mdb_cursor_get(m_cur_blocks, &key, &result, MDB_SET);
|
|
if (get_result == MDB_NOTFOUND)
|
|
{
|
|
throw0(BLOCK_DNE(std::string("Attempt to get block from height ").append(boost::lexical_cast<std::string>(height)).append(" failed -- block not in db").c_str()));
|
|
}
|
|
else if (get_result)
|
|
throw0(DB_ERROR("Error attempting to retrieve a block from the db"));
|
|
|
|
blobdata bd;
|
|
bd.assign(reinterpret_cast<char*>(result.mv_data), result.mv_size);
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
|
|
return bd;
|
|
}
|
|
|
|
uint64_t BlockchainLMDB::get_block_timestamp(const uint64_t& height) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(block_info);
|
|
|
|
MDB_val_set(result, height);
|
|
auto get_result = mdb_cursor_get(m_cur_block_info, (MDB_val *)&zerokval, &result, MDB_GET_BOTH);
|
|
if (get_result == MDB_NOTFOUND)
|
|
{
|
|
throw0(BLOCK_DNE(std::string("Attempt to get timestamp from height ").append(boost::lexical_cast<std::string>(height)).append(" failed -- timestamp not in db").c_str()));
|
|
}
|
|
else if (get_result)
|
|
throw0(DB_ERROR("Error attempting to retrieve a timestamp from the db"));
|
|
|
|
mdb_block_info *bi = (mdb_block_info *)result.mv_data;
|
|
uint64_t ret = bi->bi_timestamp;
|
|
TXN_POSTFIX_RDONLY();
|
|
return ret;
|
|
}
|
|
|
|
std::pair<std::vector<uint64_t>, uint64_t> BlockchainLMDB::get_block_cumulative_rct_outputs(const std::vector<uint64_t> &heights, const std::string asset_type) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
std::vector<uint64_t> res;
|
|
uint64_t num_spendable_global_outs = 0;
|
|
int result;
|
|
|
|
if (heights.empty())
|
|
return {};
|
|
res.reserve(heights.size());
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(block_info);
|
|
|
|
MDB_stat db_stats;
|
|
if ((result = mdb_stat(m_txn, m_blocks, &db_stats)))
|
|
throw0(DB_ERROR(lmdb_error("Failed to query m_blocks: ", result).c_str()));
|
|
for (size_t i = 0; i < heights.size(); ++i)
|
|
if (heights[i] >= db_stats.ms_entries)
|
|
throw0(BLOCK_DNE(std::string("Attempt to get rct distribution from height " + std::to_string(heights[i]) + " failed -- block size not in db").c_str()));
|
|
|
|
MDB_val v;
|
|
|
|
uint64_t prev_height = heights[0];
|
|
uint64_t range_begin = 0, range_end = 0;
|
|
for (uint64_t height: heights)
|
|
{
|
|
if (height >= range_begin && height < range_end)
|
|
{
|
|
// nohting to do
|
|
}
|
|
else
|
|
{
|
|
if (height == prev_height + 1)
|
|
{
|
|
MDB_val k2;
|
|
result = mdb_cursor_get(m_cur_block_info, &k2, &v, MDB_NEXT_MULTIPLE);
|
|
range_begin = ((const mdb_block_info*)v.mv_data)->bi_height;
|
|
range_end = range_begin + v.mv_size / sizeof(mdb_block_info); // whole records please
|
|
if (height < range_begin || height >= range_end)
|
|
throw0(DB_ERROR(("Height " + std::to_string(height) + " not included in multuple record range: " + std::to_string(range_begin) + "-" + std::to_string(range_end)).c_str()));
|
|
}
|
|
else
|
|
{
|
|
v.mv_size = sizeof(uint64_t);
|
|
v.mv_data = (void*)&height;
|
|
result = mdb_cursor_get(m_cur_block_info, (MDB_val *)&zerokval, &v, MDB_GET_BOTH);
|
|
range_begin = height;
|
|
range_end = range_begin + 1;
|
|
}
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Error attempting to retrieve rct distribution from the db: ", result).c_str()));
|
|
}
|
|
const mdb_block_info *bi = ((const mdb_block_info *)v.mv_data) + (height - range_begin);
|
|
|
|
// if no asset type is provided in the request, an old client is requesting the cumulative outputs,
|
|
// and is expecting the global output distribution that isn't bucketed by asset type in response
|
|
res.push_back(asset_type.empty() ? bi->bi_cum_rct : bi->bi_cum_rct_by_asset_type[asset_type]);
|
|
|
|
if (height == heights[heights.size() - CRYPTONOTE_DEFAULT_TX_SPENDABLE_AGE])
|
|
num_spendable_global_outs = bi->bi_cum_rct;
|
|
|
|
prev_height = height;
|
|
}
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
return std::make_pair(res, num_spendable_global_outs);
|
|
}
|
|
|
|
uint64_t BlockchainLMDB::get_top_block_timestamp() const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
uint64_t m_height = height();
|
|
|
|
// if no blocks, return 0
|
|
if (m_height == 0)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
return get_block_timestamp(m_height - 1);
|
|
}
|
|
|
|
size_t BlockchainLMDB::get_block_weight(const uint64_t& height) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(block_info);
|
|
|
|
MDB_val_set(result, height);
|
|
auto get_result = mdb_cursor_get(m_cur_block_info, (MDB_val *)&zerokval, &result, MDB_GET_BOTH);
|
|
if (get_result == MDB_NOTFOUND)
|
|
{
|
|
throw0(BLOCK_DNE(std::string("Attempt to get block size from height ").append(boost::lexical_cast<std::string>(height)).append(" failed -- block size not in db").c_str()));
|
|
}
|
|
else if (get_result)
|
|
throw0(DB_ERROR("Error attempting to retrieve a block size from the db"));
|
|
|
|
mdb_block_info *bi = (mdb_block_info *)result.mv_data;
|
|
size_t ret = bi->bi_weight;
|
|
TXN_POSTFIX_RDONLY();
|
|
return ret;
|
|
}
|
|
|
|
std::vector<uint64_t> BlockchainLMDB::get_block_info_64bit_fields(uint64_t start_height, size_t count, off_t offset) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(block_info);
|
|
|
|
const uint64_t h = height();
|
|
if (start_height >= h)
|
|
throw0(DB_ERROR(("Height " + std::to_string(start_height) + " not in blockchain").c_str()));
|
|
|
|
std::vector<uint64_t> ret;
|
|
ret.reserve(count);
|
|
|
|
MDB_val v;
|
|
uint64_t range_begin = 0, range_end = 0;
|
|
for (uint64_t height = start_height; height < h && count--; ++height)
|
|
{
|
|
if (height >= range_begin && height < range_end)
|
|
{
|
|
// nothing to do
|
|
}
|
|
else
|
|
{
|
|
int result = 0;
|
|
if (range_end > 0)
|
|
{
|
|
MDB_val k2;
|
|
result = mdb_cursor_get(m_cur_block_info, &k2, &v, MDB_NEXT_MULTIPLE);
|
|
range_begin = ((const mdb_block_info*)v.mv_data)->bi_height;
|
|
range_end = range_begin + v.mv_size / sizeof(mdb_block_info); // whole records please
|
|
if (height < range_begin || height >= range_end)
|
|
throw0(DB_ERROR(("Height " + std::to_string(height) + " not included in multiple record range: " + std::to_string(range_begin) + "-" + std::to_string(range_end)).c_str()));
|
|
}
|
|
else
|
|
{
|
|
v.mv_size = sizeof(uint64_t);
|
|
v.mv_data = (void*)&height;
|
|
result = mdb_cursor_get(m_cur_block_info, (MDB_val *)&zerokval, &v, MDB_GET_BOTH);
|
|
range_begin = height;
|
|
range_end = range_begin + 1;
|
|
}
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Error attempting to retrieve block_info from the db: ", result).c_str()));
|
|
}
|
|
const mdb_block_info *bi = ((const mdb_block_info *)v.mv_data) + (height - range_begin);
|
|
ret.push_back(*(const uint64_t*)(((const char*)bi) + offset));
|
|
}
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
return ret;
|
|
}
|
|
|
|
uint64_t BlockchainLMDB::get_max_block_size()
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(properties)
|
|
MDB_val_str(k, "max_block_size");
|
|
MDB_val v;
|
|
int result = mdb_cursor_get(m_cur_properties, &k, &v, MDB_SET);
|
|
if (result == MDB_NOTFOUND)
|
|
return std::numeric_limits<uint64_t>::max();
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to retrieve max block size: ", result).c_str()));
|
|
if (v.mv_size != sizeof(uint64_t))
|
|
throw0(DB_ERROR("Failed to retrieve or create max block size: unexpected value size"));
|
|
uint64_t max_block_size;
|
|
memcpy(&max_block_size, v.mv_data, sizeof(max_block_size));
|
|
TXN_POSTFIX_RDONLY();
|
|
return max_block_size;
|
|
}
|
|
|
|
void BlockchainLMDB::add_max_block_size(uint64_t sz)
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
mdb_txn_cursors *m_cursors = &m_wcursors;
|
|
|
|
CURSOR(properties)
|
|
|
|
MDB_val_str(k, "max_block_size");
|
|
MDB_val v;
|
|
int result = mdb_cursor_get(m_cur_properties, &k, &v, MDB_SET);
|
|
if (result && result != MDB_NOTFOUND)
|
|
throw0(DB_ERROR(lmdb_error("Failed to retrieve max block size: ", result).c_str()));
|
|
uint64_t max_block_size = 0;
|
|
if (result == 0)
|
|
{
|
|
if (v.mv_size != sizeof(uint64_t))
|
|
throw0(DB_ERROR("Failed to retrieve or create max block size: unexpected value size"));
|
|
memcpy(&max_block_size, v.mv_data, sizeof(max_block_size));
|
|
}
|
|
if (sz > max_block_size)
|
|
max_block_size = sz;
|
|
v.mv_data = (void*)&max_block_size;
|
|
v.mv_size = sizeof(max_block_size);
|
|
result = mdb_cursor_put(m_cur_properties, &k, &v, 0);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to set max_block_size: ", result).c_str()));
|
|
}
|
|
|
|
|
|
std::vector<uint64_t> BlockchainLMDB::get_block_weights(uint64_t start_height, size_t count) const
|
|
{
|
|
return get_block_info_64bit_fields(start_height, count, offsetof(mdb_block_info, bi_weight));
|
|
}
|
|
|
|
std::vector<uint64_t> BlockchainLMDB::get_long_term_block_weights(uint64_t start_height, size_t count) const
|
|
{
|
|
return get_block_info_64bit_fields(start_height, count, offsetof(mdb_block_info, bi_long_term_block_weight));
|
|
}
|
|
|
|
difficulty_type BlockchainLMDB::get_block_cumulative_difficulty(const uint64_t& height) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__ << " height: " << height);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(block_info);
|
|
|
|
MDB_val_set(result, height);
|
|
auto get_result = mdb_cursor_get(m_cur_block_info, (MDB_val *)&zerokval, &result, MDB_GET_BOTH);
|
|
if (get_result == MDB_NOTFOUND)
|
|
{
|
|
throw0(BLOCK_DNE(std::string("Attempt to get cumulative difficulty from height ").append(boost::lexical_cast<std::string>(height)).append(" failed -- difficulty not in db").c_str()));
|
|
}
|
|
else if (get_result)
|
|
throw0(DB_ERROR("Error attempting to retrieve a cumulative difficulty from the db"));
|
|
|
|
mdb_block_info *bi = (mdb_block_info *)result.mv_data;
|
|
difficulty_type ret = bi->bi_diff_hi;
|
|
ret <<= 64;
|
|
ret |= bi->bi_diff_lo;
|
|
TXN_POSTFIX_RDONLY();
|
|
return ret;
|
|
}
|
|
|
|
difficulty_type BlockchainLMDB::get_block_difficulty(const uint64_t& height) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
difficulty_type diff1 = 0;
|
|
difficulty_type diff2 = 0;
|
|
|
|
diff1 = get_block_cumulative_difficulty(height);
|
|
if (height != 0)
|
|
{
|
|
diff2 = get_block_cumulative_difficulty(height - 1);
|
|
}
|
|
|
|
return diff1 - diff2;
|
|
}
|
|
|
|
void BlockchainLMDB::correct_block_cumulative_difficulties(const uint64_t& start_height, const std::vector<difficulty_type>& new_cumulative_difficulties)
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
mdb_txn_cursors *m_cursors = &m_wcursors;
|
|
|
|
int result = 0;
|
|
block_wtxn_start();
|
|
CURSOR(block_info)
|
|
|
|
const uint64_t bc_height = height();
|
|
if (start_height + new_cumulative_difficulties.size() != bc_height)
|
|
{
|
|
block_wtxn_abort();
|
|
throw0(DB_ERROR("Incorrect new_cumulative_difficulties size"));
|
|
}
|
|
|
|
for (uint64_t height = start_height; height < bc_height; ++height)
|
|
{
|
|
MDB_val_set(key, height);
|
|
result = mdb_cursor_get(m_cur_block_info, (MDB_val *)&zerokval, &key, MDB_GET_BOTH);
|
|
if (result)
|
|
throw1(BLOCK_DNE(lmdb_error("Failed to get block info: ", result).c_str()));
|
|
|
|
mdb_block_info bi = *(mdb_block_info*)key.mv_data;
|
|
const difficulty_type d = new_cumulative_difficulties[height - start_height];
|
|
bi.bi_diff_hi = ((d >> 64) & 0xffffffffffffffff).convert_to<uint64_t>();
|
|
bi.bi_diff_lo = (d & 0xffffffffffffffff).convert_to<uint64_t>();
|
|
|
|
MDB_val_set(key2, height);
|
|
MDB_val_set(val, bi);
|
|
result = mdb_cursor_put(m_cur_block_info, &key2, &val, MDB_CURRENT);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to overwrite block info to db transaction: ", result).c_str()));
|
|
}
|
|
block_wtxn_stop();
|
|
}
|
|
|
|
uint64_t BlockchainLMDB::get_block_already_generated_coins(const uint64_t& height) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(block_info);
|
|
|
|
MDB_val_set(result, height);
|
|
auto get_result = mdb_cursor_get(m_cur_block_info, (MDB_val *)&zerokval, &result, MDB_GET_BOTH);
|
|
if (get_result == MDB_NOTFOUND)
|
|
{
|
|
throw0(BLOCK_DNE(std::string("Attempt to get generated coins from height ").append(boost::lexical_cast<std::string>(height)).append(" failed -- block size not in db").c_str()));
|
|
}
|
|
else if (get_result)
|
|
throw0(DB_ERROR("Error attempting to retrieve a total generated coins from the db"));
|
|
|
|
mdb_block_info *bi = (mdb_block_info *)result.mv_data;
|
|
uint64_t ret = bi->bi_coins;
|
|
TXN_POSTFIX_RDONLY();
|
|
return ret;
|
|
}
|
|
|
|
uint64_t BlockchainLMDB::get_block_long_term_weight(const uint64_t& height) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(block_info);
|
|
|
|
MDB_val_set(result, height);
|
|
auto get_result = mdb_cursor_get(m_cur_block_info, (MDB_val *)&zerokval, &result, MDB_GET_BOTH);
|
|
if (get_result == MDB_NOTFOUND)
|
|
{
|
|
throw0(BLOCK_DNE(std::string("Attempt to get block long term weight from height ").append(boost::lexical_cast<std::string>(height)).append(" failed -- block info not in db").c_str()));
|
|
}
|
|
else if (get_result)
|
|
throw0(DB_ERROR("Error attempting to retrieve a long term block weight from the db"));
|
|
|
|
mdb_block_info *bi = (mdb_block_info *)result.mv_data;
|
|
uint64_t ret = bi->bi_long_term_block_weight;
|
|
TXN_POSTFIX_RDONLY();
|
|
return ret;
|
|
}
|
|
|
|
crypto::hash BlockchainLMDB::get_block_hash_from_height(const uint64_t& height) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(block_info);
|
|
|
|
MDB_val_set(result, height);
|
|
auto get_result = mdb_cursor_get(m_cur_block_info, (MDB_val *)&zerokval, &result, MDB_GET_BOTH);
|
|
if (get_result == MDB_NOTFOUND)
|
|
{
|
|
throw0(BLOCK_DNE(std::string("Attempt to get hash from height ").append(boost::lexical_cast<std::string>(height)).append(" failed -- hash not in db").c_str()));
|
|
}
|
|
else if (get_result)
|
|
throw0(DB_ERROR(lmdb_error("Error attempting to retrieve a block hash from the db: ", get_result).c_str()));
|
|
|
|
mdb_block_info *bi = (mdb_block_info *)result.mv_data;
|
|
crypto::hash ret = bi->bi_hash;
|
|
TXN_POSTFIX_RDONLY();
|
|
return ret;
|
|
}
|
|
|
|
std::vector<block> BlockchainLMDB::get_blocks_range(const uint64_t& h1, const uint64_t& h2) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
std::vector<block> v;
|
|
|
|
for (uint64_t height = h1; height <= h2; ++height)
|
|
{
|
|
v.push_back(get_block_from_height(height));
|
|
}
|
|
|
|
return v;
|
|
}
|
|
|
|
std::vector<crypto::hash> BlockchainLMDB::get_hashes_range(const uint64_t& h1, const uint64_t& h2) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
std::vector<crypto::hash> v;
|
|
|
|
for (uint64_t height = h1; height <= h2; ++height)
|
|
{
|
|
v.push_back(get_block_hash_from_height(height));
|
|
}
|
|
|
|
return v;
|
|
}
|
|
|
|
crypto::hash BlockchainLMDB::top_block_hash(uint64_t *block_height) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
uint64_t m_height = height();
|
|
if (block_height)
|
|
*block_height = m_height - 1;
|
|
if (m_height != 0)
|
|
{
|
|
return get_block_hash_from_height(m_height - 1);
|
|
}
|
|
|
|
return null_hash;
|
|
}
|
|
|
|
block BlockchainLMDB::get_top_block() const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
uint64_t m_height = height();
|
|
|
|
if (m_height != 0)
|
|
{
|
|
return get_block_from_height(m_height - 1);
|
|
}
|
|
|
|
block b;
|
|
return b;
|
|
}
|
|
|
|
uint64_t BlockchainLMDB::height() const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
TXN_PREFIX_RDONLY();
|
|
int result;
|
|
|
|
// get current height
|
|
MDB_stat db_stats;
|
|
if ((result = mdb_stat(m_txn, m_blocks, &db_stats)))
|
|
throw0(DB_ERROR(lmdb_error("Failed to query m_blocks: ", result).c_str()));
|
|
return db_stats.ms_entries;
|
|
}
|
|
|
|
std::map<std::string,uint64_t> BlockchainLMDB::get_circulating_supply() const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
std::map<std::string, uint64_t> circulating_supply;
|
|
uint64_t m_height = height();
|
|
if (m_height == 0) {
|
|
return circulating_supply;
|
|
}
|
|
|
|
uint64_t m_coinbase = get_block_already_generated_coins(m_height-1);
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__ << " - mined supply for SAL = " << m_coinbase);
|
|
|
|
uint64_t staked_coins = 0;
|
|
yield_block_info ybi;
|
|
int result = get_yield_block_info(m_height-1, ybi);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to get YBI when querying supply: ", result).c_str()));
|
|
staked_coins = ybi.locked_coins_tally;
|
|
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(circ_supply_tally);
|
|
|
|
MDB_val k;
|
|
MDB_val v;
|
|
MDB_cursor_op op = MDB_FIRST;
|
|
while (1)
|
|
{
|
|
int result = mdb_cursor_get(m_cur_circ_supply_tally, &k, &v, op);
|
|
op = MDB_NEXT;
|
|
if (result == MDB_NOTFOUND)
|
|
break;
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to get circulating supply: ", result).c_str()));
|
|
|
|
// Push the data into the circulating supply return struct
|
|
const uint64_t currency_type = *(const uint64_t*)k.mv_data;
|
|
circ_supply_tally *cst = (circ_supply_tally*)v.mv_data;
|
|
const std::string currency_label = cryptonote::asset_type_from_id(currency_type);
|
|
boost::multiprecision::int128_t amount = import_tally_from_cst(cst);
|
|
|
|
// Check for SAL - we need to adjust the total for them
|
|
if (currency_type == 0) {
|
|
// Get the current circulating supply for SAL
|
|
//amount += m_coinbase;
|
|
}
|
|
|
|
circulating_supply[currency_label] = amount.convert_to<uint64_t>();
|
|
}
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
|
|
// NEAC: check for empty supply tally - only happens prior to first conversion on chain
|
|
if (circulating_supply.empty()) {
|
|
circulating_supply["SAL"] = m_coinbase;
|
|
circulating_supply["SAL1"] = 0;
|
|
circulating_supply["BURN"] = 0;
|
|
}
|
|
|
|
// Adjust the supply to account for the staked coins
|
|
circulating_supply["STAKE"] = staked_coins;
|
|
|
|
return circulating_supply;
|
|
}
|
|
|
|
uint64_t BlockchainLMDB::num_outputs() const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
TXN_PREFIX_RDONLY();
|
|
int result;
|
|
|
|
RCURSOR(output_txs)
|
|
|
|
uint64_t num = 0;
|
|
MDB_val k, v;
|
|
result = mdb_cursor_get(m_cur_output_txs, &k, &v, MDB_LAST);
|
|
if (result == MDB_NOTFOUND)
|
|
num = 0;
|
|
else if (result == 0)
|
|
num = 1 + ((const outtx*)v.mv_data)->output_id;
|
|
else
|
|
throw0(DB_ERROR(lmdb_error("Failed to query m_output_txs: ", result).c_str()));
|
|
|
|
return num;
|
|
}
|
|
|
|
bool BlockchainLMDB::tx_exists(const crypto::hash& h) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(tx_indices);
|
|
|
|
MDB_val_set(key, h);
|
|
bool tx_found = false;
|
|
|
|
TIME_MEASURE_START(time1);
|
|
auto get_result = mdb_cursor_get(m_cur_tx_indices, (MDB_val *)&zerokval, &key, MDB_GET_BOTH);
|
|
if (get_result == 0)
|
|
tx_found = true;
|
|
else if (get_result != MDB_NOTFOUND)
|
|
throw0(DB_ERROR(lmdb_error(std::string("DB error attempting to fetch transaction index from hash ") + epee::string_tools::pod_to_hex(h) + ": ", get_result).c_str()));
|
|
|
|
TIME_MEASURE_FINISH(time1);
|
|
time_tx_exists += time1;
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
|
|
if (! tx_found)
|
|
{
|
|
LOG_PRINT_L3("transaction with hash " << epee::string_tools::pod_to_hex(h) << " not found in db");
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool BlockchainLMDB::tx_exists(const crypto::hash& h, uint64_t& tx_id) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(tx_indices);
|
|
|
|
MDB_val_set(v, h);
|
|
|
|
TIME_MEASURE_START(time1);
|
|
auto get_result = mdb_cursor_get(m_cur_tx_indices, (MDB_val *)&zerokval, &v, MDB_GET_BOTH);
|
|
TIME_MEASURE_FINISH(time1);
|
|
time_tx_exists += time1;
|
|
if (!get_result) {
|
|
txindex *tip = (txindex *)v.mv_data;
|
|
tx_id = tip->data.tx_id;
|
|
}
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
|
|
bool ret = false;
|
|
if (get_result == MDB_NOTFOUND)
|
|
{
|
|
LOG_PRINT_L3("transaction with hash " << epee::string_tools::pod_to_hex(h) << " not found in db");
|
|
}
|
|
else if (get_result)
|
|
throw0(DB_ERROR(lmdb_error("DB error attempting to fetch transaction from hash", get_result).c_str()));
|
|
else
|
|
ret = true;
|
|
|
|
return ret;
|
|
}
|
|
|
|
uint64_t BlockchainLMDB::get_tx_unlock_time(const crypto::hash& h) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(tx_indices);
|
|
|
|
MDB_val_set(v, h);
|
|
auto get_result = mdb_cursor_get(m_cur_tx_indices, (MDB_val *)&zerokval, &v, MDB_GET_BOTH);
|
|
if (get_result == MDB_NOTFOUND)
|
|
throw1(TX_DNE(lmdb_error(std::string("tx data with hash ") + epee::string_tools::pod_to_hex(h) + " not found in db: ", get_result).c_str()));
|
|
else if (get_result)
|
|
throw0(DB_ERROR(lmdb_error("DB error attempting to fetch tx data from hash: ", get_result).c_str()));
|
|
|
|
txindex *tip = (txindex *)v.mv_data;
|
|
uint64_t ret = tip->data.unlock_time;
|
|
TXN_POSTFIX_RDONLY();
|
|
return ret;
|
|
}
|
|
|
|
bool BlockchainLMDB::get_tx_blob(const crypto::hash& h, cryptonote::blobdata &bd) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(tx_indices);
|
|
RCURSOR(txs_pruned);
|
|
RCURSOR(txs_prunable);
|
|
|
|
MDB_val_set(v, h);
|
|
MDB_val result0, result1;
|
|
auto get_result = mdb_cursor_get(m_cur_tx_indices, (MDB_val *)&zerokval, &v, MDB_GET_BOTH);
|
|
if (get_result == 0)
|
|
{
|
|
txindex *tip = (txindex *)v.mv_data;
|
|
MDB_val_set(val_tx_id, tip->data.tx_id);
|
|
get_result = mdb_cursor_get(m_cur_txs_pruned, &val_tx_id, &result0, MDB_SET);
|
|
if (get_result == 0)
|
|
{
|
|
get_result = mdb_cursor_get(m_cur_txs_prunable, &val_tx_id, &result1, MDB_SET);
|
|
}
|
|
}
|
|
if (get_result == MDB_NOTFOUND)
|
|
return false;
|
|
else if (get_result)
|
|
throw0(DB_ERROR(lmdb_error("DB error attempting to fetch tx from hash", get_result).c_str()));
|
|
|
|
bd.assign(reinterpret_cast<char*>(result0.mv_data), result0.mv_size);
|
|
bd.append(reinterpret_cast<char*>(result1.mv_data), result1.mv_size);
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
|
|
return true;
|
|
}
|
|
|
|
bool BlockchainLMDB::get_pruned_tx_blob(const crypto::hash& h, cryptonote::blobdata &bd) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(tx_indices);
|
|
RCURSOR(txs_pruned);
|
|
|
|
MDB_val_set(v, h);
|
|
MDB_val result;
|
|
auto get_result = mdb_cursor_get(m_cur_tx_indices, (MDB_val *)&zerokval, &v, MDB_GET_BOTH);
|
|
if (get_result == 0)
|
|
{
|
|
txindex *tip = (txindex *)v.mv_data;
|
|
MDB_val_set(val_tx_id, tip->data.tx_id);
|
|
get_result = mdb_cursor_get(m_cur_txs_pruned, &val_tx_id, &result, MDB_SET);
|
|
}
|
|
if (get_result == MDB_NOTFOUND)
|
|
return false;
|
|
else if (get_result)
|
|
throw0(DB_ERROR(lmdb_error("DB error attempting to fetch tx from hash", get_result).c_str()));
|
|
|
|
bd.assign(reinterpret_cast<char*>(result.mv_data), result.mv_size);
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
|
|
return true;
|
|
}
|
|
|
|
bool BlockchainLMDB::get_pruned_tx_blobs_from(const crypto::hash& h, size_t count, std::vector<cryptonote::blobdata> &bd) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
if (!count)
|
|
return true;
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(tx_indices);
|
|
RCURSOR(txs_pruned);
|
|
|
|
bd.reserve(bd.size() + count);
|
|
|
|
MDB_val_set(v, h);
|
|
MDB_val result;
|
|
int res = mdb_cursor_get(m_cur_tx_indices, (MDB_val *)&zerokval, &v, MDB_GET_BOTH);
|
|
if (res == MDB_NOTFOUND)
|
|
return false;
|
|
if (res)
|
|
throw0(DB_ERROR(lmdb_error("DB error attempting to fetch tx from hash", res).c_str()));
|
|
|
|
const txindex *tip = (const txindex *)v.mv_data;
|
|
const uint64_t id = tip->data.tx_id;
|
|
MDB_val_set(val_tx_id, id);
|
|
MDB_cursor_op op = MDB_SET;
|
|
while (count--)
|
|
{
|
|
res = mdb_cursor_get(m_cur_txs_pruned, &val_tx_id, &result, op);
|
|
op = MDB_NEXT;
|
|
if (res == MDB_NOTFOUND)
|
|
return false;
|
|
if (res)
|
|
throw0(DB_ERROR(lmdb_error("DB error attempting to fetch tx blob", res).c_str()));
|
|
bd.emplace_back(reinterpret_cast<char*>(result.mv_data), result.mv_size);
|
|
}
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
|
|
return true;
|
|
}
|
|
|
|
bool BlockchainLMDB::get_blocks_from(uint64_t start_height, size_t min_block_count, size_t max_block_count, size_t max_tx_count, size_t max_size, std::vector<std::pair<std::pair<cryptonote::blobdata, crypto::hash>, std::vector<std::pair<crypto::hash, cryptonote::blobdata>>>>& blocks, bool pruned, bool skip_coinbase, bool get_miner_tx_hash) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(blocks);
|
|
RCURSOR(tx_indices);
|
|
RCURSOR(txs_pruned);
|
|
if (!pruned)
|
|
{
|
|
RCURSOR(txs_prunable);
|
|
}
|
|
|
|
blocks.reserve(std::min<size_t>(max_block_count, 10000)); // guard against very large max count if only checking bytes
|
|
const uint64_t blockchain_height = height();
|
|
uint64_t size = 0;
|
|
size_t num_txes = 0;
|
|
MDB_val_copy<uint64_t> key(start_height);
|
|
MDB_val v, val_tx_id;
|
|
uint64_t tx_id = ~0;
|
|
for (uint64_t h = start_height; h < blockchain_height && blocks.size() < max_block_count && (size < max_size || blocks.size() < min_block_count); ++h)
|
|
{
|
|
MDB_cursor_op op = h == start_height ? MDB_SET : MDB_NEXT;
|
|
int result = mdb_cursor_get(m_cur_blocks, &key, &v, op);
|
|
if (result == MDB_NOTFOUND)
|
|
throw0(BLOCK_DNE(std::string("Attempt to get block from height ").append(boost::lexical_cast<std::string>(h)).append(" failed -- block not in db").c_str()));
|
|
else if (result)
|
|
throw0(DB_ERROR(lmdb_error("Error attempting to retrieve a block from the db", result).c_str()));
|
|
|
|
blocks.resize(blocks.size() + 1);
|
|
auto ¤t_block = blocks.back();
|
|
|
|
current_block.first.first.assign(reinterpret_cast<char*>(v.mv_data), v.mv_size);
|
|
size += v.mv_size;
|
|
|
|
cryptonote::block b;
|
|
if (!parse_and_validate_block_from_blob(current_block.first.first, b))
|
|
throw0(DB_ERROR("Invalid block"));
|
|
current_block.first.second = get_miner_tx_hash ? cryptonote::get_transaction_hash(b.miner_tx) : crypto::null_hash;
|
|
|
|
// get the tx_id for the first tx (the first block's coinbase tx)
|
|
if (h == start_height)
|
|
{
|
|
crypto::hash hash = cryptonote::get_transaction_hash(b.miner_tx);
|
|
MDB_val_set(v, hash);
|
|
result = mdb_cursor_get(m_cur_tx_indices, (MDB_val *)&zerokval, &v, MDB_GET_BOTH);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Error attempting to retrieve block coinbase transaction from the db: ", result).c_str()));
|
|
|
|
const txindex *tip = (const txindex *)v.mv_data;
|
|
tx_id = tip->data.tx_id;
|
|
val_tx_id.mv_data = &tx_id;
|
|
val_tx_id.mv_size = sizeof(tx_id);
|
|
}
|
|
|
|
if (skip_coinbase)
|
|
{
|
|
result = mdb_cursor_get(m_cur_txs_pruned, &val_tx_id, &v, op);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Error attempting to retrieve transaction data from the db: ", result).c_str()));
|
|
if (!pruned)
|
|
{
|
|
result = mdb_cursor_get(m_cur_txs_prunable, &val_tx_id, &v, op);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Error attempting to retrieve transaction data from the db: ", result).c_str()));
|
|
}
|
|
|
|
// Skip the protocol TX as well?
|
|
op = MDB_NEXT;
|
|
result = mdb_cursor_get(m_cur_txs_pruned, &val_tx_id, &v, op);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Error attempting to retrieve transaction data from the db: ", result).c_str()));
|
|
if (!pruned)
|
|
{
|
|
result = mdb_cursor_get(m_cur_txs_prunable, &val_tx_id, &v, op);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Error attempting to retrieve transaction data from the db: ", result).c_str()));
|
|
}
|
|
}
|
|
|
|
op = MDB_NEXT;
|
|
|
|
current_block.second.reserve(b.tx_hashes.size());
|
|
num_txes += b.tx_hashes.size() + (skip_coinbase ? 0 : 2);
|
|
for (const auto &tx_hash: b.tx_hashes)
|
|
{
|
|
// get pruned data
|
|
cryptonote::blobdata tx_blob;
|
|
result = mdb_cursor_get(m_cur_txs_pruned, &val_tx_id, &v, op);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Error attempting to retrieve transaction data from the db: ", result).c_str()));
|
|
tx_blob.assign((const char*)v.mv_data, v.mv_size);
|
|
|
|
if (!pruned)
|
|
{
|
|
result = mdb_cursor_get(m_cur_txs_prunable, &val_tx_id, &v, op);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Error attempting to retrieve transaction data from the db: ", result).c_str()));
|
|
tx_blob.append(reinterpret_cast<const char*>(v.mv_data), v.mv_size);
|
|
}
|
|
current_block.second.push_back(std::make_pair(tx_hash, std::move(tx_blob)));
|
|
size += current_block.second.back().second.size();
|
|
}
|
|
|
|
if (blocks.size() >= min_block_count && num_txes >= max_tx_count)
|
|
break;
|
|
}
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
|
|
return true;
|
|
}
|
|
|
|
bool BlockchainLMDB::get_prunable_tx_blob(const crypto::hash& h, cryptonote::blobdata &bd) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(tx_indices);
|
|
RCURSOR(txs_prunable);
|
|
|
|
MDB_val_set(v, h);
|
|
MDB_val result;
|
|
auto get_result = mdb_cursor_get(m_cur_tx_indices, (MDB_val *)&zerokval, &v, MDB_GET_BOTH);
|
|
if (get_result == 0)
|
|
{
|
|
const txindex *tip = (const txindex *)v.mv_data;
|
|
MDB_val_set(val_tx_id, tip->data.tx_id);
|
|
get_result = mdb_cursor_get(m_cur_txs_prunable, &val_tx_id, &result, MDB_SET);
|
|
}
|
|
if (get_result == MDB_NOTFOUND)
|
|
return false;
|
|
else if (get_result)
|
|
throw0(DB_ERROR(lmdb_error("DB error attempting to fetch tx from hash", get_result).c_str()));
|
|
|
|
bd.assign(reinterpret_cast<char*>(result.mv_data), result.mv_size);
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
|
|
return true;
|
|
}
|
|
|
|
bool BlockchainLMDB::get_prunable_tx_hash(const crypto::hash& tx_hash, crypto::hash &prunable_hash) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(tx_indices);
|
|
RCURSOR(txs_prunable_hash);
|
|
|
|
MDB_val_set(v, tx_hash);
|
|
MDB_val result;
|
|
auto get_result = mdb_cursor_get(m_cur_tx_indices, (MDB_val *)&zerokval, &v, MDB_GET_BOTH);
|
|
if (get_result == 0)
|
|
{
|
|
txindex *tip = (txindex *)v.mv_data;
|
|
MDB_val_set(val_tx_id, tip->data.tx_id);
|
|
get_result = mdb_cursor_get(m_cur_txs_prunable_hash, &val_tx_id, &result, MDB_SET);
|
|
}
|
|
if (get_result == MDB_NOTFOUND)
|
|
return false;
|
|
else if (get_result)
|
|
throw0(DB_ERROR(lmdb_error("DB error attempting to fetch tx prunable hash from tx hash", get_result).c_str()));
|
|
|
|
prunable_hash = *(const crypto::hash*)result.mv_data;
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
|
|
return true;
|
|
}
|
|
|
|
uint64_t BlockchainLMDB::get_tx_count() const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
int result;
|
|
|
|
MDB_stat db_stats;
|
|
if ((result = mdb_stat(m_txn, m_txs_pruned, &db_stats)))
|
|
throw0(DB_ERROR(lmdb_error("Failed to query m_txs_pruned: ", result).c_str()));
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
|
|
return db_stats.ms_entries;
|
|
}
|
|
|
|
std::vector<transaction> BlockchainLMDB::get_tx_list(const std::vector<crypto::hash>& hlist) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
std::vector<transaction> v;
|
|
|
|
for (auto& h : hlist)
|
|
{
|
|
v.push_back(get_tx(h));
|
|
}
|
|
|
|
return v;
|
|
}
|
|
|
|
uint64_t BlockchainLMDB::get_tx_block_height(const crypto::hash& h) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(tx_indices);
|
|
|
|
MDB_val_set(v, h);
|
|
auto get_result = mdb_cursor_get(m_cur_tx_indices, (MDB_val *)&zerokval, &v, MDB_GET_BOTH);
|
|
if (get_result == MDB_NOTFOUND)
|
|
{
|
|
throw1(TX_DNE(std::string("tx_data_t with hash ").append(epee::string_tools::pod_to_hex(h)).append(" not found in db").c_str()));
|
|
}
|
|
else if (get_result)
|
|
throw0(DB_ERROR(lmdb_error("DB error attempting to fetch tx height from hash", get_result).c_str()));
|
|
|
|
txindex *tip = (txindex *)v.mv_data;
|
|
uint64_t ret = tip->data.block_id;
|
|
TXN_POSTFIX_RDONLY();
|
|
return ret;
|
|
}
|
|
|
|
uint64_t BlockchainLMDB::get_num_outputs(const uint64_t& amount) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(output_amounts);
|
|
|
|
MDB_val_copy<uint64_t> k(amount);
|
|
MDB_val v;
|
|
mdb_size_t num_elems = 0;
|
|
auto result = mdb_cursor_get(m_cur_output_amounts, &k, &v, MDB_SET);
|
|
if (result == MDB_SUCCESS)
|
|
{
|
|
mdb_cursor_count(m_cur_output_amounts, &num_elems);
|
|
}
|
|
else if (result != MDB_NOTFOUND)
|
|
throw0(DB_ERROR("DB error attempting to get number of outputs of an amount"));
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
|
|
return num_elems;
|
|
}
|
|
|
|
uint64_t BlockchainLMDB::get_num_outputs_of_asset_type(const std::string asset_type_str) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(output_types);
|
|
|
|
uint32_t asset_type = cryptonote::asset_id_from_type(asset_type_str);
|
|
MDB_val_copy<uint32_t> k(asset_type);
|
|
MDB_val v;
|
|
mdb_size_t num_outputs_of_asset_type = 0;
|
|
auto result = mdb_cursor_get(m_cur_output_types, &k, &v, MDB_SET);
|
|
if (!result)
|
|
{
|
|
result = mdb_cursor_count(m_cur_output_types, &num_outputs_of_asset_type);
|
|
if (result)
|
|
throw0(DB_ERROR(std::string("Failed to get number of outputs for type: ").append(mdb_strerror(result)).c_str()));
|
|
}
|
|
else if (result != MDB_NOTFOUND)
|
|
throw0(DB_ERROR(lmdb_error("DB error attempting to get number of outputs of asset type: ", result).c_str()));
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
|
|
return num_outputs_of_asset_type;
|
|
}
|
|
|
|
output_data_t BlockchainLMDB::get_output_key(const uint64_t& amount, const uint64_t& index, bool include_commitmemt) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(output_amounts);
|
|
|
|
MDB_val_set(k, amount);
|
|
MDB_val_set(v, index);
|
|
auto get_result = mdb_cursor_get(m_cur_output_amounts, &k, &v, MDB_GET_BOTH);
|
|
if (get_result == MDB_NOTFOUND)
|
|
throw1(OUTPUT_DNE(std::string("Attempting to get output pubkey by index, but key does not exist: amount " +
|
|
std::to_string(amount) + ", index " + std::to_string(index)).c_str()));
|
|
else if (get_result)
|
|
throw0(DB_ERROR("Error attempting to retrieve an output pubkey from the db"));
|
|
|
|
output_data_t ret;
|
|
if (amount == 0)
|
|
{
|
|
const outkey *okp = (const outkey *)v.mv_data;
|
|
ret = okp->data;
|
|
}
|
|
else
|
|
{
|
|
const pre_rct_outkey *okp = (const pre_rct_outkey *)v.mv_data;
|
|
memcpy(&ret, &okp->data, sizeof(pre_rct_output_data_t));
|
|
if (include_commitmemt)
|
|
ret.commitment = rct::zeroCommit(amount);
|
|
}
|
|
TXN_POSTFIX_RDONLY();
|
|
return ret;
|
|
}
|
|
|
|
void BlockchainLMDB::get_output_id_from_asset_type_output_index(const std::string asset_type_str, const std::vector<uint64_t> &asset_type_output_indices, std::vector<uint64_t> &output_indices) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
output_indices.clear();
|
|
output_indices.reserve(asset_type_output_indices.size());
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
|
|
RCURSOR(output_types);
|
|
|
|
uint32_t asset_type = cryptonote::asset_id_from_type(asset_type_str);
|
|
MDB_val_copy<uint32_t> k_type(asset_type);
|
|
|
|
for (size_t i = 0; i < asset_type_output_indices.size(); ++i)
|
|
{
|
|
MDB_val_set(v, asset_type_output_indices[i]);
|
|
|
|
auto get_result = mdb_cursor_get(m_cur_output_types, &k_type, &v, MDB_GET_BOTH);
|
|
if (get_result == MDB_NOTFOUND)
|
|
{
|
|
throw1(OUTPUT_DNE((std::string("Attempting to get output id by asset type output id (asset type " + asset_type_str + " asset type ouput id " + boost::lexical_cast<std::string>(asset_type_output_indices[i]) + "), but key does not exist (current height " + boost::lexical_cast<std::string>(height()) + ")").c_str())));
|
|
}
|
|
else if (get_result)
|
|
throw0(DB_ERROR(lmdb_error("Error attempting to retrieve an output id by asset type output id from the db", get_result).c_str()));
|
|
|
|
const outassettype *oat = (const outassettype *)v.mv_data;
|
|
output_indices.push_back(oat->output_id);
|
|
}
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
}
|
|
|
|
uint64_t BlockchainLMDB::get_output_id_from_asset_type_output_index(const std::string asset_type_str, const uint64_t &asset_type_output_index) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(output_types);
|
|
|
|
uint32_t asset_type = cryptonote::asset_id_from_type(asset_type_str);
|
|
MDB_val_copy<uint32_t> k_type(asset_type);
|
|
MDB_val_set(v, asset_type_output_index);
|
|
|
|
auto get_result = mdb_cursor_get(m_cur_output_types, &k_type, &v, MDB_GET_BOTH);
|
|
if (get_result == MDB_NOTFOUND)
|
|
{
|
|
throw1(OUTPUT_DNE((std::string("Attempting to get output id by asset type output id (asset type " + asset_type_str + " asset type output id " + boost::lexical_cast<std::string>(asset_type_output_index) + "), but key does not exist (current height " + boost::lexical_cast<std::string>(height()) + ")").c_str())));
|
|
}
|
|
else if (get_result)
|
|
throw0(DB_ERROR(lmdb_error("Error attempting to retrieve an output id by asset type output id from the db", get_result).c_str()));
|
|
|
|
const outassettype *oat = (const outassettype *)v.mv_data;
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
return oat->output_id;
|
|
}
|
|
|
|
tx_out_index BlockchainLMDB::get_output_tx_and_index_from_global(const uint64_t& output_id) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(output_txs);
|
|
|
|
MDB_val_set(v, output_id);
|
|
|
|
auto get_result = mdb_cursor_get(m_cur_output_txs, (MDB_val *)&zerokval, &v, MDB_GET_BOTH);
|
|
if (get_result == MDB_NOTFOUND)
|
|
throw1(OUTPUT_DNE("output with given index not in db"));
|
|
else if (get_result)
|
|
throw0(DB_ERROR("DB error attempting to fetch output tx hash"));
|
|
|
|
outtx *ot = (outtx *)v.mv_data;
|
|
tx_out_index ret = tx_out_index(ot->tx_hash, ot->local_index);
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
return ret;
|
|
}
|
|
|
|
tx_out_index BlockchainLMDB::get_output_tx_and_index(const uint64_t& amount, const uint64_t& index) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
std::vector < uint64_t > offsets;
|
|
std::vector<tx_out_index> indices;
|
|
offsets.push_back(index);
|
|
get_output_tx_and_index(amount, offsets, indices);
|
|
if (!indices.size())
|
|
throw1(OUTPUT_DNE("Attempting to get an output index by amount and amount index, but amount not found"));
|
|
|
|
return indices[0];
|
|
}
|
|
|
|
std::vector<std::vector<std::pair<uint64_t, uint64_t>>> BlockchainLMDB::get_tx_amount_output_indices(uint64_t tx_id, size_t n_txes) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(tx_outputs);
|
|
|
|
MDB_val_set(k_tx_id, tx_id);
|
|
MDB_val v;
|
|
std::vector<std::vector<std::pair<uint64_t, uint64_t>>> amount_output_indices_set;
|
|
amount_output_indices_set.reserve(n_txes);
|
|
|
|
MDB_cursor_op op = MDB_SET;
|
|
while (n_txes-- > 0)
|
|
{
|
|
int result = mdb_cursor_get(m_cur_tx_outputs, &k_tx_id, &v, op);
|
|
if (result == MDB_NOTFOUND)
|
|
LOG_PRINT_L0("WARNING: Unexpected: tx has no amount indices stored in "
|
|
"tx_outputs, but it should have an empty entry even if it's a tx without "
|
|
"outputs");
|
|
else if (result)
|
|
throw0(DB_ERROR(lmdb_error("DB error attempting to get data for tx_outputs[tx_index]", result).c_str()));
|
|
|
|
op = MDB_NEXT;
|
|
|
|
const std::pair<uint64_t, uint64_t>* indices = (const std::pair<uint64_t, uint64_t>*)v.mv_data;
|
|
size_t num_outputs = v.mv_size / sizeof(std::pair<uint64_t, uint64_t>);
|
|
|
|
amount_output_indices_set.resize(amount_output_indices_set.size() + 1);
|
|
std::vector<std::pair<uint64_t, uint64_t>> &amount_output_indices = amount_output_indices_set.back();
|
|
amount_output_indices.reserve(num_outputs);
|
|
for (size_t i = 0; i < num_outputs; ++i)
|
|
{
|
|
amount_output_indices.push_back(indices[i]);
|
|
}
|
|
}
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
return amount_output_indices_set;
|
|
}
|
|
|
|
bool BlockchainLMDB::has_key_image(const crypto::key_image& img) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
bool ret;
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(spent_keys);
|
|
|
|
MDB_val k = {sizeof(img), (void *)&img};
|
|
ret = (mdb_cursor_get(m_cur_spent_keys, (MDB_val *)&zerokval, &k, MDB_GET_BOTH) == 0);
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
return ret;
|
|
}
|
|
|
|
bool BlockchainLMDB::for_all_key_images(std::function<bool(const crypto::key_image&)> f) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(spent_keys);
|
|
|
|
MDB_val k, v;
|
|
bool fret = true;
|
|
|
|
k = zerokval;
|
|
MDB_cursor_op op = MDB_FIRST;
|
|
while (1)
|
|
{
|
|
int ret = mdb_cursor_get(m_cur_spent_keys, &k, &v, op);
|
|
op = MDB_NEXT;
|
|
if (ret == MDB_NOTFOUND)
|
|
break;
|
|
if (ret < 0)
|
|
throw0(DB_ERROR("Failed to enumerate key images"));
|
|
const crypto::key_image k_image = *(const crypto::key_image*)v.mv_data;
|
|
if (!f(k_image)) {
|
|
fret = false;
|
|
break;
|
|
}
|
|
}
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
|
|
return fret;
|
|
}
|
|
|
|
bool BlockchainLMDB::for_blocks_range(const uint64_t& h1, const uint64_t& h2, std::function<bool(uint64_t, const crypto::hash&, const cryptonote::block&)> f) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(blocks);
|
|
|
|
MDB_val k;
|
|
MDB_val v;
|
|
bool fret = true;
|
|
|
|
MDB_cursor_op op;
|
|
if (h1)
|
|
{
|
|
k = MDB_val{sizeof(h1), (void*)&h1};
|
|
op = MDB_SET;
|
|
} else
|
|
{
|
|
op = MDB_FIRST;
|
|
}
|
|
while (1)
|
|
{
|
|
int ret = mdb_cursor_get(m_cur_blocks, &k, &v, op);
|
|
op = MDB_NEXT;
|
|
if (ret == MDB_NOTFOUND)
|
|
break;
|
|
if (ret)
|
|
throw0(DB_ERROR("Failed to enumerate blocks"));
|
|
uint64_t height = *(const uint64_t*)k.mv_data;
|
|
blobdata_ref bd{reinterpret_cast<char*>(v.mv_data), v.mv_size};
|
|
block b;
|
|
if (!parse_and_validate_block_from_blob(bd, b))
|
|
throw0(DB_ERROR("Failed to parse block from blob retrieved from the db"));
|
|
crypto::hash hash;
|
|
if (!get_block_hash(b, hash))
|
|
throw0(DB_ERROR("Failed to get block hash from blob retrieved from the db"));
|
|
if (!f(height, hash, b)) {
|
|
fret = false;
|
|
break;
|
|
}
|
|
if (height >= h2)
|
|
break;
|
|
}
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
|
|
return fret;
|
|
}
|
|
|
|
bool BlockchainLMDB::for_all_transactions(std::function<bool(const crypto::hash&, const cryptonote::transaction&)> f, bool pruned) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(txs_pruned);
|
|
RCURSOR(txs_prunable);
|
|
RCURSOR(tx_indices);
|
|
|
|
MDB_val k;
|
|
MDB_val v;
|
|
bool fret = true;
|
|
|
|
MDB_cursor_op op = MDB_FIRST;
|
|
while (1)
|
|
{
|
|
int ret = mdb_cursor_get(m_cur_tx_indices, &k, &v, op);
|
|
op = MDB_NEXT;
|
|
if (ret == MDB_NOTFOUND)
|
|
break;
|
|
if (ret)
|
|
throw0(DB_ERROR(lmdb_error("Failed to enumerate transactions: ", ret).c_str()));
|
|
|
|
txindex *ti = (txindex *)v.mv_data;
|
|
const crypto::hash hash = ti->key;
|
|
k.mv_data = (void *)&ti->data.tx_id;
|
|
k.mv_size = sizeof(ti->data.tx_id);
|
|
|
|
ret = mdb_cursor_get(m_cur_txs_pruned, &k, &v, MDB_SET);
|
|
if (ret == MDB_NOTFOUND)
|
|
break;
|
|
if (ret)
|
|
throw0(DB_ERROR(lmdb_error("Failed to enumerate transactions: ", ret).c_str()));
|
|
transaction tx;
|
|
if (pruned)
|
|
{
|
|
blobdata_ref bd{reinterpret_cast<char*>(v.mv_data), v.mv_size};
|
|
if (!parse_and_validate_tx_base_from_blob(bd, tx))
|
|
throw0(DB_ERROR("Failed to parse tx from blob retrieved from the db"));
|
|
}
|
|
else
|
|
{
|
|
blobdata bd;
|
|
bd.assign(reinterpret_cast<char*>(v.mv_data), v.mv_size);
|
|
ret = mdb_cursor_get(m_cur_txs_prunable, &k, &v, MDB_SET);
|
|
if (ret)
|
|
throw0(DB_ERROR(lmdb_error("Failed to get prunable tx data the db: ", ret).c_str()));
|
|
bd.append(reinterpret_cast<char*>(v.mv_data), v.mv_size);
|
|
if (!parse_and_validate_tx_from_blob(bd, tx))
|
|
throw0(DB_ERROR("Failed to parse tx from blob retrieved from the db"));
|
|
}
|
|
if (!f(hash, tx)) {
|
|
fret = false;
|
|
break;
|
|
}
|
|
}
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
|
|
return fret;
|
|
}
|
|
|
|
bool BlockchainLMDB::for_all_outputs(std::function<bool(uint64_t amount, const crypto::hash &tx_hash, uint64_t height, size_t tx_idx)> f) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(output_amounts);
|
|
|
|
MDB_val k;
|
|
MDB_val v;
|
|
bool fret = true;
|
|
|
|
MDB_cursor_op op = MDB_FIRST;
|
|
while (1)
|
|
{
|
|
int ret = mdb_cursor_get(m_cur_output_amounts, &k, &v, op);
|
|
op = MDB_NEXT;
|
|
if (ret == MDB_NOTFOUND)
|
|
break;
|
|
if (ret)
|
|
throw0(DB_ERROR("Failed to enumerate outputs"));
|
|
uint64_t amount = *(const uint64_t*)k.mv_data;
|
|
outkey *ok = (outkey *)v.mv_data;
|
|
tx_out_index toi = get_output_tx_and_index_from_global(ok->output_id);
|
|
if (!f(amount, toi.first, ok->data.height, toi.second)) {
|
|
fret = false;
|
|
break;
|
|
}
|
|
}
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
|
|
return fret;
|
|
}
|
|
|
|
bool BlockchainLMDB::for_all_outputs(uint64_t amount, const std::function<bool(uint64_t height)> &f) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(output_amounts);
|
|
|
|
MDB_val_set(k, amount);
|
|
MDB_val v;
|
|
bool fret = true;
|
|
|
|
MDB_cursor_op op = MDB_SET;
|
|
while (1)
|
|
{
|
|
int ret = mdb_cursor_get(m_cur_output_amounts, &k, &v, op);
|
|
op = MDB_NEXT_DUP;
|
|
if (ret == MDB_NOTFOUND)
|
|
break;
|
|
if (ret)
|
|
throw0(DB_ERROR("Failed to enumerate outputs"));
|
|
uint64_t out_amount = *(const uint64_t*)k.mv_data;
|
|
if (amount != out_amount)
|
|
{
|
|
MERROR("Amount is not the expected amount");
|
|
fret = false;
|
|
break;
|
|
}
|
|
const outkey *ok = (const outkey *)v.mv_data;
|
|
if (!f(ok->data.height)) {
|
|
fret = false;
|
|
break;
|
|
}
|
|
}
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
|
|
return fret;
|
|
}
|
|
|
|
// batch_num_blocks: (optional) Used to check if resize needed before batch transaction starts.
|
|
bool BlockchainLMDB::batch_start(uint64_t batch_num_blocks, uint64_t batch_bytes)
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
if (! m_batch_transactions)
|
|
throw0(DB_ERROR("batch transactions not enabled"));
|
|
if (m_batch_active)
|
|
return false;
|
|
if (m_write_batch_txn != nullptr)
|
|
return false;
|
|
if (m_write_txn)
|
|
throw0(DB_ERROR("batch transaction attempted, but m_write_txn already in use"));
|
|
check_open();
|
|
|
|
m_writer = boost::this_thread::get_id();
|
|
check_and_resize_for_batch(batch_num_blocks, batch_bytes);
|
|
|
|
m_write_batch_txn = new mdb_txn_safe();
|
|
|
|
// NOTE: need to make sure it's destroyed properly when done
|
|
if (auto mdb_res = lmdb_txn_begin(m_env, NULL, 0, *m_write_batch_txn))
|
|
{
|
|
delete m_write_batch_txn;
|
|
m_write_batch_txn = nullptr;
|
|
throw0(DB_ERROR(lmdb_error("Failed to create a transaction for the db: ", mdb_res).c_str()));
|
|
}
|
|
// indicates this transaction is for batch transactions, but not whether it's
|
|
// active
|
|
m_write_batch_txn->m_batch_txn = true;
|
|
m_write_txn = m_write_batch_txn;
|
|
|
|
m_batch_active = true;
|
|
memset(&m_wcursors, 0, sizeof(m_wcursors));
|
|
if (m_tinfo.get())
|
|
{
|
|
if (m_tinfo->m_ti_rflags.m_rf_txn)
|
|
mdb_txn_reset(m_tinfo->m_ti_rtxn);
|
|
memset(&m_tinfo->m_ti_rflags, 0, sizeof(m_tinfo->m_ti_rflags));
|
|
}
|
|
|
|
LOG_PRINT_L3("batch transaction: begin");
|
|
return true;
|
|
}
|
|
|
|
void BlockchainLMDB::batch_commit()
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
if (! m_batch_transactions)
|
|
throw0(DB_ERROR("batch transactions not enabled"));
|
|
if (! m_batch_active)
|
|
throw1(DB_ERROR("batch transaction not in progress"));
|
|
if (m_write_batch_txn == nullptr)
|
|
throw1(DB_ERROR("batch transaction not in progress"));
|
|
if (m_writer != boost::this_thread::get_id())
|
|
throw1(DB_ERROR("batch transaction owned by other thread"));
|
|
|
|
check_open();
|
|
|
|
LOG_PRINT_L3("batch transaction: committing...");
|
|
TIME_MEASURE_START(time1);
|
|
m_write_txn->commit();
|
|
TIME_MEASURE_FINISH(time1);
|
|
time_commit1 += time1;
|
|
LOG_PRINT_L3("batch transaction: committed");
|
|
|
|
m_write_txn = nullptr;
|
|
delete m_write_batch_txn;
|
|
m_write_batch_txn = nullptr;
|
|
memset(&m_wcursors, 0, sizeof(m_wcursors));
|
|
}
|
|
|
|
void BlockchainLMDB::cleanup_batch()
|
|
{
|
|
// for destruction of batch transaction
|
|
m_write_txn = nullptr;
|
|
delete m_write_batch_txn;
|
|
m_write_batch_txn = nullptr;
|
|
m_batch_active = false;
|
|
memset(&m_wcursors, 0, sizeof(m_wcursors));
|
|
}
|
|
|
|
void BlockchainLMDB::batch_stop()
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
if (! m_batch_transactions)
|
|
throw0(DB_ERROR("batch transactions not enabled"));
|
|
if (! m_batch_active)
|
|
throw1(DB_ERROR("batch transaction not in progress"));
|
|
if (m_write_batch_txn == nullptr)
|
|
throw1(DB_ERROR("batch transaction not in progress"));
|
|
if (m_writer != boost::this_thread::get_id())
|
|
throw1(DB_ERROR("batch transaction owned by other thread"));
|
|
check_open();
|
|
LOG_PRINT_L3("batch transaction: committing...");
|
|
TIME_MEASURE_START(time1);
|
|
try
|
|
{
|
|
m_write_txn->commit();
|
|
TIME_MEASURE_FINISH(time1);
|
|
time_commit1 += time1;
|
|
cleanup_batch();
|
|
}
|
|
catch (const std::exception &e)
|
|
{
|
|
cleanup_batch();
|
|
throw;
|
|
}
|
|
LOG_PRINT_L3("batch transaction: end");
|
|
}
|
|
|
|
void BlockchainLMDB::batch_abort()
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
if (! m_batch_transactions)
|
|
throw0(DB_ERROR("batch transactions not enabled"));
|
|
if (! m_batch_active)
|
|
throw1(DB_ERROR("batch transaction not in progress"));
|
|
if (m_write_batch_txn == nullptr)
|
|
throw1(DB_ERROR("batch transaction not in progress"));
|
|
if (m_writer != boost::this_thread::get_id())
|
|
throw1(DB_ERROR("batch transaction owned by other thread"));
|
|
check_open();
|
|
// for destruction of batch transaction
|
|
m_write_txn = nullptr;
|
|
// explicitly call in case mdb_env_close() (BlockchainLMDB::close()) called before BlockchainLMDB destructor called.
|
|
m_write_batch_txn->abort();
|
|
delete m_write_batch_txn;
|
|
m_write_batch_txn = nullptr;
|
|
m_batch_active = false;
|
|
memset(&m_wcursors, 0, sizeof(m_wcursors));
|
|
LOG_PRINT_L3("batch transaction: aborted");
|
|
}
|
|
|
|
void BlockchainLMDB::set_batch_transactions(bool batch_transactions)
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
if ((batch_transactions) && (m_batch_transactions))
|
|
{
|
|
MINFO("batch transaction mode already enabled, but asked to enable batch mode");
|
|
}
|
|
m_batch_transactions = batch_transactions;
|
|
MINFO("batch transactions " << (m_batch_transactions ? "enabled" : "disabled"));
|
|
}
|
|
|
|
// return true if we started the txn, false if already started
|
|
bool BlockchainLMDB::block_rtxn_start(MDB_txn **mtxn, mdb_txn_cursors **mcur) const
|
|
{
|
|
bool ret = false;
|
|
mdb_threadinfo *tinfo;
|
|
if (m_write_txn && m_writer == boost::this_thread::get_id()) {
|
|
*mtxn = m_write_txn->m_txn;
|
|
*mcur = (mdb_txn_cursors *)&m_wcursors;
|
|
return ret;
|
|
}
|
|
/* Check for existing info and force reset if env doesn't match -
|
|
* only happens if env was opened/closed multiple times in same process
|
|
*/
|
|
if (!(tinfo = m_tinfo.get()) || mdb_txn_env(tinfo->m_ti_rtxn) != m_env)
|
|
{
|
|
tinfo = new mdb_threadinfo;
|
|
m_tinfo.reset(tinfo);
|
|
memset(&tinfo->m_ti_rcursors, 0, sizeof(tinfo->m_ti_rcursors));
|
|
memset(&tinfo->m_ti_rflags, 0, sizeof(tinfo->m_ti_rflags));
|
|
if (auto mdb_res = lmdb_txn_begin(m_env, NULL, MDB_RDONLY, &tinfo->m_ti_rtxn))
|
|
throw0(DB_ERROR_TXN_START(lmdb_error("Failed to create a read transaction for the db: ", mdb_res).c_str()));
|
|
ret = true;
|
|
} else if (!tinfo->m_ti_rflags.m_rf_txn)
|
|
{
|
|
if (auto mdb_res = lmdb_txn_renew(tinfo->m_ti_rtxn))
|
|
throw0(DB_ERROR_TXN_START(lmdb_error("Failed to renew a read transaction for the db: ", mdb_res).c_str()));
|
|
ret = true;
|
|
}
|
|
if (ret)
|
|
tinfo->m_ti_rflags.m_rf_txn = true;
|
|
*mtxn = tinfo->m_ti_rtxn;
|
|
*mcur = &tinfo->m_ti_rcursors;
|
|
|
|
if (ret)
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
return ret;
|
|
}
|
|
|
|
void BlockchainLMDB::block_rtxn_stop() const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
mdb_txn_reset(m_tinfo->m_ti_rtxn);
|
|
memset(&m_tinfo->m_ti_rflags, 0, sizeof(m_tinfo->m_ti_rflags));
|
|
/* cancel out the increment from rtxn_start */
|
|
mdb_txn_safe::increment_txns(-1);
|
|
}
|
|
|
|
bool BlockchainLMDB::block_rtxn_start() const
|
|
{
|
|
MDB_txn *mtxn;
|
|
mdb_txn_cursors *mcur;
|
|
/* auto_txn is only used for the create gate */
|
|
mdb_txn_safe auto_txn;
|
|
bool ret = block_rtxn_start(&mtxn, &mcur);
|
|
if (ret)
|
|
auto_txn.increment_txns(1); /* remember there is an active readtxn */
|
|
return ret;
|
|
}
|
|
|
|
void BlockchainLMDB::block_wtxn_start()
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
// Distinguish the exceptions here from exceptions that would be thrown while
|
|
// using the txn and committing it.
|
|
//
|
|
// If an exception is thrown in this setup, we don't want the caller to catch
|
|
// it and proceed as if there were an existing write txn, such as trying to
|
|
// call block_txn_abort(). It also indicates a serious issue which will
|
|
// probably be thrown up another layer.
|
|
if (! m_batch_active && m_write_txn)
|
|
throw0(DB_ERROR_TXN_START((std::string("Attempted to start new write txn when write txn already exists in ")+__FUNCTION__).c_str()));
|
|
if (! m_batch_active)
|
|
{
|
|
m_writer = boost::this_thread::get_id();
|
|
m_write_txn = new mdb_txn_safe();
|
|
if (auto mdb_res = lmdb_txn_begin(m_env, NULL, 0, *m_write_txn))
|
|
{
|
|
delete m_write_txn;
|
|
m_write_txn = nullptr;
|
|
throw0(DB_ERROR_TXN_START(lmdb_error("Failed to create a transaction for the db: ", mdb_res).c_str()));
|
|
}
|
|
memset(&m_wcursors, 0, sizeof(m_wcursors));
|
|
if (m_tinfo.get())
|
|
{
|
|
if (m_tinfo->m_ti_rflags.m_rf_txn)
|
|
mdb_txn_reset(m_tinfo->m_ti_rtxn);
|
|
memset(&m_tinfo->m_ti_rflags, 0, sizeof(m_tinfo->m_ti_rflags));
|
|
}
|
|
} else if (m_writer != boost::this_thread::get_id())
|
|
throw0(DB_ERROR_TXN_START((std::string("Attempted to start new write txn when batch txn already exists in ")+__FUNCTION__).c_str()));
|
|
}
|
|
|
|
void BlockchainLMDB::block_wtxn_stop()
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
if (!m_write_txn)
|
|
throw0(DB_ERROR_TXN_START((std::string("Attempted to stop write txn when no such txn exists in ")+__FUNCTION__).c_str()));
|
|
if (m_writer != boost::this_thread::get_id())
|
|
throw0(DB_ERROR_TXN_START((std::string("Attempted to stop write txn from the wrong thread in ")+__FUNCTION__).c_str()));
|
|
{
|
|
if (! m_batch_active)
|
|
{
|
|
TIME_MEASURE_START(time1);
|
|
m_write_txn->commit();
|
|
TIME_MEASURE_FINISH(time1);
|
|
time_commit1 += time1;
|
|
|
|
delete m_write_txn;
|
|
m_write_txn = nullptr;
|
|
memset(&m_wcursors, 0, sizeof(m_wcursors));
|
|
}
|
|
}
|
|
}
|
|
|
|
void BlockchainLMDB::block_wtxn_abort()
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
if (!m_write_txn)
|
|
throw0(DB_ERROR_TXN_START((std::string("Attempted to abort write txn when no such txn exists in ")+__FUNCTION__).c_str()));
|
|
if (m_writer != boost::this_thread::get_id())
|
|
throw0(DB_ERROR_TXN_START((std::string("Attempted to abort write txn from the wrong thread in ")+__FUNCTION__).c_str()));
|
|
|
|
if (! m_batch_active)
|
|
{
|
|
delete m_write_txn;
|
|
m_write_txn = nullptr;
|
|
memset(&m_wcursors, 0, sizeof(m_wcursors));
|
|
}
|
|
}
|
|
|
|
void BlockchainLMDB::block_rtxn_abort() const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
mdb_txn_reset(m_tinfo->m_ti_rtxn);
|
|
memset(&m_tinfo->m_ti_rflags, 0, sizeof(m_tinfo->m_ti_rflags));
|
|
}
|
|
|
|
uint64_t BlockchainLMDB::add_block(const std::pair<block, blobdata>& blk, size_t block_weight, uint64_t long_term_block_weight, const difficulty_type& cumulative_difficulty, const uint64_t& coins_generated,
|
|
const std::vector<std::pair<transaction, blobdata>>& txs, const cryptonote::network_type nettype, cryptonote::yield_block_info& ybi, cryptonote::audit_block_info& abi)
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
uint64_t m_height = height();
|
|
|
|
if (m_height % 1024 == 0)
|
|
{
|
|
// for batch mode, DB resize check is done at start of batch transaction
|
|
if (! m_batch_active && need_resize())
|
|
{
|
|
LOG_PRINT_L0("LMDB memory map needs to be resized, doing that now.");
|
|
do_resize();
|
|
}
|
|
}
|
|
|
|
try
|
|
{
|
|
BlockchainDB::add_block(blk, block_weight, long_term_block_weight, cumulative_difficulty, coins_generated, txs, nettype, ybi, abi);
|
|
}
|
|
catch (const DB_ERROR_TXN_START& e)
|
|
{
|
|
throw;
|
|
}
|
|
|
|
return ++m_height;
|
|
}
|
|
|
|
void BlockchainLMDB::pop_block(block& blk, std::vector<transaction>& txs)
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
block_wtxn_start();
|
|
|
|
try
|
|
{
|
|
BlockchainDB::pop_block(blk, txs);
|
|
block_wtxn_stop();
|
|
}
|
|
catch (...)
|
|
{
|
|
block_wtxn_abort();
|
|
throw;
|
|
}
|
|
}
|
|
|
|
void BlockchainLMDB::get_output_tx_and_index_from_global(const std::vector<uint64_t> &global_indices,
|
|
std::vector<tx_out_index> &tx_out_indices) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
tx_out_indices.clear();
|
|
tx_out_indices.reserve(global_indices.size());
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(output_txs);
|
|
|
|
for (const uint64_t &output_id : global_indices)
|
|
{
|
|
MDB_val_set(v, output_id);
|
|
|
|
auto get_result = mdb_cursor_get(m_cur_output_txs, (MDB_val *)&zerokval, &v, MDB_GET_BOTH);
|
|
if (get_result == MDB_NOTFOUND)
|
|
throw1(OUTPUT_DNE("output with given index not in db"));
|
|
else if (get_result)
|
|
throw0(DB_ERROR("DB error attempting to fetch output tx hash"));
|
|
|
|
const outtx *ot = (const outtx *)v.mv_data;
|
|
tx_out_indices.push_back(tx_out_index(ot->tx_hash, ot->local_index));
|
|
}
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
}
|
|
|
|
void BlockchainLMDB::get_output_key(const epee::span<const uint64_t> &amounts, const std::vector<uint64_t> &offsets, std::vector<output_data_t> &outputs, bool allow_partial) const
|
|
{
|
|
if (amounts.size() != 1 && amounts.size() != offsets.size())
|
|
throw0(DB_ERROR("Invalid sizes of amounts and offsets"));
|
|
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
TIME_MEASURE_START(db3);
|
|
check_open();
|
|
outputs.clear();
|
|
outputs.reserve(offsets.size());
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
|
|
RCURSOR(output_amounts);
|
|
|
|
for (size_t i = 0; i < offsets.size(); ++i)
|
|
{
|
|
const uint64_t amount = amounts.size() == 1 ? amounts[0] : amounts[i];
|
|
MDB_val_set(k, amount);
|
|
MDB_val_set(v, offsets[i]);
|
|
|
|
auto get_result = mdb_cursor_get(m_cur_output_amounts, &k, &v, MDB_GET_BOTH);
|
|
if (get_result == MDB_NOTFOUND)
|
|
{
|
|
if (allow_partial)
|
|
{
|
|
MDEBUG("Partial result: " << outputs.size() << "/" << offsets.size());
|
|
break;
|
|
}
|
|
throw1(OUTPUT_DNE((std::string("Attempting to get output pubkey by global index (amount ") + boost::lexical_cast<std::string>(amount) + ", index " + boost::lexical_cast<std::string>(offsets[i]) + ", count " + boost::lexical_cast<std::string>(get_num_outputs(amount)) + "), but key does not exist (current height " + boost::lexical_cast<std::string>(height()) + ")").c_str()));
|
|
}
|
|
else if (get_result)
|
|
throw0(DB_ERROR(lmdb_error("Error attempting to retrieve an output pubkey from the db", get_result).c_str()));
|
|
|
|
if (amount == 0)
|
|
{
|
|
const outkey *okp = (const outkey *)v.mv_data;
|
|
outputs.push_back(okp->data);
|
|
}
|
|
else
|
|
{
|
|
const pre_rct_outkey *okp = (const pre_rct_outkey *)v.mv_data;
|
|
outputs.resize(outputs.size() + 1);
|
|
output_data_t &data = outputs.back();
|
|
memcpy(&data, &okp->data, sizeof(pre_rct_output_data_t));
|
|
data.commitment = rct::zeroCommit(amount);
|
|
}
|
|
}
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
|
|
TIME_MEASURE_FINISH(db3);
|
|
LOG_PRINT_L3("db3: " << db3);
|
|
}
|
|
|
|
void BlockchainLMDB::get_output_tx_and_index(const uint64_t& amount, const std::vector<uint64_t> &offsets, std::vector<tx_out_index> &indices) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
indices.clear();
|
|
|
|
std::vector <uint64_t> tx_indices;
|
|
tx_indices.reserve(offsets.size());
|
|
TXN_PREFIX_RDONLY();
|
|
|
|
RCURSOR(output_amounts);
|
|
|
|
MDB_val_set(k, amount);
|
|
for (const uint64_t &index : offsets)
|
|
{
|
|
MDB_val_set(v, index);
|
|
|
|
auto get_result = mdb_cursor_get(m_cur_output_amounts, &k, &v, MDB_GET_BOTH);
|
|
if (get_result == MDB_NOTFOUND)
|
|
throw1(OUTPUT_DNE("Attempting to get output by index, but key does not exist"));
|
|
else if (get_result)
|
|
throw0(DB_ERROR(lmdb_error("Error attempting to retrieve an output from the db", get_result).c_str()));
|
|
|
|
const outkey *okp = (const outkey *)v.mv_data;
|
|
tx_indices.push_back(okp->output_id);
|
|
}
|
|
|
|
TIME_MEASURE_START(db3);
|
|
if(tx_indices.size() > 0)
|
|
{
|
|
get_output_tx_and_index_from_global(tx_indices, indices);
|
|
}
|
|
TIME_MEASURE_FINISH(db3);
|
|
LOG_PRINT_L3("db3: " << db3);
|
|
}
|
|
|
|
std::map<uint64_t, std::tuple<uint64_t, uint64_t, uint64_t>> BlockchainLMDB::get_output_histogram(const std::vector<uint64_t> &amounts, bool unlocked, uint64_t recent_cutoff, uint64_t min_count) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(output_amounts);
|
|
|
|
std::map<uint64_t, std::tuple<uint64_t, uint64_t, uint64_t>> histogram;
|
|
MDB_val k;
|
|
MDB_val v;
|
|
|
|
if (amounts.empty())
|
|
{
|
|
MDB_cursor_op op = MDB_FIRST;
|
|
while (1)
|
|
{
|
|
int ret = mdb_cursor_get(m_cur_output_amounts, &k, &v, op);
|
|
op = MDB_NEXT_NODUP;
|
|
if (ret == MDB_NOTFOUND)
|
|
break;
|
|
if (ret)
|
|
throw0(DB_ERROR(lmdb_error("Failed to enumerate outputs: ", ret).c_str()));
|
|
mdb_size_t num_elems = 0;
|
|
mdb_cursor_count(m_cur_output_amounts, &num_elems);
|
|
uint64_t amount = *(const uint64_t*)k.mv_data;
|
|
if (num_elems >= min_count)
|
|
histogram[amount] = std::make_tuple(num_elems, 0, 0);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
for (const auto &amount: amounts)
|
|
{
|
|
MDB_val_copy<uint64_t> k(amount);
|
|
int ret = mdb_cursor_get(m_cur_output_amounts, &k, &v, MDB_SET);
|
|
if (ret == MDB_NOTFOUND)
|
|
{
|
|
if (0 >= min_count)
|
|
histogram[amount] = std::make_tuple(0, 0, 0);
|
|
}
|
|
else if (ret == MDB_SUCCESS)
|
|
{
|
|
mdb_size_t num_elems = 0;
|
|
mdb_cursor_count(m_cur_output_amounts, &num_elems);
|
|
if (num_elems >= min_count)
|
|
histogram[amount] = std::make_tuple(num_elems, 0, 0);
|
|
}
|
|
else
|
|
{
|
|
throw0(DB_ERROR(lmdb_error("Failed to enumerate outputs: ", ret).c_str()));
|
|
}
|
|
}
|
|
}
|
|
|
|
if (unlocked || recent_cutoff > 0) {
|
|
const uint64_t blockchain_height = height();
|
|
for (std::map<uint64_t, std::tuple<uint64_t, uint64_t, uint64_t>>::iterator i = histogram.begin(); i != histogram.end(); ++i) {
|
|
uint64_t amount = i->first;
|
|
uint64_t num_elems = std::get<0>(i->second);
|
|
while (num_elems > 0) {
|
|
const tx_out_index toi = get_output_tx_and_index(amount, num_elems - 1);
|
|
const uint64_t height = get_tx_block_height(toi.first);
|
|
if (height + CRYPTONOTE_DEFAULT_TX_SPENDABLE_AGE <= blockchain_height)
|
|
break;
|
|
--num_elems;
|
|
}
|
|
// modifying second does not invalidate the iterator
|
|
std::get<1>(i->second) = num_elems;
|
|
|
|
if (recent_cutoff > 0)
|
|
{
|
|
uint64_t recent = 0;
|
|
while (num_elems > 0) {
|
|
const tx_out_index toi = get_output_tx_and_index(amount, num_elems - 1);
|
|
const uint64_t height = get_tx_block_height(toi.first);
|
|
const uint64_t ts = get_block_timestamp(height);
|
|
if (ts < recent_cutoff)
|
|
break;
|
|
--num_elems;
|
|
++recent;
|
|
}
|
|
// modifying second does not invalidate the iterator
|
|
std::get<2>(i->second) = recent;
|
|
}
|
|
}
|
|
}
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
|
|
return histogram;
|
|
}
|
|
|
|
bool BlockchainLMDB::get_output_distribution(uint64_t amount, uint64_t from_height, uint64_t to_height, std::vector<uint64_t> &distribution, uint64_t &base) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(output_amounts);
|
|
|
|
distribution.clear();
|
|
const uint64_t db_height = height();
|
|
if (from_height >= db_height)
|
|
return false;
|
|
distribution.resize(db_height - from_height, 0);
|
|
|
|
MDB_val_set(k, amount);
|
|
MDB_val v;
|
|
MDB_cursor_op op = MDB_SET;
|
|
base = 0;
|
|
while (1)
|
|
{
|
|
int ret = mdb_cursor_get(m_cur_output_amounts, &k, &v, op);
|
|
op = MDB_NEXT_DUP;
|
|
if (ret == MDB_NOTFOUND)
|
|
break;
|
|
if (ret)
|
|
throw0(DB_ERROR("Failed to enumerate outputs"));
|
|
const outkey *ok = (const outkey *)v.mv_data;
|
|
const uint64_t height = ok->data.height;
|
|
if (height >= from_height)
|
|
distribution[height - from_height]++;
|
|
else
|
|
base++;
|
|
if (to_height > 0 && height > to_height)
|
|
break;
|
|
}
|
|
|
|
distribution[0] += base;
|
|
for (size_t n = 1; n < distribution.size(); ++n)
|
|
distribution[n] += distribution[n - 1];
|
|
base = 0;
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
|
|
return true;
|
|
}
|
|
|
|
void BlockchainLMDB::check_hard_fork_info()
|
|
{
|
|
}
|
|
|
|
void BlockchainLMDB::drop_hard_fork_info()
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX(0);
|
|
|
|
auto result = mdb_drop(*txn_ptr, m_hf_starting_heights, 1);
|
|
if (result)
|
|
throw1(DB_ERROR(lmdb_error("Error dropping hard fork starting heights db: ", result).c_str()));
|
|
result = mdb_drop(*txn_ptr, m_hf_versions, 1);
|
|
if (result)
|
|
throw1(DB_ERROR(lmdb_error("Error dropping hard fork versions db: ", result).c_str()));
|
|
|
|
TXN_POSTFIX_SUCCESS();
|
|
}
|
|
|
|
void BlockchainLMDB::set_hard_fork_version(uint64_t height, uint8_t version)
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_BLOCK_PREFIX(0);
|
|
|
|
MDB_val_copy<uint64_t> val_key(height);
|
|
MDB_val_copy<uint8_t> val_value(version);
|
|
int result;
|
|
result = mdb_put(*txn_ptr, m_hf_versions, &val_key, &val_value, MDB_APPEND);
|
|
if (result == MDB_KEYEXIST)
|
|
result = mdb_put(*txn_ptr, m_hf_versions, &val_key, &val_value, 0);
|
|
if (result)
|
|
throw1(DB_ERROR(lmdb_error("Error adding hard fork version to db transaction: ", result).c_str()));
|
|
|
|
TXN_BLOCK_POSTFIX_SUCCESS();
|
|
}
|
|
|
|
uint8_t BlockchainLMDB::get_hard_fork_version(uint64_t height) const
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(hf_versions);
|
|
|
|
MDB_val_copy<uint64_t> val_key(height);
|
|
MDB_val val_ret;
|
|
auto result = mdb_cursor_get(m_cur_hf_versions, &val_key, &val_ret, MDB_SET);
|
|
if (result == MDB_NOTFOUND || result)
|
|
throw0(DB_ERROR(lmdb_error("Error attempting to retrieve a hard fork version at height " + boost::lexical_cast<std::string>(height) + " from the db: ", result).c_str()));
|
|
|
|
uint8_t ret = *(const uint8_t*)val_ret.mv_data;
|
|
TXN_POSTFIX_RDONLY();
|
|
return ret;
|
|
}
|
|
|
|
void BlockchainLMDB::add_alt_block(const crypto::hash &blkid, const cryptonote::alt_block_data_t &data, const cryptonote::blobdata_ref &blob)
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
mdb_txn_cursors *m_cursors = &m_wcursors;
|
|
|
|
CURSOR(alt_blocks)
|
|
|
|
MDB_val k = {sizeof(blkid), (void *)&blkid};
|
|
const size_t val_size = sizeof(alt_block_data_t) + blob.size();
|
|
std::unique_ptr<char[]> val(new char[val_size]);
|
|
memcpy(val.get(), &data, sizeof(alt_block_data_t));
|
|
memcpy(val.get() + sizeof(alt_block_data_t), blob.data(), blob.size());
|
|
MDB_val v = {val_size, (void *)val.get()};
|
|
if (auto result = mdb_cursor_put(m_cur_alt_blocks, &k, &v, MDB_NODUPDATA)) {
|
|
if (result == MDB_KEYEXIST)
|
|
throw1(DB_ERROR("Attempting to add alternate block that's already in the db"));
|
|
else
|
|
throw1(DB_ERROR(lmdb_error("Error adding alternate block to db transaction: ", result).c_str()));
|
|
}
|
|
}
|
|
|
|
bool BlockchainLMDB::get_alt_block(const crypto::hash &blkid, alt_block_data_t *data, cryptonote::blobdata *blob)
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB:: " << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(alt_blocks);
|
|
|
|
MDB_val_set(k, blkid);
|
|
MDB_val v;
|
|
int result = mdb_cursor_get(m_cur_alt_blocks, &k, &v, MDB_SET);
|
|
if (result == MDB_NOTFOUND)
|
|
return false;
|
|
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Error attempting to retrieve alternate block " + epee::string_tools::pod_to_hex(blkid) + " from the db: ", result).c_str()));
|
|
if (v.mv_size < sizeof(alt_block_data_t))
|
|
throw0(DB_ERROR("Record size is less than expected"));
|
|
|
|
const alt_block_data_t *ptr = (const alt_block_data_t*)v.mv_data;
|
|
if (data)
|
|
*data = *ptr;
|
|
if (blob)
|
|
blob->assign((const char*)(ptr + 1), v.mv_size - sizeof(alt_block_data_t));
|
|
|
|
TXN_POSTFIX_RDONLY();
|
|
return true;
|
|
}
|
|
|
|
void BlockchainLMDB::remove_alt_block(const crypto::hash &blkid)
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
mdb_txn_cursors *m_cursors = &m_wcursors;
|
|
|
|
CURSOR(alt_blocks)
|
|
|
|
MDB_val k = {sizeof(blkid), (void *)&blkid};
|
|
MDB_val v;
|
|
int result = mdb_cursor_get(m_cur_alt_blocks, &k, &v, MDB_SET);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Error locating alternate block " + epee::string_tools::pod_to_hex(blkid) + " in the db: ", result).c_str()));
|
|
result = mdb_cursor_del(m_cur_alt_blocks, 0);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Error deleting alternate block " + epee::string_tools::pod_to_hex(blkid) + " from the db: ", result).c_str()));
|
|
}
|
|
|
|
uint64_t BlockchainLMDB::get_alt_block_count()
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB:: " << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX_RDONLY();
|
|
RCURSOR(alt_blocks);
|
|
|
|
MDB_stat db_stats;
|
|
int result = mdb_stat(m_txn, m_alt_blocks, &db_stats);
|
|
uint64_t count = 0;
|
|
if (result != MDB_NOTFOUND)
|
|
{
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to query m_alt_blocks: ", result).c_str()));
|
|
count = db_stats.ms_entries;
|
|
}
|
|
TXN_POSTFIX_RDONLY();
|
|
return count;
|
|
}
|
|
|
|
void BlockchainLMDB::drop_alt_blocks()
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
check_open();
|
|
|
|
TXN_PREFIX(0);
|
|
|
|
auto result = mdb_drop(*txn_ptr, m_alt_blocks, 0);
|
|
if (result)
|
|
throw1(DB_ERROR(lmdb_error("Error dropping alternative blocks: ", result).c_str()));
|
|
|
|
TXN_POSTFIX_SUCCESS();
|
|
}
|
|
|
|
bool BlockchainLMDB::is_read_only() const
|
|
{
|
|
unsigned int flags;
|
|
auto result = mdb_env_get_flags(m_env, &flags);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Error getting database environment info: ", result).c_str()));
|
|
|
|
if (flags & MDB_RDONLY)
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
uint64_t BlockchainLMDB::get_database_size() const
|
|
{
|
|
uint64_t size = 0;
|
|
boost::filesystem::path datafile(m_folder);
|
|
datafile /= CRYPTONOTE_BLOCKCHAINDATA_FILENAME;
|
|
if (!epee::file_io_utils::get_file_size(datafile.string(), size))
|
|
size = 0;
|
|
return size;
|
|
}
|
|
|
|
#define RENAME_DB(name) do { \
|
|
char n2[] = name; \
|
|
MDB_dbi tdbi; \
|
|
n2[sizeof(n2)-2]--; \
|
|
/* play some games to put (name) on a writable page */ \
|
|
result = mdb_dbi_open(txn, n2, MDB_CREATE, &tdbi); \
|
|
if (result) \
|
|
throw0(DB_ERROR(lmdb_error("Failed to create " + std::string(n2) + ": ", result).c_str())); \
|
|
result = mdb_drop(txn, tdbi, 1); \
|
|
if (result) \
|
|
throw0(DB_ERROR(lmdb_error("Failed to delete " + std::string(n2) + ": ", result).c_str())); \
|
|
k.mv_data = (void *)name; \
|
|
k.mv_size = sizeof(name)-1; \
|
|
result = mdb_cursor_open(txn, 1, &c_cur); \
|
|
if (result) \
|
|
throw0(DB_ERROR(lmdb_error("Failed to open a cursor for " name ": ", result).c_str())); \
|
|
result = mdb_cursor_get(c_cur, &k, NULL, MDB_SET_KEY); \
|
|
if (result) \
|
|
throw0(DB_ERROR(lmdb_error("Failed to get DB record for " name ": ", result).c_str())); \
|
|
ptr = (char *)k.mv_data; \
|
|
ptr[sizeof(name)-2]++; } while(0)
|
|
|
|
#define LOGIF(y) if (ELPP->vRegistry()->allowed(y, "global"))
|
|
|
|
void BlockchainLMDB::migrate_2_3()
|
|
{
|
|
LOG_PRINT_L3("BlockchainLMDB::" << __func__);
|
|
uint64_t i;
|
|
int result;
|
|
mdb_txn_safe txn(false);
|
|
MDB_val k, v;
|
|
char *ptr;
|
|
|
|
MGINFO_YELLOW("Migrating blockchain from DB version 2 to 3 - this may take a while:");
|
|
|
|
// Create the missing (and empty) "audit_block_info" records for all blocks
|
|
do {
|
|
} while(0);
|
|
|
|
uint32_t version = VERSION;
|
|
v.mv_data = (void *)&version;
|
|
v.mv_size = sizeof(version);
|
|
MDB_val_str(vk, "version");
|
|
result = mdb_txn_begin(m_env, NULL, 0, txn);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to create a transaction for the db: ", result).c_str()));
|
|
result = mdb_put(txn, m_properties, &vk, &v, 0);
|
|
if (result)
|
|
throw0(DB_ERROR(lmdb_error("Failed to update version for the db: ", result).c_str()));
|
|
txn.commit();
|
|
}
|
|
|
|
void BlockchainLMDB::migrate(const uint32_t oldversion)
|
|
{
|
|
//if (oldversion < 3)
|
|
// migrate_2_3();
|
|
}
|
|
|
|
} // namespace cryptonote
|