Electroneum
db_lmdb.h
Go to the documentation of this file.
1 // Copyrights(c) 2017-2020, The Electroneum Project
2 // Copyrights(c) 2014-2019, The Monero Project
3 // All rights reserved.
4 //
5 // Redistribution and use in source and binary forms, with or without modification, are
6 // permitted provided that the following conditions are met:
7 //
8 // 1. Redistributions of source code must retain the above copyright notice, this list of
9 // conditions and the following disclaimer.
10 //
11 // 2. Redistributions in binary form must reproduce the above copyright notice, this list
12 // of conditions and the following disclaimer in the documentation and/or other
13 // materials provided with the distribution.
14 //
15 // 3. Neither the name of the copyright holder nor the names of its contributors may be
16 // used to endorse or promote products derived from this software without specific
17 // prior written permission.
18 //
19 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
20 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21 // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
22 // THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26 // STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
27 // THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 #pragma once
29 
30 #include <atomic>
31 
33 #include "cryptonote_basic/blobdatatype.h" // for type blobdata
34 #include "ringct/rctTypes.h"
35 #include <boost/thread/tss.hpp>
36 
37 #include <lmdb.h>
38 
39 #define ENABLE_AUTO_RESIZE
40 
41 namespace cryptonote
42 {
43 
44 typedef struct txindex {
48 
49 typedef struct mdb_txn_cursors
50 {
51  MDB_cursor *m_txc_blocks;
52  MDB_cursor *m_txc_block_heights;
53  MDB_cursor *m_txc_block_info;
54 
55  MDB_cursor *m_txc_output_txs;
56  MDB_cursor *m_txc_output_amounts;
57 
58  MDB_cursor *m_txc_txs;
59  MDB_cursor *m_txc_txs_pruned;
60  MDB_cursor *m_txc_txs_prunable;
63  MDB_cursor *m_txc_tx_indices;
64  MDB_cursor *m_txc_tx_outputs;
65 
66  MDB_cursor *m_txc_spent_keys;
67 
68  MDB_cursor *m_txc_txpool_meta;
69  MDB_cursor *m_txc_txpool_blob;
70 
71  MDB_cursor *m_txc_hf_versions;
72 
73  MDB_cursor *m_txc_properties;
74  MDB_cursor *m_txc_validators;
76 
77 #define m_cur_blocks m_cursors->m_txc_blocks
78 #define m_cur_block_heights m_cursors->m_txc_block_heights
79 #define m_cur_block_info m_cursors->m_txc_block_info
80 #define m_cur_output_txs m_cursors->m_txc_output_txs
81 #define m_cur_output_amounts m_cursors->m_txc_output_amounts
82 #define m_cur_txs m_cursors->m_txc_txs
83 #define m_cur_txs_pruned m_cursors->m_txc_txs_pruned
84 #define m_cur_txs_prunable m_cursors->m_txc_txs_prunable
85 #define m_cur_txs_prunable_hash m_cursors->m_txc_txs_prunable_hash
86 #define m_cur_txs_prunable_tip m_cursors->m_txc_txs_prunable_tip
87 #define m_cur_tx_indices m_cursors->m_txc_tx_indices
88 #define m_cur_tx_outputs m_cursors->m_txc_tx_outputs
89 #define m_cur_spent_keys m_cursors->m_txc_spent_keys
90 #define m_cur_txpool_meta m_cursors->m_txc_txpool_meta
91 #define m_cur_txpool_blob m_cursors->m_txc_txpool_blob
92 #define m_cur_hf_versions m_cursors->m_txc_hf_versions
93 #define m_cur_properties m_cursors->m_txc_properties
94 #define m_cur_validators m_cursors->m_txc_validators
95 
96 typedef struct mdb_rflags
97 {
98  bool m_rf_txn;
104  bool m_rf_txs;
118 
119 typedef struct mdb_threadinfo
120 {
121  MDB_txn *m_ti_rtxn; // per-thread read txn
122  mdb_txn_cursors m_ti_rcursors; // per-thread read cursors
123  mdb_rflags m_ti_rflags; // per-thread read state
124 
125  ~mdb_threadinfo();
127 
129 {
130  mdb_txn_safe(const bool check=true);
131  ~mdb_txn_safe();
132 
133  void commit(std::string message = "");
134 
135  // This should only be needed for batch transaction which must be ensured to
136  // be aborted before mdb_env_close, not after. So we can't rely on
137  // BlockchainLMDB destructor to call mdb_txn_safe destructor, as that's too late
138  // to properly abort, since mdb_env_close would have been called earlier.
139  void abort();
140  void uncheck();
141 
142  operator MDB_txn*()
143  {
144  return m_txn;
145  }
146 
147  operator MDB_txn**()
148  {
149  return &m_txn;
150  }
151 
152  uint64_t num_active_tx() const;
153 
154  static void prevent_new_txns();
155  static void wait_no_active_txns();
156  static void allow_new_txns();
157 
159  MDB_txn* m_txn;
160  bool m_batch_txn = false;
161  bool m_check;
162  static std::atomic<uint64_t> num_active_txns;
163 
164  // could use a mutex here, but this should be sufficient.
165  static std::atomic_flag creation_gate;
166 };
167 
168 
169 // If m_batch_active is set, a batch transaction exists beyond this class, such
170 // as a batch import with verification enabled, or possibly (later) a batch
171 // network sync.
172 //
173 // For some of the lookup methods, such as get_block_timestamp(), tx_exists(),
174 // and get_tx(), when m_batch_active is set, the lookup uses the batch
175 // transaction. This isn't only because the transaction is available, but it's
176 // necessary so that lookups include the database updates only present in the
177 // current batch write.
178 //
179 // A regular network sync without batch writes is expected to open a new read
180 // transaction, as those lookups are part of the validation done prior to the
181 // write for block and tx data, so no write transaction is open at the time.
183 {
184 public:
185  BlockchainLMDB(bool batch_transactions=true);
186  ~BlockchainLMDB();
187 
188  virtual void open(const std::string& filename, const int mdb_flags=0);
189 
190  virtual void close();
191 
192  virtual void sync();
193 
194  virtual void safesyncmode(const bool onoff);
195 
196  virtual void reset();
197 
198  virtual std::vector<std::string> get_filenames() const;
199 
200  virtual bool remove_data_file(const std::string& folder) const;
201 
202  virtual std::string get_db_name() const;
203 
204  virtual bool lock();
205 
206  virtual void unlock();
207 
208  virtual bool block_exists(const crypto::hash& h, uint64_t *height = NULL) const;
209 
210  virtual uint64_t get_block_height(const crypto::hash& h) const;
211 
212  virtual block_header get_block_header(const crypto::hash& h) const;
213 
214  virtual cryptonote::blobdata get_block_blob(const crypto::hash& h) const;
215 
216  virtual cryptonote::blobdata get_block_blob_from_height(const uint64_t& height) const;
217 
218  virtual std::vector<uint64_t> get_block_cumulative_rct_outputs(const std::vector<uint64_t> &heights) const;
219 
220  virtual uint64_t get_block_timestamp(const uint64_t& height) const;
221 
222  virtual uint64_t get_top_block_timestamp() const;
223 
224  virtual size_t get_block_weight(const uint64_t& height) const;
225 
226  virtual std::vector<uint64_t> get_block_weights(uint64_t start_height, size_t count) const;
227 
228  virtual void set_block_cumulative_difficulty(uint64_t height, difficulty_type diff);
229 
230  virtual difficulty_type get_block_cumulative_difficulty(const uint64_t& height) const;
231 
232  virtual difficulty_type get_block_difficulty(const uint64_t& height) const;
233 
234  virtual uint64_t get_block_already_generated_coins(const uint64_t& height) const;
235 
236  virtual uint64_t get_block_long_term_weight(const uint64_t& height) const;
237 
238  virtual std::vector<uint64_t> get_long_term_block_weights(uint64_t start_height, size_t count) const;
239 
240  virtual crypto::hash get_block_hash_from_height(const uint64_t& height) const;
241 
242  virtual std::vector<block> get_blocks_range(const uint64_t& h1, const uint64_t& h2) const;
243 
244  virtual std::vector<crypto::hash> get_hashes_range(const uint64_t& h1, const uint64_t& h2) const;
245 
246  virtual crypto::hash top_block_hash(uint64_t *block_height = NULL) const;
247 
248  virtual block get_top_block() const;
249 
250  virtual uint64_t height() const;
251 
252  virtual bool tx_exists(const crypto::hash& h) const;
253  virtual bool tx_exists(const crypto::hash& h, uint64_t& tx_index) const;
254 
255  virtual uint64_t get_tx_unlock_time(const crypto::hash& h) const;
256 
257  virtual bool get_tx_blob(const crypto::hash& h, cryptonote::blobdata &tx) const;
258  virtual bool get_pruned_tx_blob(const crypto::hash& h, cryptonote::blobdata &tx) const;
259  virtual bool get_prunable_tx_blob(const crypto::hash& h, cryptonote::blobdata &tx) const;
260  virtual bool get_prunable_tx_hash(const crypto::hash& tx_hash, crypto::hash &prunable_hash) const;
261 
262  virtual uint64_t get_tx_count() const;
263 
264  virtual std::vector<transaction> get_tx_list(const std::vector<crypto::hash>& hlist) const;
265 
266  virtual uint64_t get_tx_block_height(const crypto::hash& h) const;
267 
268  virtual uint64_t get_num_outputs(const uint64_t& amount) const;
269 
270  virtual output_data_t get_output_key(const uint64_t& amount, const uint64_t& index, bool include_commitmemt) const;
271  virtual void 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 = false) const;
272 
273  virtual tx_out_index get_output_tx_and_index_from_global(const uint64_t& index) const;
274  virtual void get_output_tx_and_index_from_global(const std::vector<uint64_t> &global_indices,
275  std::vector<tx_out_index> &tx_out_indices) const;
276 
277  virtual tx_out_index get_output_tx_and_index(const uint64_t& amount, const uint64_t& index) const;
278  virtual void get_output_tx_and_index(const uint64_t& amount, const std::vector<uint64_t> &offsets, std::vector<tx_out_index> &indices) const;
279 
280  virtual std::vector<std::vector<uint64_t>> get_tx_amount_output_indices(const uint64_t tx_id, size_t n_txes) const;
281 
282  virtual bool has_key_image(const crypto::key_image& img) const;
283 
284  virtual void add_txpool_tx(const crypto::hash &txid, const cryptonote::blobdata &blob, const txpool_tx_meta_t& meta);
285  virtual void update_txpool_tx(const crypto::hash &txid, const txpool_tx_meta_t& meta);
286  virtual uint64_t get_txpool_tx_count(bool include_unrelayed_txes = true) const;
287  virtual bool txpool_has_tx(const crypto::hash &txid) const;
288  virtual void remove_txpool_tx(const crypto::hash& txid);
289  virtual bool get_txpool_tx_meta(const crypto::hash& txid, txpool_tx_meta_t &meta) const;
290  virtual bool get_txpool_tx_blob(const crypto::hash& txid, cryptonote::blobdata &bd) const;
291  virtual cryptonote::blobdata get_txpool_tx_blob(const crypto::hash& txid) const;
292  virtual uint32_t get_blockchain_pruning_seed() const;
293  virtual bool prune_blockchain(uint32_t pruning_seed = 0);
294  virtual bool update_pruning();
295  virtual bool check_pruning();
296 
297  virtual bool for_all_txpool_txes(std::function<bool(const crypto::hash&, const txpool_tx_meta_t&, const cryptonote::blobdata*)> f, bool include_blob = false, bool include_unrelayed_txes = true) const;
298 
299  virtual bool for_all_key_images(std::function<bool(const crypto::key_image&)>) const;
300  virtual bool for_blocks_range(const uint64_t& h1, const uint64_t& h2, std::function<bool(uint64_t, const crypto::hash&, const cryptonote::block&)>) const;
301  virtual bool for_all_transactions(std::function<bool(const crypto::hash&, const cryptonote::transaction&)>, bool pruned) const;
302  virtual bool for_all_outputs(std::function<bool(uint64_t amount, const crypto::hash &tx_hash, uint64_t height, size_t tx_idx)> f) const;
303  virtual bool for_all_outputs(uint64_t amount, const std::function<bool(uint64_t height)> &f) const;
304 
305  virtual uint64_t add_block( const std::pair<block, blobdata>& blk
306  , size_t block_weight
307  , uint64_t long_term_block_weight
308  , const difficulty_type& cumulative_difficulty
309  , const uint64_t& coins_generated
310  , const std::vector<std::pair<transaction, blobdata>>& txs
311  );
312 
313  virtual void set_batch_transactions(bool batch_transactions);
314  virtual bool batch_start(uint64_t batch_num_blocks=0, uint64_t batch_bytes=0);
315  virtual void batch_commit();
316  virtual void batch_stop();
317  virtual void batch_abort();
318 
319  virtual void block_wtxn_start();
320  virtual void block_wtxn_stop();
321  virtual void block_wtxn_abort();
322  virtual bool block_rtxn_start() const;
323  virtual void block_rtxn_stop() const;
324  virtual void block_rtxn_abort() const;
325 
326  bool block_rtxn_start(MDB_txn **mtxn, mdb_txn_cursors **mcur) const;
327 
328  virtual void pop_block(block& blk, std::vector<transaction>& txs);
329 
330  virtual bool can_thread_bulk_indices() const { return true; }
331 
342  std::map<uint64_t, std::tuple<uint64_t, uint64_t, uint64_t>> get_output_histogram(const std::vector<uint64_t> &amounts, bool unlocked, uint64_t recent_cutoff, uint64_t min_count) const;
343 
344  bool get_output_distribution(uint64_t amount, uint64_t from_height, uint64_t to_height, std::vector<uint64_t> &distribution, uint64_t &base) const;
345 
346  // helper functions
347  static int compare_uint64(const MDB_val *a, const MDB_val *b);
348  static int compare_hash32(const MDB_val *a, const MDB_val *b);
349  static int compare_string(const MDB_val *a, const MDB_val *b);
350 
351 private:
352  void do_resize(uint64_t size_increase=0);
353 
354  bool need_resize(uint64_t threshold_size=0) const;
355  void check_and_resize_for_batch(uint64_t batch_num_blocks, uint64_t batch_bytes);
356  uint64_t get_estimated_batch_size(uint64_t batch_num_blocks, uint64_t batch_bytes) const;
357 
358  virtual void add_block( const block& blk
359  , size_t block_weight
360  , uint64_t long_term_block_weight
361  , const difficulty_type& cumulative_difficulty
362  , const uint64_t& coins_generated
363  , uint64_t num_rct_outs
364  , const crypto::hash& block_hash
365  );
366 
367  virtual void remove_block();
368 
369  virtual uint64_t add_transaction_data(const crypto::hash& blk_hash, const std::pair<transaction, blobdata>& tx, const crypto::hash& tx_hash, const crypto::hash& tx_prunable_hash);
370 
371  virtual void remove_transaction_data(const crypto::hash& tx_hash, const transaction& tx);
372 
373  virtual uint64_t add_output(const crypto::hash& tx_hash,
374  const tx_out& tx_output,
375  const uint64_t& local_index,
376  const uint64_t unlock_time,
377  const rct::key *commitment
378  );
379 
380  virtual void add_tx_amount_output_indices(const uint64_t tx_id,
381  const std::vector<uint64_t>& amount_output_indices
382  );
383 
384  void remove_tx_outputs(const uint64_t tx_id, const transaction& tx);
385 
386  void remove_output(const uint64_t amount, const uint64_t& out_index);
387 
388  virtual void prune_outputs(uint64_t amount);
389 
390  virtual void add_spent_key(const crypto::key_image& k_image);
391 
392  virtual void remove_spent_key(const crypto::key_image& k_image);
393 
394  uint64_t num_outputs() const;
395 
396  // Hard fork
397  virtual void set_hard_fork_version(uint64_t height, uint8_t version);
398  virtual uint8_t get_hard_fork_version(uint64_t height) const;
399  virtual void check_hard_fork_info();
400  virtual void drop_hard_fork_info();
401 
402  inline void check_open() const;
403 
404  bool prune_worker(int mode, uint32_t pruning_seed);
405 
406  virtual bool is_read_only() const;
407 
408  virtual uint64_t get_database_size() const;
409 
410  std::vector<uint64_t> get_block_info_64bit_fields(uint64_t start_height, size_t count, off_t offset) const;
411 
412  uint64_t get_max_block_size();
413  void add_max_block_size(uint64_t sz);
414 
415  // fix up anything that may be wrong due to past bugs
416  virtual void fixup();
417 
418  // Validator List
419  virtual void set_validator_list(std::string validators, uint32_t expiration_date);
420  virtual std::string get_validator_list() const;
421  blobdata validator_to_blob(const validator_db& v) const;
422  validator_db validator_from_blob(const blobdata blob) const;
423 
424  blobdata output_to_blob(const tx_out& output) const;
425  tx_out output_from_blob(const blobdata& blob) const;
426 
427  // migrate from older DB version to current
428  void migrate(const uint32_t oldversion);
429 
430  // migrate from DB version 0 to 1
431  void migrate_0_1();
432 
433  // migrate from DB version 1 to 2
434  void migrate_1_2();
435 
436  // migrate from DB version 2 to 3
437  void migrate_2_3();
438 
439  // migrate from DB version 3 to 4
440  void migrate_3_4();
441 
442  // migrate from DB version 4 to 5
443  void migrate_4_5();
444 
445  void cleanup_batch();
446 
447 private:
448  MDB_env* m_env;
449 
450  MDB_dbi m_blocks;
452  MDB_dbi m_block_info;
453 
454  MDB_dbi m_txs;
455  MDB_dbi m_txs_pruned;
456  MDB_dbi m_txs_prunable;
459  MDB_dbi m_tx_indices;
460  MDB_dbi m_tx_outputs;
461 
462  MDB_dbi m_output_txs;
464 
465  MDB_dbi m_spent_keys;
466 
467  MDB_dbi m_txpool_meta;
468  MDB_dbi m_txpool_blob;
469 
471  MDB_dbi m_hf_versions;
472 
473  MDB_dbi m_validators;
474 
475  MDB_dbi m_properties;
476 
477  mutable uint64_t m_cum_size; // used in batch size estimation
478  mutable unsigned int m_cum_count;
479  std::string m_folder;
480  mdb_txn_safe* m_write_txn; // may point to either a short-lived txn or a batch txn
481  mdb_txn_safe* m_write_batch_txn; // persist batch txn outside of BlockchainLMDB
482  boost::thread::id m_writer;
483 
484  bool m_batch_transactions; // support for batch transactions
485  bool m_batch_active; // whether batch transaction is in progress
486 
488  mutable boost::thread_specific_ptr<mdb_threadinfo> m_tinfo;
489 
490 #if defined(__arm__)
491  // force a value so it can compile with 32-bit ARM
492  constexpr static uint64_t DEFAULT_MAPSIZE = 1LL << 31;
493 #else
494 #if defined(ENABLE_AUTO_RESIZE)
495  constexpr static uint64_t DEFAULT_MAPSIZE = 1LL << 30;
496 #else
497  constexpr static uint64_t DEFAULT_MAPSIZE = 1LL << 33;
498 #endif
499 #endif
500 
501  constexpr static float RESIZE_PERCENT = 0.9f;
502 };
503 
504 } // namespace cryptonote
uint8_t version
Definition: blockchain.cpp:90
The BlockchainDB backing store interface declaration/contract.
Definition: blockchain_db.h:344
void pop_block()
private version of pop_block, for undoing if an add_block fails
Definition: blockchain_db.cpp:118
Definition: db_lmdb.h:183
boost::thread_specific_ptr< mdb_threadinfo > m_tinfo
Definition: db_lmdb.h:488
blobdata output_to_blob(const tx_out &output) const
Definition: db_lmdb.cpp:1250
virtual bool update_pruning()
prunes recent blockchain changes as needed, iff pruning is enabled
Definition: db_lmdb.cpp:2287
MDB_dbi m_txs
Definition: db_lmdb.h:454
virtual size_t get_block_weight(const uint64_t &height) const
fetch a block's weight
Definition: db_lmdb.cpp:2544
static int compare_string(const MDB_val *a, const MDB_val *b)
Definition: db_lmdb.cpp:165
virtual void add_txpool_tx(const crypto::hash &txid, const cryptonote::blobdata &blob, const txpool_tx_meta_t &meta)
add a txpool transaction
Definition: db_lmdb.cpp:1771
virtual bool for_blocks_range(const uint64_t &h1, const uint64_t &h2, std::function< bool(uint64_t, const crypto::hash &, const cryptonote::block &)>) const
runs a function over a range of blocks
Definition: db_lmdb.cpp:3378
virtual uint32_t get_blockchain_pruning_seed() const
get the blockchain pruning seed
Definition: db_lmdb.cpp:1964
MDB_dbi m_output_txs
Definition: db_lmdb.h:462
virtual std::vector< uint64_t > get_block_cumulative_rct_outputs(const std::vector< uint64_t > &heights) const
fetch a block's cumulative number of rct outputs
Definition: db_lmdb.cpp:2467
virtual void batch_stop()
ends a batch transaction
Definition: db_lmdb.cpp:3647
MDB_dbi m_txs_prunable_tip
Definition: db_lmdb.h:458
virtual void open(const std::string &filename, const int mdb_flags=0)
open a db, or create it if necessary.
Definition: db_lmdb.cpp:1330
virtual tx_out_index get_output_tx_and_index_from_global(const uint64_t &index) const
gets an output's tx hash and index
Definition: db_lmdb.cpp:3249
MDB_dbi m_output_amounts
Definition: db_lmdb.h:463
virtual void set_batch_transactions(bool batch_transactions)
sets whether or not to batch transactions
Definition: db_lmdb.cpp:3699
MDB_env * m_env
Definition: db_lmdb.h:448
MDB_dbi m_properties
Definition: db_lmdb.h:475
virtual void reset()
Remove everything from the BlockchainDB.
Definition: db_lmdb.cpp:1614
virtual void unlock()
This function releases the BlockchainDB lock.
Definition: db_lmdb.cpp:1713
bool prune_worker(int mode, uint32_t pruning_seed)
Definition: db_lmdb.cpp:1999
virtual block get_top_block() const
fetch the top block
Definition: db_lmdb.cpp:2873
virtual void block_rtxn_stop() const
Definition: db_lmdb.cpp:3748
MDB_dbi m_spent_keys
Definition: db_lmdb.h:465
MDB_dbi m_txpool_meta
Definition: db_lmdb.h:467
MDB_dbi m_block_heights
Definition: db_lmdb.h:451
virtual difficulty_type get_block_difficulty(const uint64_t &height) const
fetch a block's difficulty
Definition: db_lmdb.cpp:2744
virtual std::vector< std::vector< uint64_t > > get_tx_amount_output_indices(const uint64_t tx_id, size_t n_txes) const
gets output indices (amount-specific) for a transaction's outputs
Definition: db_lmdb.cpp:3285
virtual uint64_t 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)
handles the addition of a new block to BlockchainDB
Definition: db_lmdb.cpp:3840
virtual void prune_outputs(uint64_t amount)
prune output data for the given amount
Definition: db_lmdb.cpp:1159
blobdata validator_to_blob(const validator_db &v) const
Definition: db_lmdb.cpp:1273
virtual block_header get_block_header(const crypto::hash &h) const
fetch a block header
Definition: db_lmdb.cpp:2409
mdb_txn_safe * m_write_batch_txn
Definition: db_lmdb.h:481
virtual uint64_t get_txpool_tx_count(bool include_unrelayed_txes=true) const
get the number of transactions in the txpool
Definition: db_lmdb.cpp:1823
std::map< uint64_t, std::tuple< uint64_t, uint64_t, uint64_t > > get_output_histogram(const std::vector< uint64_t > &amounts, bool unlocked, uint64_t recent_cutoff, uint64_t min_count) const
return a histogram of outputs on the blockchain
Definition: db_lmdb.cpp:4007
bool m_batch_transactions
Definition: db_lmdb.h:484
mdb_txn_cursors m_wcursors
Definition: db_lmdb.h:487
virtual void batch_abort()
aborts a batch transaction
Definition: db_lmdb.cpp:3676
virtual bool get_txpool_tx_meta(const crypto::hash &txid, txpool_tx_meta_t &meta) const
get a txpool transaction's metadata
Definition: db_lmdb.cpp:1914
virtual std::string get_validator_list() const
Definition: db_lmdb.cpp:4190
virtual bool has_key_image(const crypto::key_image &img) const
check if a key image is stored as spent
Definition: db_lmdb.cpp:3328
validator_db validator_from_blob(const blobdata blob) const
Definition: db_lmdb.cpp:1283
unsigned int m_cum_count
Definition: db_lmdb.h:478
virtual crypto::hash top_block_hash(uint64_t *block_height=NULL) const
fetch the top block's hash
Definition: db_lmdb.cpp:2858
bool m_batch_active
Definition: db_lmdb.h:485
virtual void block_wtxn_abort()
Definition: db_lmdb.cpp:3817
std::string m_folder
Definition: db_lmdb.h:479
virtual uint64_t get_block_already_generated_coins(const uint64_t &height) const
fetch a block's already generated coins
Definition: db_lmdb.cpp:2761
virtual std::vector< uint64_t > get_long_term_block_weights(uint64_t start_height, size_t count) const
fetch the last N blocks' long term weights
Definition: db_lmdb.cpp:2678
virtual uint64_t get_tx_count() const
fetches the total number of transactions ever
Definition: db_lmdb.cpp:3137
MDB_dbi m_tx_outputs
Definition: db_lmdb.h:460
virtual bool block_exists(const crypto::hash &h, uint64_t *height=NULL) const
checks if a block exists
Definition: db_lmdb.cpp:2349
virtual bool get_txpool_tx_blob(const crypto::hash &txid, cryptonote::blobdata &bd) const
get a txpool transaction's blob
Definition: db_lmdb.cpp:1935
virtual bool get_pruned_tx_blob(const crypto::hash &h, cryptonote::blobdata &tx) const
fetches the pruned transaction blob with the given hash
Definition: db_lmdb.cpp:3047
virtual uint64_t get_num_outputs(const uint64_t &amount) const
fetches the number of outputs of a given amount
Definition: db_lmdb.cpp:3191
virtual uint64_t get_block_height(const crypto::hash &h) const
gets the height of the block with a given hash
Definition: db_lmdb.cpp:2388
void migrate_2_3()
Definition: db_lmdb.cpp:4996
virtual std::vector< block > get_blocks_range(const uint64_t &h1, const uint64_t &h2) const
fetch a list of blocks
Definition: db_lmdb.cpp:2830
virtual bool tx_exists(const crypto::hash &h) const
check if a transaction with a given hash exists
Definition: db_lmdb.cpp:2924
virtual bool block_rtxn_start() const
Definition: db_lmdb.cpp:3755
virtual void block_rtxn_abort() const
Definition: db_lmdb.cpp:3833
void do_resize(uint64_t size_increase=0)
Definition: db_lmdb.cpp:507
virtual std::vector< uint64_t > get_block_weights(uint64_t start_height, size_t count) const
fetch the last N blocks' weights
Definition: db_lmdb.cpp:2673
BlockchainLMDB(bool batch_transactions=true)
Definition: db_lmdb.cpp:1311
virtual std::vector< transaction > get_tx_list(const std::vector< crypto::hash > &hlist) const
fetches a list of transactions based on their hashes
Definition: db_lmdb.cpp:3154
virtual bool batch_start(uint64_t batch_num_blocks=0, uint64_t batch_bytes=0)
tells the BlockchainDB to start a new "batch" of blocks
Definition: db_lmdb.cpp:3567
uint64_t get_max_block_size()
get the max block size
Definition: db_lmdb.cpp:2621
virtual void remove_transaction_data(const crypto::hash &tx_hash, const transaction &tx)
remove data about a transaction
Definition: db_lmdb.cpp:933
virtual void set_block_cumulative_difficulty(uint64_t height, difficulty_type diff)
sets a block's cumulative difficulty
Definition: db_lmdb.cpp:2683
virtual void remove_txpool_tx(const crypto::hash &txid)
remove a txpool transaction
Definition: db_lmdb.cpp:1884
virtual bool for_all_transactions(std::function< bool(const crypto::hash &, const cryptonote::transaction &)>, bool pruned) const
runs a function over all transactions stored
Definition: db_lmdb.cpp:3429
virtual uint64_t get_block_long_term_weight(const uint64_t &height) const
fetch a block's long term weight
Definition: db_lmdb.cpp:2784
tx_out output_from_blob(const blobdata &blob) const
Definition: db_lmdb.cpp:1259
virtual difficulty_type get_block_cumulative_difficulty(const uint64_t &height) const
fetch a block's cumulative difficulty
Definition: db_lmdb.cpp:2719
void migrate_4_5()
Definition: db_lmdb.cpp:5292
~BlockchainLMDB()
Definition: db_lmdb.cpp:1297
MDB_dbi m_txs_prunable
Definition: db_lmdb.h:456
virtual bool txpool_has_tx(const crypto::hash &txid) const
check whether a txid is in the txpool
Definition: db_lmdb.cpp:1868
void cleanup_batch()
Definition: db_lmdb.cpp:3637
void remove_tx_outputs(const uint64_t tx_id, const transaction &tx)
Definition: db_lmdb.cpp:1098
virtual bool check_pruning()
checks pruning was done correctly, iff enabled
Definition: db_lmdb.cpp:2292
virtual void batch_commit()
Definition: db_lmdb.cpp:3610
constexpr static float RESIZE_PERCENT
Definition: db_lmdb.h:501
virtual uint64_t get_block_timestamp(const uint64_t &height) const
fetch a block's timestamp
Definition: db_lmdb.cpp:2444
std::vector< uint64_t > get_block_info_64bit_fields(uint64_t start_height, size_t count, off_t offset) const
Definition: db_lmdb.cpp:2567
void migrate_0_1()
Definition: db_lmdb.cpp:4312
void remove_output(const uint64_t amount, const uint64_t &out_index)
Definition: db_lmdb.cpp:1121
uint64_t get_estimated_batch_size(uint64_t batch_num_blocks, uint64_t batch_bytes) const
Definition: db_lmdb.cpp:655
virtual bool lock()
acquires the BlockchainDB lock
Definition: db_lmdb.cpp:1705
virtual uint8_t get_hard_fork_version(uint64_t height) const
checks which hardfork version a height is on
Definition: db_lmdb.cpp:4239
virtual bool get_tx_blob(const crypto::hash &h, cryptonote::blobdata &tx) const
fetches the transaction blob with the given hash
Definition: db_lmdb.cpp:3011
MDB_dbi m_txs_prunable_hash
Definition: db_lmdb.h:457
virtual void add_spent_key(const crypto::key_image &k_image)
store a spent key
Definition: db_lmdb.cpp:1213
virtual bool get_prunable_tx_blob(const crypto::hash &h, cryptonote::blobdata &tx) const
fetches the prunable transaction blob with the given hash
Definition: db_lmdb.cpp:3077
virtual void set_hard_fork_version(uint64_t height, uint8_t version)
sets which hardfork version a height is on
Definition: db_lmdb.cpp:4220
virtual void remove_spent_key(const crypto::key_image &k_image)
remove a spent key
Definition: db_lmdb.cpp:1230
uint64_t num_outputs() const
Definition: db_lmdb.cpp:2902
MDB_dbi m_txpool_blob
Definition: db_lmdb.h:468
virtual uint64_t add_transaction_data(const crypto::hash &blk_hash, const std::pair< transaction, blobdata > &tx, const crypto::hash &tx_hash, const crypto::hash &tx_prunable_hash)
store the transaction and its metadata
Definition: db_lmdb.cpp:845
boost::thread::id m_writer
Definition: db_lmdb.h:482
virtual output_data_t get_output_key(const uint64_t &amount, const uint64_t &index, bool include_commitmemt) const
get some of an output's data
Definition: db_lmdb.cpp:3215
virtual void check_hard_fork_info()
verify hard fork info in database
Definition: db_lmdb.cpp:4147
virtual uint64_t get_top_block_timestamp() const
fetch the top block's timestamp
Definition: db_lmdb.cpp:2529
virtual void safesyncmode(const bool onoff)
toggle safe syncs for the DB
Definition: db_lmdb.cpp:1608
virtual void update_txpool_tx(const crypto::hash &txid, const txpool_tx_meta_t &meta)
update a txpool transaction's metadata
Definition: db_lmdb.cpp:1797
virtual bool get_prunable_tx_hash(const crypto::hash &tx_hash, crypto::hash &prunable_hash) const
fetches the prunable transaction hash
Definition: db_lmdb.cpp:3107
virtual std::string get_db_name() const
gets the name of the folder the BlockchainDB's file(s) should be in
Definition: db_lmdb.cpp:1697
MDB_dbi m_validators
Definition: db_lmdb.h:473
void check_open() const
Definition: db_lmdb.cpp:501
virtual void block_wtxn_start()
Definition: db_lmdb.cpp:3762
virtual tx_out_index get_output_tx_and_index(const uint64_t &amount, const uint64_t &index) const
gets an output's tx hash and index
Definition: db_lmdb.cpp:3272
virtual cryptonote::blobdata get_block_blob(const crypto::hash &h) const
fetches the block with the given hash
Definition: db_lmdb.cpp:2380
MDB_dbi m_tx_indices
Definition: db_lmdb.h:459
virtual bool is_read_only() const
is BlockchainDB in read-only mode?
Definition: db_lmdb.cpp:4258
virtual void close()
close the BlockchainDB
Definition: db_lmdb.cpp:1576
virtual cryptonote::blobdata get_block_blob_from_height(const uint64_t &height) const
fetch a block blob by height
Definition: db_lmdb.cpp:2418
void migrate_1_2()
Definition: db_lmdb.cpp:4854
virtual uint64_t height() const
fetch the current blockchain height
Definition: db_lmdb.cpp:2888
virtual void block_wtxn_stop()
Definition: db_lmdb.cpp:3795
virtual bool for_all_outputs(std::function< bool(uint64_t amount, const crypto::hash &tx_hash, uint64_t height, size_t tx_idx)> f) const
runs a function over all outputs stored
Definition: db_lmdb.cpp:3491
mdb_txn_safe * m_write_txn
Definition: db_lmdb.h:480
virtual void add_tx_amount_output_indices(const uint64_t tx_id, const std::vector< uint64_t > &amount_output_indices)
store amount output indices for a tx's outputs
Definition: db_lmdb.cpp:1075
MDB_dbi m_hf_versions
Definition: db_lmdb.h:471
virtual uint64_t get_database_size() const
get disk space requirements
Definition: db_lmdb.cpp:4271
virtual std::vector< crypto::hash > get_hashes_range(const uint64_t &h1, const uint64_t &h2) const
fetch a list of block hashes
Definition: db_lmdb.cpp:2844
MDB_dbi m_blocks
Definition: db_lmdb.h:450
virtual void remove_block()
remove data about the top block
Definition: db_lmdb.cpp:808
virtual void fixup()
fix up anything that may be wrong due to past bugs
Definition: db_lmdb.cpp:4281
bool get_output_distribution(uint64_t amount, uint64_t from_height, uint64_t to_height, std::vector< uint64_t > &distribution, uint64_t &base) const
Definition: db_lmdb.cpp:4100
virtual std::vector< std::string > get_filenames() const
get all files used by the BlockchainDB (if any)
Definition: db_lmdb.cpp:1666
void add_max_block_size(uint64_t sz)
add a new max block size
Definition: db_lmdb.cpp:2643
MDB_dbi m_block_info
Definition: db_lmdb.h:452
MDB_dbi m_txs_pruned
Definition: db_lmdb.h:455
uint64_t m_cum_size
Definition: db_lmdb.h:477
void check_and_resize_for_batch(uint64_t batch_num_blocks, uint64_t batch_bytes)
Definition: db_lmdb.cpp:623
void migrate(const uint32_t oldversion)
Definition: db_lmdb.cpp:5419
virtual uint64_t 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)
store an output
Definition: db_lmdb.cpp:1009
virtual bool prune_blockchain(uint32_t pruning_seed=0)
prunes the blockchain
Definition: db_lmdb.cpp:2282
virtual bool can_thread_bulk_indices() const
Definition: db_lmdb.h:330
bool need_resize(uint64_t threshold_size=0) const
Definition: db_lmdb.cpp:576
constexpr static uint64_t DEFAULT_MAPSIZE
Definition: db_lmdb.h:495
virtual crypto::hash get_block_hash_from_height(const uint64_t &height) const
fetch a block's hash
Definition: db_lmdb.cpp:2807
static int compare_hash32(const MDB_val *a, const MDB_val *b)
Definition: db_lmdb.cpp:151
void migrate_3_4()
Definition: db_lmdb.cpp:5132
virtual bool for_all_key_images(std::function< bool(const crypto::key_image &)>) const
runs a function over all key images stored
Definition: db_lmdb.cpp:3345
virtual uint64_t get_tx_block_height(const crypto::hash &h) const
fetches the height of a transaction's block
Definition: db_lmdb.cpp:3168
static int compare_uint64(const MDB_val *a, const MDB_val *b)
Definition: db_lmdb.cpp:143
virtual void sync()
sync the BlockchainDB with disk
Definition: db_lmdb.cpp:1592
virtual uint64_t get_tx_unlock_time(const crypto::hash &h) const
fetch a transaction's unlock time/height
Definition: db_lmdb.cpp:2990
virtual void drop_hard_fork_info()
delete hard fork info from database
Definition: db_lmdb.cpp:4151
virtual bool for_all_txpool_txes(std::function< bool(const crypto::hash &, const txpool_tx_meta_t &, const cryptonote::blobdata *)> f, bool include_blob=false, bool include_unrelayed_txes=true) const
runs a function over all txpool transactions
Definition: db_lmdb.cpp:2297
virtual bool remove_data_file(const std::string &folder) const
remove file(s) storing the database
Definition: db_lmdb.cpp:1682
MDB_dbi m_hf_starting_heights
Definition: db_lmdb.h:470
virtual void set_validator_list(std::string validators, uint32_t expiration_date)
Definition: db_lmdb.cpp:4168
Definition: cryptonote_basic.h:205
string a
Definition: MakeCryptoOps.py:15
Definition: base.py:1
int b
Definition: base.py:1
POD_CLASS key_image
Definition: crypto.h:102
POD_CLASS hash
Definition: hash.h:50
Holds cryptonote related classes and helpers.
Definition: db_bdb.cpp:226
boost::multiprecision::uint128_t difficulty_type
Definition: difficulty.h:43
struct cryptonote::mdb_threadinfo mdb_threadinfo
struct cryptonote::txindex txindex
std::string blobdata
Definition: blobdatatype.h:39
std::pair< crypto::hash, uint64_t > tx_out_index
Definition: blockchain_db.h:104
struct cryptonote::mdb_rflags mdb_rflags
struct cryptonote::mdb_txn_cursors mdb_txn_cursors
mdb_size_t count(MDB_cursor *cur)
Definition: value_stream.cpp:39
Definition: cryptonote_basic.h:393
Definition: cryptonote_basic.h:410
Definition: db_lmdb.h:97
bool m_rf_properties
Definition: db_lmdb.h:115
bool m_rf_validators
Definition: db_lmdb.h:116
bool m_rf_txs_pruned
Definition: db_lmdb.h:105
bool m_rf_txs
Definition: db_lmdb.h:104
bool m_rf_block_info
Definition: db_lmdb.h:101
bool m_rf_txpool_meta
Definition: db_lmdb.h:112
bool m_rf_blocks
Definition: db_lmdb.h:99
bool m_rf_txs_prunable
Definition: db_lmdb.h:106
bool m_rf_txs_prunable_tip
Definition: db_lmdb.h:108
bool m_rf_tx_indices
Definition: db_lmdb.h:109
bool m_rf_output_txs
Definition: db_lmdb.h:102
bool m_rf_hf_versions
Definition: db_lmdb.h:114
bool m_rf_txn
Definition: db_lmdb.h:98
bool m_rf_block_heights
Definition: db_lmdb.h:100
bool m_rf_txpool_blob
Definition: db_lmdb.h:113
bool m_rf_spent_keys
Definition: db_lmdb.h:111
bool m_rf_output_amounts
Definition: db_lmdb.h:103
bool m_rf_txs_prunable_hash
Definition: db_lmdb.h:107
bool m_rf_tx_outputs
Definition: db_lmdb.h:110
Definition: db_lmdb.h:120
~mdb_threadinfo()
Definition: db_lmdb.cpp:350
MDB_txn * m_ti_rtxn
Definition: db_lmdb.h:121
mdb_txn_cursors m_ti_rcursors
Definition: db_lmdb.h:122
mdb_rflags m_ti_rflags
Definition: db_lmdb.h:123
Definition: db_lmdb.h:50
MDB_cursor * m_txc_tx_outputs
Definition: db_lmdb.h:64
MDB_cursor * m_txc_txs_prunable
Definition: db_lmdb.h:60
MDB_cursor * m_txc_hf_versions
Definition: db_lmdb.h:71
MDB_cursor * m_txc_tx_indices
Definition: db_lmdb.h:63
MDB_cursor * m_txc_blocks
Definition: db_lmdb.h:51
MDB_cursor * m_txc_txpool_meta
Definition: db_lmdb.h:68
MDB_cursor * m_txc_txs
Definition: db_lmdb.h:58
MDB_cursor * m_txc_output_amounts
Definition: db_lmdb.h:56
MDB_cursor * m_txc_output_txs
Definition: db_lmdb.h:55
MDB_cursor * m_txc_txs_pruned
Definition: db_lmdb.h:59
MDB_cursor * m_txc_block_heights
Definition: db_lmdb.h:52
MDB_cursor * m_txc_block_info
Definition: db_lmdb.h:53
MDB_cursor * m_txc_txs_prunable_tip
Definition: db_lmdb.h:62
MDB_cursor * m_txc_properties
Definition: db_lmdb.h:73
MDB_cursor * m_txc_txpool_blob
Definition: db_lmdb.h:69
MDB_cursor * m_txc_spent_keys
Definition: db_lmdb.h:66
MDB_cursor * m_txc_txs_prunable_hash
Definition: db_lmdb.h:61
MDB_cursor * m_txc_validators
Definition: db_lmdb.h:74
Definition: db_lmdb.h:129
static void prevent_new_txns()
Definition: db_lmdb.cpp:441
bool m_batch_txn
Definition: db_lmdb.h:160
void abort()
Definition: db_lmdb.cpp:422
MDB_txn * m_txn
Definition: db_lmdb.h:159
mdb_threadinfo * m_tinfo
Definition: db_lmdb.h:158
static void allow_new_txns()
Definition: db_lmdb.cpp:451
~mdb_txn_safe()
Definition: db_lmdb.cpp:371
uint64_t num_active_tx() const
Definition: db_lmdb.cpp:436
static void wait_no_active_txns()
Definition: db_lmdb.cpp:446
static std::atomic< uint64_t > num_active_txns
Definition: db_lmdb.h:162
mdb_txn_safe(const bool check=true)
Definition: db_lmdb.cpp:361
bool m_check
Definition: db_lmdb.h:161
void uncheck()
Definition: db_lmdb.cpp:401
void commit(std::string message="")
Definition: db_lmdb.cpp:407
static std::atomic_flag creation_gate
Definition: db_lmdb.h:165
a struct containing output metadata
Definition: blockchain_db.h:116
Definition: blockchain_db.h:126
Definition: cryptonote_basic.h:144
Definition: db_lmdb.h:44
crypto::hash key
Definition: db_lmdb.h:45
tx_data_t data
Definition: db_lmdb.h:46
a struct containing txpool per transaction metadata
Definition: blockchain_db.h:137
Definition: cryptonote_basic.h:160
Definition: rctTypes.h:78