Electroneum
multisig.h
Go to the documentation of this file.
1 // Copyright (c) 2017-2019, 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
32 #include "chaingen.h"
33 
35 {
37  : m_invalid_tx_index(0)
38  , m_invalid_block_index(0)
39  {
42  }
43 
44  bool check_tx_verification_context(const cryptonote::tx_verification_context& tvc, bool tx_added, size_t event_idx, const cryptonote::transaction& /*tx*/)
45  {
46  if (m_invalid_tx_index == event_idx)
47  return tvc.m_verification_failed;
48  else
49  return !tvc.m_verification_failed && tx_added;
50  }
51 
53  {
54  if (m_invalid_block_index == event_idx)
55  return bvc.m_verification_failed;
56  else
57  return !bvc.m_verification_failed;
58  }
59 
60  bool mark_invalid_block(cryptonote::core& /*c*/, size_t ev_index, const std::vector<test_event_entry>& /*events*/)
61  {
62  m_invalid_block_index = ev_index + 1;
63  return true;
64  }
65 
66  bool mark_invalid_tx(cryptonote::core& /*c*/, size_t ev_index, const std::vector<test_event_entry>& /*events*/)
67  {
68  m_invalid_tx_index = ev_index + 1;
69  return true;
70  }
71 
72  bool generate_with(std::vector<test_event_entry>& events, size_t inputs, size_t mixin,
73  uint64_t amount_paid, bool valid,
74  size_t threshold, size_t total, size_t creator, std::vector<size_t> signers,
75  const std::function<void(std::vector<cryptonote::tx_source_entry> &sources, std::vector<cryptonote::tx_destination_entry> &destinations)> &pre_tx,
76  const std::function<void(cryptonote::transaction &tx)> &post_tx) const;
77 
78 private:
79  size_t m_invalid_tx_index;
80  size_t m_invalid_block_index;
81 };
82 
83 template<>
85  const std::pair<uint8_t, uint64_t> hard_forks[3] = {std::make_pair(1, 0), std::make_pair(4, 1), std::make_pair(0, 0)};
87  hard_forks, 0
88  };
89 };
90 
91 // valid
93 {
94  bool generate(std::vector<test_event_entry>& events) const;
95 };
96 template<> struct get_test_options<gen_multisig_tx_valid_22_1_2>: public get_test_options<gen_multisig_tx_validation_base> {};
97 
99 {
100  bool generate(std::vector<test_event_entry>& events) const;
101 };
102 template<> struct get_test_options<gen_multisig_tx_valid_22_1_2_many_inputs>: public get_test_options<gen_multisig_tx_validation_base> {};
103 
105 {
106  bool generate(std::vector<test_event_entry>& events) const;
107 };
108 template<> struct get_test_options<gen_multisig_tx_valid_22_2_1>: public get_test_options<gen_multisig_tx_validation_base> {};
109 
111 {
112  bool generate(std::vector<test_event_entry>& events) const;
113 };
114 template<> struct get_test_options<gen_multisig_tx_valid_33_1_23>: public get_test_options<gen_multisig_tx_validation_base> {};
115 
117 {
118  bool generate(std::vector<test_event_entry>& events) const;
119 };
120 template<> struct get_test_options<gen_multisig_tx_valid_33_3_21>: public get_test_options<gen_multisig_tx_validation_base> {};
121 
123 {
124  bool generate(std::vector<test_event_entry>& events) const;
125 };
126 template<> struct get_test_options<gen_multisig_tx_valid_23_1_2>: public get_test_options<gen_multisig_tx_validation_base> {};
127 
129 {
130  bool generate(std::vector<test_event_entry>& events) const;
131 };
132 template<> struct get_test_options<gen_multisig_tx_valid_23_1_3>: public get_test_options<gen_multisig_tx_validation_base> {};
133 
135 {
136  bool generate(std::vector<test_event_entry>& events) const;
137 };
138 template<> struct get_test_options<gen_multisig_tx_valid_23_2_1>: public get_test_options<gen_multisig_tx_validation_base> {};
139 
141 {
142  bool generate(std::vector<test_event_entry>& events) const;
143 };
144 template<> struct get_test_options<gen_multisig_tx_valid_23_2_3>: public get_test_options<gen_multisig_tx_validation_base> {};
145 
147 {
148  bool generate(std::vector<test_event_entry>& events) const;
149 };
150 template<> struct get_test_options<gen_multisig_tx_valid_45_1_234>: public get_test_options<gen_multisig_tx_validation_base> {};
151 
153 {
154  bool generate(std::vector<test_event_entry>& events) const;
155 };
156 template<> struct get_test_options<gen_multisig_tx_valid_45_4_135_many_inputs>: public get_test_options<gen_multisig_tx_validation_base> {};
157 
159 {
160  bool generate(std::vector<test_event_entry>& events) const;
161 };
162 template<> struct get_test_options<gen_multisig_tx_valid_89_3_1245789>: public get_test_options<gen_multisig_tx_validation_base> {};
163 
165 {
166  bool generate(std::vector<test_event_entry>& events) const;
167 };
168 template<> struct get_test_options<gen_multisig_tx_valid_24_1_2>: public get_test_options<gen_multisig_tx_validation_base> {};
169 
171 {
172  bool generate(std::vector<test_event_entry>& events) const;
173 };
174 template<> struct get_test_options<gen_multisig_tx_valid_24_1_2_many_inputs>: public get_test_options<gen_multisig_tx_validation_base> {};
175 
177 {
178  bool generate(std::vector<test_event_entry>& events) const;
179 };
180 template<> struct get_test_options<gen_multisig_tx_valid_25_1_2>: public get_test_options<gen_multisig_tx_validation_base> {};
181 
183 {
184  bool generate(std::vector<test_event_entry>& events) const;
185 };
186 template<> struct get_test_options<gen_multisig_tx_valid_25_1_2_many_inputs>: public get_test_options<gen_multisig_tx_validation_base> {};
187 
189 {
190  bool generate(std::vector<test_event_entry>& events) const;
191 };
192 template<> struct get_test_options<gen_multisig_tx_valid_48_1_234>: public get_test_options<gen_multisig_tx_validation_base> {};
193 
195 {
196  bool generate(std::vector<test_event_entry>& events) const;
197 };
198 template<> struct get_test_options<gen_multisig_tx_valid_48_1_234_many_inputs>: public get_test_options<gen_multisig_tx_validation_base> {};
199 
200 // invalid
202 {
203  bool generate(std::vector<test_event_entry>& events) const;
204 };
205 template<> struct get_test_options<gen_multisig_tx_invalid_22_1__no_threshold>: public get_test_options<gen_multisig_tx_validation_base> {};
206 
208 {
209  bool generate(std::vector<test_event_entry>& events) const;
210 };
211 template<> struct get_test_options<gen_multisig_tx_invalid_33_1__no_threshold>: public get_test_options<gen_multisig_tx_validation_base> {};
212 
214 {
215  bool generate(std::vector<test_event_entry>& events) const;
216 };
217 template<> struct get_test_options<gen_multisig_tx_invalid_33_1_2_no_threshold>: public get_test_options<gen_multisig_tx_validation_base> {};
218 
220 {
221  bool generate(std::vector<test_event_entry>& events) const;
222 };
223 template<> struct get_test_options<gen_multisig_tx_invalid_33_1_3_no_threshold>: public get_test_options<gen_multisig_tx_validation_base> {};
224 
226 {
227  bool generate(std::vector<test_event_entry>& events) const;
228 };
229 template<> struct get_test_options<gen_multisig_tx_invalid_23_1__no_threshold>: public get_test_options<gen_multisig_tx_validation_base> {};
230 
232 {
233  bool generate(std::vector<test_event_entry>& events) const;
234 };
235 template<> struct get_test_options<gen_multisig_tx_invalid_45_5_23_no_threshold>: public get_test_options<gen_multisig_tx_validation_base> {};
236 
238 {
239  bool generate(std::vector<test_event_entry>& events) const;
240 };
241 template<> struct get_test_options<gen_multisig_tx_invalid_24_1_no_signers>: public get_test_options<gen_multisig_tx_validation_base> {};
242 
244 {
245  bool generate(std::vector<test_event_entry>& events) const;
246 };
247 template<> struct get_test_options<gen_multisig_tx_invalid_25_1_no_signers>: public get_test_options<gen_multisig_tx_validation_base> {};
248 
250 {
251  bool generate(std::vector<test_event_entry>& events) const;
252 };
253 template<> struct get_test_options<gen_multisig_tx_invalid_48_1_no_signers>: public get_test_options<gen_multisig_tx_validation_base> {};
254 
256 {
257  bool generate(std::vector<test_event_entry>& events) const;
258 };
259 template<> struct get_test_options<gen_multisig_tx_invalid_48_1_23_no_threshold>: public get_test_options<gen_multisig_tx_validation_base> {};
bool generate(std::vector< test_event_entry > &events) const
Definition: multisig.cpp:521
bool generate(std::vector< test_event_entry > &events) const
Definition: multisig.cpp:605
bool generate(std::vector< test_event_entry > &events) const
Definition: multisig.cpp:626
bool generate(std::vector< test_event_entry > &events) const
Definition: multisig.cpp:542
bool generate(std::vector< test_event_entry > &events) const
Definition: multisig.cpp:493
bool generate(std::vector< test_event_entry > &events) const
Definition: multisig.cpp:668
bool generate(std::vector< test_event_entry > &events) const
Definition: multisig.cpp:612
bool mark_invalid_tx(cryptonote::core &, size_t ev_index, const std::vector< test_event_entry > &)
Definition: multisig.h:66
bool generate(std::vector< test_event_entry > &events) const
Definition: multisig.cpp:563
bool generate(std::vector< test_event_entry > &events) const
Definition: multisig.cpp:556
bool generate(std::vector< test_event_entry > &events) const
Definition: multisig.cpp:577
bool generate(std::vector< test_event_entry > &events) const
Definition: multisig.cpp:528
bool generate(std::vector< test_event_entry > &events) const
Definition: multisig.cpp:619
bool generate(std::vector< test_event_entry > &events) const
Definition: multisig.cpp:500
bool generate(std::vector< test_event_entry > &events) const
Definition: multisig.cpp:570
bool generate(std::vector< test_event_entry > &events) const
Definition: multisig.cpp:640
bool generate(std::vector< test_event_entry > &events) const
Definition: multisig.cpp:584
bool generate_with(std::vector< test_event_entry > &events, size_t inputs, size_t mixin, uint64_t amount_paid, bool valid, size_t threshold, size_t total, size_t creator, std::vector< size_t > signers, const std::function< void(std::vector< cryptonote::tx_source_entry > &sources, std::vector< cryptonote::tx_destination_entry > &destinations)> &pre_tx, const std::function< void(cryptonote::transaction &tx)> &post_tx) const
Definition: multisig.cpp:128
bool generate(std::vector< test_event_entry > &events) const
Definition: multisig.cpp:661
bool generate(std::vector< test_event_entry > &events) const
Definition: multisig.cpp:647
const std::pair< uint8_t, uint64_t > hard_forks[2]
Definition: chaingen.h:698
bool generate(std::vector< test_event_entry > &events) const
Definition: multisig.cpp:654
bool generate(std::vector< test_event_entry > &events) const
Definition: multisig.cpp:549
handles core cryptonote functionality
unsigned __int64 uint64_t
Definition: stdint.h:136
bool generate(std::vector< test_event_entry > &events) const
Definition: multisig.cpp:514
bool generate(std::vector< test_event_entry > &events) const
Definition: multisig.cpp:479
#define REGISTER_CALLBACK_METHOD(CLASS, METHOD)
Definition: chaingen.h:830
bool generate(std::vector< test_event_entry > &events) const
Definition: multisig.cpp:591
bool generate(std::vector< test_event_entry > &events) const
Definition: multisig.cpp:535
bool generate(std::vector< test_event_entry > &events) const
Definition: multisig.cpp:633
bool generate(std::vector< test_event_entry > &events) const
Definition: multisig.cpp:598
bool generate(std::vector< test_event_entry > &events) const
Definition: multisig.cpp:486
const cryptonote::test_options test_options
Definition: chaingen.h:699
bool mark_invalid_block(cryptonote::core &, size_t ev_index, const std::vector< test_event_entry > &)
Definition: multisig.h:60
bool check_tx_verification_context(const cryptonote::tx_verification_context &tvc, bool tx_added, size_t event_idx, const cryptonote::transaction &)
Definition: multisig.h:44
bool generate(std::vector< test_event_entry > &events) const
Definition: multisig.cpp:507
bool check_block_verification_context(const cryptonote::block_verification_context &bvc, size_t event_idx, const cryptonote::block &)
Definition: multisig.h:52
uint8_t threshold
Definition: blockchain.cpp:92