Monero
cryptonote_tx_utils.h
Go to the documentation of this file.
1 // Copyright (c) 2014-2020, The Monero Project
2 //
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 //
29 // Parts of this file are originally copyright (c) 2012-2013 The Cryptonote developers
30 
31 #pragma once
33 #include <boost/serialization/vector.hpp>
34 #include <boost/serialization/utility.hpp>
35 #include "ringct/rctOps.h"
36 
37 namespace cryptonote
38 {
39  //---------------------------------------------------------------
40  bool construct_miner_tx(size_t height, size_t median_weight, uint64_t already_generated_coins, size_t current_block_weight, uint64_t fee, const account_public_address &miner_address, transaction& tx, const blobdata& extra_nonce = blobdata(), size_t max_outs = 999, uint8_t hard_fork_version = 1);
41 
43  {
44  typedef std::pair<uint64_t, rct::ctkey> output_entry;
45 
46  std::vector<output_entry> outputs; //index + key + optional ringct commitment
47  size_t real_output; //index in outputs vector of real output_entry
48  crypto::public_key real_out_tx_key; //incoming real tx public key
49  std::vector<crypto::public_key> real_out_additional_tx_keys; //incoming real tx additional public keys
50  size_t real_output_in_tx_index; //index in transaction outputs vector
51  uint64_t amount; //money
52  bool rct; //true if the output is rct
53  rct::key mask; //ringct amount mask
55 
56  void push_output(uint64_t idx, const crypto::public_key &k, uint64_t amount) { outputs.push_back(std::make_pair(idx, rct::ctkey({rct::pk2rct(k), rct::zeroCommit(amount)}))); }
57 
59  FIELD(outputs)
64  FIELD(amount)
65  FIELD(rct)
66  FIELD(mask)
68 
69  if (real_output >= outputs.size())
70  return false;
72  };
73 
75  {
76  std::string original;
77  uint64_t amount; //money
78  account_public_address addr; //destination address
81 
82  tx_destination_entry() : amount(0), addr(AUTO_VAL_INIT(addr)), is_subaddress(false), is_integrated(false) { }
83  tx_destination_entry(uint64_t a, const account_public_address &ad, bool is_subaddress) : amount(a), addr(ad), is_subaddress(is_subaddress), is_integrated(false) { }
84  tx_destination_entry(const std::string &o, uint64_t a, const account_public_address &ad, bool is_subaddress) : original(o), amount(a), addr(ad), is_subaddress(is_subaddress), is_integrated(false) { }
85 
86  std::string address(network_type nettype, const crypto::hash &payment_id) const
87  {
88  if (!original.empty())
89  {
90  return original;
91  }
92 
93  if (is_integrated)
94  {
95  return get_account_integrated_address_as_str(nettype, addr, reinterpret_cast<const crypto::hash8 &>(payment_id));
96  }
97 
98  return get_account_address_as_str(nettype, is_subaddress, addr);
99  }
100 
102  FIELD(original)
104  FIELD(addr)
105  FIELD(is_subaddress)
106  FIELD(is_integrated)
107  END_SERIALIZE()
108  };
109 
110  //---------------------------------------------------------------
112  bool construct_tx(const account_keys& sender_account_keys, std::vector<tx_source_entry> &sources, const std::vector<tx_destination_entry>& destinations, const boost::optional<cryptonote::account_public_address>& change_addr, const std::vector<uint8_t> &extra, transaction& tx, uint64_t unlock_time);
113  bool construct_tx_with_tx_key(const account_keys& sender_account_keys, const std::unordered_map<crypto::public_key, subaddress_index>& subaddresses, std::vector<tx_source_entry>& sources, std::vector<tx_destination_entry>& destinations, const boost::optional<cryptonote::account_public_address>& change_addr, const std::vector<uint8_t> &extra, transaction& tx, uint64_t unlock_time, const crypto::secret_key &tx_key, const std::vector<crypto::secret_key> &additional_tx_keys, bool rct = false, const rct::RCTConfig &rct_config = { rct::RangeProofBorromean, 0 }, rct::multisig_out *msout = NULL, bool shuffle_outs = true);
114  bool construct_tx_and_get_tx_key(const account_keys& sender_account_keys, const std::unordered_map<crypto::public_key, subaddress_index>& subaddresses, std::vector<tx_source_entry>& sources, std::vector<tx_destination_entry>& destinations, const boost::optional<cryptonote::account_public_address>& change_addr, const std::vector<uint8_t> &extra, transaction& tx, uint64_t unlock_time, crypto::secret_key &tx_key, std::vector<crypto::secret_key> &additional_tx_keys, bool rct = false, const rct::RCTConfig &rct_config = { rct::RangeProofBorromean, 0 }, rct::multisig_out *msout = NULL);
115  bool generate_output_ephemeral_keys(const size_t tx_version, const cryptonote::account_keys &sender_account_keys, const crypto::public_key &txkey_pub, const crypto::secret_key &tx_key,
116  const cryptonote::tx_destination_entry &dst_entr, const boost::optional<cryptonote::account_public_address> &change_addr, const size_t output_index,
117  const bool &need_additional_txkeys, const std::vector<crypto::secret_key> &additional_tx_keys,
118  std::vector<crypto::public_key> &additional_tx_public_keys,
119  std::vector<rct::key> &amount_keys,
120  crypto::public_key &out_eph_public_key) ;
121 
122  bool generate_output_ephemeral_keys(const size_t tx_version, const cryptonote::account_keys &sender_account_keys, const crypto::public_key &txkey_pub, const crypto::secret_key &tx_key,
123  const cryptonote::tx_destination_entry &dst_entr, const boost::optional<cryptonote::account_public_address> &change_addr, const size_t output_index,
124  const bool &need_additional_txkeys, const std::vector<crypto::secret_key> &additional_tx_keys,
125  std::vector<crypto::public_key> &additional_tx_public_keys,
126  std::vector<rct::key> &amount_keys,
127  crypto::public_key &out_eph_public_key) ;
128 
130  block& bl
131  , std::string const & genesis_tx
132  , uint32_t nonce
133  );
134 
135  class Blockchain;
136  bool get_block_longhash(const Blockchain *pb, const block& b, crypto::hash& res, const uint64_t height, const int miners);
137  bool get_block_longhash(const Blockchain *pb, const block& b, crypto::hash& res, const uint64_t height, const crypto::hash *seed_hash, const int miners);
138  void get_altblock_longhash(const block& b, crypto::hash& res, const uint64_t main_height, const uint64_t height,
139  const uint64_t seed_height, const crypto::hash& seed_hash);
140  crypto::hash get_block_longhash(const Blockchain *pb, const block& b, const uint64_t height, const int miners);
141  void get_block_longhash_reorg(const uint64_t split_height);
142 
143 }
144 
146 BOOST_CLASS_VERSION(cryptonote::tx_destination_entry, 2)
147 
148 namespace boost
149 {
150  namespace serialization
151  {
152  template <class Archive>
153  inline void serialize(Archive &a, cryptonote::tx_source_entry &x, const boost::serialization::version_type ver)
154  {
155  a & x.outputs;
156  a & x.real_output;
157  a & x.real_out_tx_key;
159  a & x.amount;
160  a & x.rct;
161  a & x.mask;
162  if (ver < 1)
163  return;
164  a & x.multisig_kLRki;
166  }
167 
168  template <class Archive>
169  inline void serialize(Archive& a, cryptonote::tx_destination_entry& x, const boost::serialization::version_type ver)
170  {
171  a & x.amount;
172  a & x.addr;
173  if (ver < 1)
174  return;
175  a & x.is_subaddress;
176  if (ver < 2)
177  {
178  x.is_integrated = false;
179  return;
180  }
181  a & x.original;
182  a & x.is_integrated;
183  }
184  }
185 }
Definition: blockchain.h:96
Definition: cryptonote_basic.h:194
string a
Definition: MakeCryptoOps.py:15
int b
Definition: base.py:1
void serialize(Archive &a, cryptonote::tx_destination_entry &x, const boost::serialization::version_type ver)
Definition: cryptonote_tx_utils.h:169
Definition: unordered_containers_boost_serialization.h:38
const
Definition: build_protob.py:9
crypto namespace.
Definition: crypto.cpp:60
epee::mlocked< tools::scrubbed< ec_scalar > > secret_key
Definition: crypto.h:67
POD_CLASS hash8
Definition: hash.h:51
POD_CLASS public_key
Definition: crypto.h:61
POD_CLASS hash
Definition: hash.h:48
Holds cryptonote related classes and helpers.
Definition: blockchain_db.cpp:45
network_type
Definition: cryptonote_config.h:273
void get_altblock_longhash(const block &b, crypto::hash &res, const uint64_t main_height, const uint64_t height, const uint64_t seed_height, const crypto::hash &seed_hash)
Definition: cryptonote_tx_utils.cpp:673
crypto::public_key get_destination_view_key_pub(const std::vector< tx_destination_entry > &destinations, const boost::optional< cryptonote::account_public_address > &change_addr)
Definition: cryptonote_tx_utils.cpp:180
bool construct_tx_with_tx_key(const account_keys &sender_account_keys, const std::unordered_map< crypto::public_key, subaddress_index > &subaddresses, std::vector< tx_source_entry > &sources, std::vector< tx_destination_entry > &destinations, const boost::optional< cryptonote::account_public_address > &change_addr, const std::vector< uint8_t > &extra, transaction &tx, uint64_t unlock_time, const crypto::secret_key &tx_key, const std::vector< crypto::secret_key > &additional_tx_keys, bool rct, const rct::RCTConfig &rct_config, rct::multisig_out *msout, bool shuffle_outs)
Definition: cryptonote_tx_utils.cpp:202
std::string get_account_address_as_str(network_type nettype, bool subaddress, account_public_address const &adr)
Definition: cryptonote_basic_impl.cpp:150
bool construct_tx_and_get_tx_key(const account_keys &sender_account_keys, const std::unordered_map< crypto::public_key, subaddress_index > &subaddresses, std::vector< tx_source_entry > &sources, std::vector< tx_destination_entry > &destinations, const boost::optional< cryptonote::account_public_address > &change_addr, const std::vector< uint8_t > &extra, transaction &tx, uint64_t unlock_time, crypto::secret_key &tx_key, std::vector< crypto::secret_key > &additional_tx_keys, bool rct, const rct::RCTConfig &rct_config, rct::multisig_out *msout)
Definition: cryptonote_tx_utils.cpp:611
bool get_block_longhash(const Blockchain *pbc, const block &b, crypto::hash &res, const uint64_t height, const crypto::hash *seed_hash, const int miners)
Definition: cryptonote_tx_utils.cpp:679
bool construct_tx(const account_keys &sender_account_keys, std::vector< tx_source_entry > &sources, const std::vector< tx_destination_entry > &destinations, const boost::optional< cryptonote::account_public_address > &change_addr, const std::vector< uint8_t > &extra, transaction &tx, uint64_t unlock_time)
Definition: cryptonote_tx_utils.cpp:638
std::string blobdata
Definition: blobdatatype.h:39
bool construct_miner_tx(size_t height, size_t median_weight, uint64_t already_generated_coins, size_t current_block_weight, uint64_t fee, const account_public_address &miner_address, transaction &tx, const blobdata &extra_nonce, size_t max_outs, uint8_t hard_fork_version)
Definition: cryptonote_tx_utils.cpp:79
bool generate_genesis_block(block &bl, std::string const &genesis_tx, uint32_t nonce)
Definition: cryptonote_tx_utils.cpp:648
std::string get_account_integrated_address_as_str(network_type nettype, account_public_address const &adr, crypto::hash8 const &payment_id)
Definition: cryptonote_basic_impl.cpp:161
void get_block_longhash_reorg(const uint64_t split_height)
Definition: cryptonote_tx_utils.cpp:724
bool generate_output_ephemeral_keys(const size_t tx_version, const cryptonote::account_keys &sender_account_keys, const crypto::public_key &txkey_pub, const crypto::secret_key &tx_key, const cryptonote::tx_destination_entry &dst_entr, const boost::optional< cryptonote::account_public_address > &change_addr, const size_t output_index, const bool &need_additional_txkeys, const std::vector< crypto::secret_key > &additional_tx_keys, std::vector< crypto::public_key > &additional_tx_public_keys, std::vector< rct::key > &amount_keys, crypto::public_key &out_eph_public_key)
Definition: bulletproofs.cc:64
key zeroCommit(xmr_amount amount)
Definition: rctOps.cpp:322
static const rct::key & pk2rct(const crypto::public_key &pk)
Definition: rctTypes.h:660
@ RangeProofBorromean
Definition: rctTypes.h:261
Definition: binary_utils.h:36
Definition: blockchain_ancestry.cpp:72
BOOST_CLASS_VERSION(nodetool::peerlist_types, nodetool::CURRENT_PEERLIST_STORAGE_ARCHIVE_VER)
#define BEGIN_SERIALIZE_OBJECT()
begins the environment of the DSL \detailed for described the serialization of an object
Definition: serialization.h:191
#define FIELD(f)
tags the field with the variable name and then serializes it
Definition: serialization.h:244
#define END_SERIALIZE()
self-explanatory
Definition: serialization.h:215
#define VARINT_FIELD(f)
tags and serializes the varint f
Definition: serialization.h:264
#define false
Definition: stdbool.h:37
Definition: account.h:41
Definition: cryptonote_basic.h:501
Definition: cryptonote_basic.h:464
Definition: subaddress_index.h:39
Definition: cryptonote_tx_utils.h:75
bool is_subaddress
Definition: cryptonote_tx_utils.h:79
std::string address(network_type nettype, const crypto::hash &payment_id) const
Definition: cryptonote_tx_utils.h:86
tx_destination_entry()
Definition: cryptonote_tx_utils.h:82
bool is_integrated
Definition: cryptonote_tx_utils.h:80
tx_destination_entry(uint64_t a, const account_public_address &ad, bool is_subaddress)
Definition: cryptonote_tx_utils.h:83
std::string original
Definition: cryptonote_tx_utils.h:76
uint64_t amount
Definition: cryptonote_tx_utils.h:77
tx_destination_entry(const std::string &o, uint64_t a, const account_public_address &ad, bool is_subaddress)
Definition: cryptonote_tx_utils.h:84
account_public_address addr
Definition: cryptonote_tx_utils.h:78
Definition: cryptonote_tx_utils.h:43
std::vector< crypto::public_key > real_out_additional_tx_keys
Definition: cryptonote_tx_utils.h:49
crypto::public_key real_out_tx_key
Definition: cryptonote_tx_utils.h:48
uint64_t amount
Definition: cryptonote_tx_utils.h:51
rct::multisig_kLRki multisig_kLRki
Definition: cryptonote_tx_utils.h:54
bool rct
Definition: cryptonote_tx_utils.h:52
size_t real_output
Definition: cryptonote_tx_utils.h:47
std::vector< output_entry > outputs
Definition: cryptonote_tx_utils.h:46
rct::key mask
Definition: cryptonote_tx_utils.h:53
void push_output(uint64_t idx, const crypto::public_key &k, uint64_t amount)
Definition: cryptonote_tx_utils.h:56
std::pair< uint64_t, rct::ctkey > output_entry
Definition: cryptonote_tx_utils.h:44
if(real_output >=outputs.size()) return false
size_t real_output_in_tx_index
Definition: cryptonote_tx_utils.h:50
Definition: rctTypes.h:262
Definition: rctTypes.h:97
Definition: rctTypes.h:79
Definition: rctTypes.h:105
Definition: rctTypes.h:114