Monero
Loading...
Searching...
No Matches
multisig.h
Go to the documentation of this file.
1// Copyright (c) 2017-2022, 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{
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_verifivation_failed;
48 else
49 return !tvc.m_verifivation_failed && tx_added;
50 }
51
53 {
54 if (m_invalid_block_index == event_idx)
55 return bvc.m_verifivation_failed;
56 else
57 return !bvc.m_verifivation_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> other_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
78private:
81};
82
83template<>
85 const std::pair<uint8_t, uint64_t> hard_forks[3] = {std::make_pair(1, 0), std::make_pair(HF_VERSION_BULLETPROOF_PLUS, 1), std::make_pair(0, 0)};
89};
90
91// valid
93{
94 bool generate(std::vector<test_event_entry>& events) const;
95};
96template<> 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};
102template<> 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};
108template<> 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};
114template<> 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};
120template<> 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};
126template<> 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};
132template<> 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};
138template<> 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};
144template<> 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};
150template<> 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};
156template<> 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};
162template<> 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};
168template<> 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};
174template<> 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};
180template<> 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};
186template<> 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};
192template<> 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};
198template<> 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};
205template<> 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};
211template<> 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};
217template<> 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};
223template<> 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};
229template<> 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};
235template<> 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};
241template<> 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};
247template<> 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};
253template<> 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};
259template<> struct get_test_options<gen_multisig_tx_invalid_48_1_23_no_threshold>: public get_test_options<gen_multisig_tx_validation_base> {};
#define REGISTER_CALLBACK_METHOD(CLASS, METHOD)
Definition chaingen.h:859
handles core cryptonote functionality
Definition cryptonote_core.h:87
Definition cryptonote_basic.h:205
Definition chaingen.h:166
#define HF_VERSION_BULLETPROOF_PLUS
Definition cryptonote_config.h:192
unsigned __int64 uint64_t
Definition stdint.h:136
Definition verification_context.h:66
bool m_verifivation_failed
Definition verification_context.h:68
Definition cryptonote_basic.h:475
Definition cryptonote_core.h:61
Definition verification_context.h:41
bool m_verifivation_failed
Definition verification_context.h:45
bool generate(std::vector< test_event_entry > &events) const
Definition multisig.cpp:584
bool generate(std::vector< test_event_entry > &events) const
Definition multisig.cpp:612
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: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:605
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:619
bool generate(std::vector< test_event_entry > &events) const
Definition multisig.cpp:647
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:465
Definition multisig.h:93
bool generate(std::vector< test_event_entry > &events) const
Definition multisig.cpp:458
Definition multisig.h:105
bool generate(std::vector< test_event_entry > &events) const
Definition multisig.cpp:472
Definition multisig.h:123
bool generate(std::vector< test_event_entry > &events) const
Definition multisig.cpp:493
Definition multisig.h:129
bool generate(std::vector< test_event_entry > &events) const
Definition multisig.cpp:500
Definition multisig.h:135
bool generate(std::vector< test_event_entry > &events) const
Definition multisig.cpp:507
Definition multisig.h:141
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:549
Definition multisig.h:165
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:563
Definition multisig.h:177
bool generate(std::vector< test_event_entry > &events) const
Definition multisig.cpp:556
Definition multisig.h:111
bool generate(std::vector< test_event_entry > &events) const
Definition multisig.cpp:479
Definition multisig.h:117
bool generate(std::vector< test_event_entry > &events) const
Definition multisig.cpp:486
Definition multisig.h:147
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:528
bool generate(std::vector< test_event_entry > &events) const
Definition multisig.cpp:577
Definition multisig.h:189
bool generate(std::vector< test_event_entry > &events) const
Definition multisig.cpp:570
Definition multisig.h:159
bool generate(std::vector< test_event_entry > &events) const
Definition multisig.cpp:535
Definition multisig.h:35
bool check_block_verification_context(const cryptonote::block_verification_context &bvc, size_t event_idx, const cryptonote::block &)
Definition multisig.h:52
bool mark_invalid_tx(cryptonote::core &, size_t ev_index, const std::vector< test_event_entry > &)
Definition multisig.h:66
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 > other_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:119
bool mark_invalid_block(cryptonote::core &, size_t ev_index, const std::vector< test_event_entry > &)
Definition multisig.h:60
size_t m_invalid_tx_index
Definition multisig.h:79
size_t m_invalid_block_index
Definition multisig.h:80
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
gen_multisig_tx_validation_base()
Definition multisig.h:36
const std::pair< uint8_t, uint64_t > hard_forks[3]
Definition multisig.h:85
const cryptonote::test_options test_options
Definition multisig.h:86
cryptonote::transaction tx
Definition transaction.cpp:40