Line data Source code
1 : #include "fd_dump_pb.h"
2 : #include "generated/block.pb.h"
3 : #include "generated/instr.pb.h"
4 : #include "generated/txn.pb.h"
5 : #include "generated/vm.pb.h"
6 : #include "../fd_system_ids.h"
7 : #include "../fd_bank.h"
8 : #include "../fd_runtime.h"
9 : #include "../fd_alut.h"
10 : #include "../program/fd_precompiles.h"
11 : #include "../../../third_party/nanopb/pb_encode.h"
12 : #include "../fd_runtime_stack.h"
13 : #include "../../../util/fd_hash32.h"
14 :
15 : #include <stdio.h> /* fopen */
16 : #include <unistd.h> /* access */
17 :
18 :
19 : struct fd_dump_account_key {
20 : fd_pubkey_t key;
21 : };
22 : typedef struct fd_dump_account_key fd_dump_account_t;
23 :
24 0 : #define FD_DUMP_ACCOUNT_KEY_MAP_LG_SLOT_CNT (20)
25 :
26 : #define MAP_NAME fd_dump_account_key_map
27 0 : #define MAP_T fd_dump_account_t
28 0 : #define MAP_LG_SLOT_CNT FD_DUMP_ACCOUNT_KEY_MAP_LG_SLOT_CNT
29 0 : #define MAP_KEY_T fd_pubkey_t
30 0 : #define MAP_KEY_NULL fd_solana_system_program_id
31 0 : #define MAP_KEY_INVAL(k) fd_pubkey_eq( &(k), &fd_solana_system_program_id )
32 0 : #define MAP_KEY_EQUAL(k0,k1) fd_pubkey_eq( &(k0), &(k1) )
33 : #define MAP_KEY_EQUAL_IS_SLOW (0)
34 : #define MAP_MEMOIZE (0)
35 0 : #define MAP_KEY_HASH(key) ((uint)fd_hash32( (key).uc, 0UL ))
36 : #include "../../../util/tmpl/fd_map.c"
37 :
38 : struct fd_dump_account_key_set {
39 : fd_dump_account_t * map;
40 : ulong cnt;
41 : uchar system_program_dumped;
42 : };
43 : typedef struct fd_dump_account_key_set fd_dump_account_key_set_t;
44 :
45 : struct fd_dump_account_key_iter {
46 : fd_dump_account_key_set_t const * set;
47 : ulong slot_idx;
48 : uchar system_program;
49 : };
50 : typedef struct fd_dump_account_key_iter fd_dump_account_key_iter_t;
51 :
52 : static void
53 0 : fd_dump_account_key_iter_advance_map( fd_dump_account_key_iter_t * iter ) {
54 0 : while( iter->slot_idx<fd_dump_account_key_map_slot_cnt() &&
55 0 : fd_dump_account_key_map_key_inval( iter->set->map[iter->slot_idx].key ) ) {
56 0 : iter->slot_idx++;
57 0 : }
58 0 : }
59 :
60 : static fd_dump_account_key_iter_t *
61 : fd_dump_account_key_iter_init( fd_dump_account_key_iter_t * iter,
62 0 : fd_dump_account_key_set_t const * set ) {
63 0 : iter->set = set;
64 0 : iter->slot_idx = 0UL;
65 0 : iter->system_program = set->system_program_dumped;
66 0 : if( !iter->system_program ) fd_dump_account_key_iter_advance_map( iter );
67 0 : return iter;
68 0 : }
69 :
70 : static int
71 0 : fd_dump_account_key_iter_done( fd_dump_account_key_iter_t const * iter ) {
72 0 : return (!iter->system_program) & (iter->slot_idx>=fd_dump_account_key_map_slot_cnt());
73 0 : }
74 :
75 : static fd_pubkey_t const *
76 0 : fd_dump_account_key_iter_ele( fd_dump_account_key_iter_t const * iter ) {
77 0 : return iter->system_program ? &fd_solana_system_program_id : &iter->set->map[iter->slot_idx].key;
78 0 : }
79 :
80 : static void
81 0 : fd_dump_account_key_iter_next( fd_dump_account_key_iter_t * iter ) {
82 0 : if( iter->system_program ) {
83 0 : iter->system_program = 0;
84 0 : } else {
85 0 : iter->slot_idx++;
86 0 : }
87 0 : fd_dump_account_key_iter_advance_map( iter );
88 0 : }
89 :
90 : /***** CONSTANTS *****/
91 : static fd_pubkey_t const * fd_dump_sysvar_ids[] = {
92 : &fd_sysvar_recent_block_hashes_id,
93 : &fd_sysvar_clock_id,
94 : &fd_sysvar_slot_history_id,
95 : &fd_sysvar_slot_hashes_id,
96 : &fd_sysvar_epoch_schedule_id,
97 : &fd_sysvar_epoch_rewards_id,
98 : &fd_sysvar_fees_id,
99 : &fd_sysvar_rent_id,
100 : &fd_sysvar_stake_history_id,
101 : &fd_sysvar_last_restart_slot_id,
102 : &fd_sysvar_instructions_id,
103 : };
104 : static ulong const num_sysvar_entries = (sizeof(fd_dump_sysvar_ids) / sizeof(fd_pubkey_t *));
105 :
106 : static fd_pubkey_t const * fd_dump_builtin_ids[] = {
107 : &fd_solana_system_program_id,
108 : &fd_solana_vote_program_id,
109 : &fd_solana_stake_program_id,
110 : &fd_solana_bpf_loader_v4_program_id,
111 : &fd_solana_bpf_loader_deprecated_program_id,
112 : &fd_solana_bpf_loader_program_id,
113 : &fd_solana_bpf_loader_upgradeable_program_id,
114 : &fd_solana_compute_budget_program_id,
115 : &fd_solana_keccak_secp_256k_program_id,
116 : &fd_solana_secp256r1_program_id,
117 : &fd_solana_zk_elgamal_proof_program_id,
118 : &fd_solana_ed25519_sig_verify_program_id,
119 : };
120 : static ulong const num_loaded_builtins = (sizeof(fd_dump_builtin_ids) / sizeof(fd_pubkey_t *));
121 :
122 : /***** UTILITY FUNCTIONS *****/
123 :
124 : /** FEATURE DUMPING **/
125 : static void
126 : dump_sorted_features( fd_features_t const * features,
127 : fd_exec_test_feature_set_t * output_feature_set,
128 0 : fd_spad_t * spad ) {
129 : /* NOTE: Caller must have a spad frame prepared */
130 0 : uint64_t * unsorted_features = fd_spad_alloc( spad, alignof(uint64_t), FD_FEATURE_ID_CNT * sizeof(uint64_t) );
131 0 : ulong num_features = 0;
132 0 : for( const fd_feature_id_t * current_feature = fd_feature_iter_init(); !fd_feature_iter_done( current_feature ); current_feature = fd_feature_iter_next( current_feature ) ) {
133 0 : if (features->f[current_feature->index] != FD_FEATURE_DISABLED) {
134 0 : unsorted_features[num_features++] = (uint64_t) current_feature->id.ul[0];
135 0 : }
136 0 : }
137 :
138 : // Set feature set in message
139 0 : output_feature_set->features_count = (pb_size_t)num_features;
140 0 : output_feature_set->features = unsorted_features;
141 0 : }
142 :
143 : /** ACCOUNT DUMPING **/
144 : static void
145 : dump_account_state( fd_acc_t const * acc,
146 : fd_exec_test_acct_state_t * output_account,
147 0 : fd_spad_t * spad ) {
148 : // Address
149 0 : fd_memcpy(output_account->address, acc->pubkey, sizeof(fd_pubkey_t));
150 :
151 : // Lamports
152 0 : output_account->lamports = (uint64_t)acc->lamports;
153 :
154 : // Data
155 0 : output_account->data = fd_spad_alloc( spad, alignof(pb_bytes_array_t), PB_BYTES_ARRAY_T_ALLOCSIZE( acc->data_len ) );
156 0 : output_account->data->size = (pb_size_t) acc->data_len;
157 0 : fd_memcpy(output_account->data->bytes, acc->data, acc->data_len );
158 :
159 : // Executable
160 0 : output_account->executable = (bool)acc->executable;
161 :
162 : // Owner
163 0 : fd_memcpy(output_account->owner, acc->owner, sizeof(fd_pubkey_t));
164 0 : }
165 :
166 : static uchar
167 : account_already_dumped( fd_exec_test_acct_state_t const * dumped_accounts,
168 : ulong dumped_cnt,
169 0 : fd_pubkey_t const * account_key ) {
170 0 : for( ulong i=0UL; i<dumped_cnt; i++ ) {
171 0 : if( !memcmp( account_key, dumped_accounts[i].address, sizeof(fd_pubkey_t) ) ) {
172 0 : return 1;
173 0 : }
174 0 : }
175 0 : return 0;
176 0 : }
177 :
178 : /* Dumps a borrowed account if it exists and has not been dumped yet.
179 : Sets up the output borrowed account if it exists. Returns 0 if the
180 : account exists, 1 otherwise.
181 : TODO: This can be optimized by using a set. */
182 : static uchar
183 : dump_account_if_not_already_dumped( fd_accdb_t * accdb,
184 : fd_accdb_fork_id_t fork_id,
185 : fd_pubkey_t const * account_key,
186 : fd_spad_t * spad,
187 : fd_exec_test_acct_state_t * out_acct_states,
188 : pb_size_t * out_acct_states_cnt,
189 0 : fd_acc_t * out_ro ) {
190 0 : fd_acc_t ro = fd_accdb_read_one( accdb, fork_id, account_key->uc );
191 0 : if( FD_UNLIKELY( !ro.lamports ) ) {
192 0 : fd_accdb_unread_one( accdb, &ro );
193 0 : return 1;
194 0 : }
195 :
196 0 : if( !account_already_dumped( out_acct_states, *out_acct_states_cnt, account_key ) ) {
197 0 : dump_account_state( &ro, &out_acct_states[*out_acct_states_cnt], spad );
198 0 : (*out_acct_states_cnt)++;
199 0 : }
200 :
201 0 : if( out_ro ) {
202 0 : *out_ro = ro;
203 0 : } else {
204 0 : fd_accdb_unread_one( accdb, &ro );
205 0 : }
206 0 : return 0;
207 0 : }
208 :
209 : static void
210 : dump_executable_account_if_exists( fd_accdb_t * accdb,
211 : fd_accdb_fork_id_t fork_id,
212 : fd_exec_test_acct_state_t const * program_account,
213 : fd_spad_t * spad,
214 : fd_exec_test_acct_state_t * out_account_states,
215 0 : pb_size_t * out_account_states_count ) {
216 0 : if( FD_LIKELY( memcmp( program_account->owner, fd_solana_bpf_loader_upgradeable_program_id.key, sizeof(fd_pubkey_t) ) ) ) {
217 0 : return;
218 0 : }
219 :
220 0 : fd_bpf_state_t program_loader_state[1];
221 0 : if( FD_UNLIKELY( fd_bpf_state_decode(
222 0 : program_loader_state,
223 0 : program_account->data->bytes,
224 0 : program_account->data->size ) ) ) {
225 0 : return;
226 0 : }
227 0 : if( program_loader_state->discriminant!=FD_BPF_STATE_PROGRAM ) {
228 0 : return;
229 0 : }
230 :
231 0 : fd_pubkey_t * programdata_acc = &program_loader_state->inner.program.programdata_address;
232 0 : dump_account_if_not_already_dumped( accdb, fork_id, programdata_acc, spad, out_account_states, out_account_states_count, NULL );
233 0 : }
234 :
235 : static void
236 : dump_sanitized_transaction( fd_accdb_t * accdb,
237 : fd_accdb_fork_id_t fork_id,
238 : fd_txn_t const * txn_descriptor,
239 : uchar const * txn_payload,
240 : fd_spad_t * spad,
241 0 : fd_exec_test_sanitized_transaction_t * sanitized_transaction ) {
242 0 : fd_txn_acct_addr_lut_t const * address_lookup_tables = fd_txn_get_address_tables_const( txn_descriptor );
243 :
244 : /* Transaction Context -> tx -> message */
245 0 : sanitized_transaction->has_message = true;
246 0 : fd_exec_test_transaction_message_t * message = &sanitized_transaction->message;
247 :
248 : /* Transaction Context -> tx -> message -> is_legacy */
249 0 : message->is_legacy = txn_descriptor->transaction_version == FD_TXN_VLEGACY;
250 :
251 : /* Transaction Context -> tx -> message -> header */
252 0 : message->has_header = true;
253 0 : fd_exec_test_message_header_t * header = &message->header;
254 :
255 : /* Transaction Context -> tx -> message -> header -> num_required_signatures */
256 0 : header->num_required_signatures = txn_descriptor->signature_cnt;
257 :
258 : /* Transaction Context -> tx -> message -> header -> num_readonly_signed_accounts */
259 0 : header->num_readonly_signed_accounts = txn_descriptor->readonly_signed_cnt;
260 :
261 : /* Transaction Context -> tx -> message -> header -> num_readonly_unsigned_accounts */
262 0 : header->num_readonly_unsigned_accounts = txn_descriptor->readonly_unsigned_cnt;
263 :
264 : /* Transaction Context -> tx -> message -> account_keys */
265 0 : message->account_keys_count = txn_descriptor->acct_addr_cnt;
266 0 : message->account_keys = fd_spad_alloc( spad, alignof(pb_bytes_array_t *), PB_BYTES_ARRAY_T_ALLOCSIZE(txn_descriptor->acct_addr_cnt * sizeof(pb_bytes_array_t *)) );
267 0 : fd_acct_addr_t const * account_keys = fd_txn_get_acct_addrs( txn_descriptor, txn_payload );
268 0 : for( ulong i = 0; i < txn_descriptor->acct_addr_cnt; i++ ) {
269 0 : pb_bytes_array_t * account_key = fd_spad_alloc( spad, alignof(pb_bytes_array_t), PB_BYTES_ARRAY_T_ALLOCSIZE(sizeof(fd_pubkey_t)) );
270 0 : account_key->size = sizeof(fd_pubkey_t);
271 0 : memcpy( account_key->bytes, &account_keys[i], sizeof(fd_pubkey_t) );
272 0 : message->account_keys[i] = account_key;
273 0 : }
274 :
275 : /* Transaction Context -> tx -> message -> recent_blockhash */
276 0 : uchar const * recent_blockhash = fd_txn_get_recent_blockhash( txn_descriptor, txn_payload );
277 0 : memcpy( message->recent_blockhash, recent_blockhash, sizeof(fd_hash_t) );
278 :
279 : /* Transaction Context -> tx -> message -> instructions */
280 0 : message->instructions_count = txn_descriptor->instr_cnt;
281 0 : message->instructions = fd_spad_alloc( spad, alignof(fd_exec_test_compiled_instruction_t), txn_descriptor->instr_cnt * sizeof(fd_exec_test_compiled_instruction_t) );
282 0 : for( ulong i = 0; i < txn_descriptor->instr_cnt; ++i ) {
283 0 : fd_txn_instr_t instr = txn_descriptor->instr[i];
284 0 : fd_exec_test_compiled_instruction_t * compiled_instruction = &message->instructions[i];
285 :
286 : // compiled instruction -> program_id_index
287 0 : compiled_instruction->program_id_index = instr.program_id;
288 :
289 : // compiled instruction -> accounts
290 0 : compiled_instruction->accounts_count = instr.acct_cnt;
291 0 : compiled_instruction->accounts = fd_spad_alloc( spad, alignof(uint32_t), instr.acct_cnt * sizeof(uint32_t) );
292 0 : uchar const * instr_accounts = fd_txn_get_instr_accts( &instr, txn_payload );
293 0 : for( ulong j = 0; j < instr.acct_cnt; ++j ) {
294 0 : uchar instr_acct_index = instr_accounts[j];
295 0 : compiled_instruction->accounts[j] = instr_acct_index;
296 0 : }
297 :
298 : // compiled instruction -> data
299 0 : uchar const * instr_data = fd_txn_get_instr_data( &instr, txn_payload );
300 0 : compiled_instruction->data = fd_spad_alloc( spad, alignof(pb_bytes_array_t), PB_BYTES_ARRAY_T_ALLOCSIZE(instr.data_sz) );
301 0 : compiled_instruction->data->size = instr.data_sz;
302 0 : memcpy( compiled_instruction->data->bytes, instr_data, instr.data_sz );
303 0 : }
304 :
305 : /* ALUT stuff (non-legacy) */
306 0 : message->address_table_lookups_count = 0;
307 0 : if( !message->is_legacy ) {
308 : /* Transaction Context -> tx -> message -> address_table_lookups */
309 0 : message->address_table_lookups_count = txn_descriptor->addr_table_lookup_cnt;
310 0 : message->address_table_lookups = fd_spad_alloc( spad,
311 0 : alignof(fd_exec_test_message_address_table_lookup_t),
312 0 : txn_descriptor->addr_table_lookup_cnt * sizeof(fd_exec_test_message_address_table_lookup_t) );
313 0 : for( ulong i = 0; i < txn_descriptor->addr_table_lookup_cnt; ++i ) {
314 : // alut -> account_key
315 0 : fd_pubkey_t * alut_key = (fd_pubkey_t *) (txn_payload + address_lookup_tables[i].addr_off);
316 0 : memcpy( message->address_table_lookups[i].account_key, alut_key, sizeof(fd_pubkey_t) );
317 :
318 : // Access ALUT account data to access its keys
319 0 : fd_acc_t acc = fd_accdb_read_one( accdb, fork_id, alut_key->uc );
320 0 : if( FD_UNLIKELY( !acc.lamports ) ) FD_LOG_ERR(( "addr lut not found" ));
321 :
322 : // alut -> writable_indexes
323 0 : message->address_table_lookups[i].writable_indexes_count = address_lookup_tables[i].writable_cnt;
324 0 : message->address_table_lookups[i].writable_indexes = fd_spad_alloc( spad, alignof(uint32_t), address_lookup_tables[i].writable_cnt * sizeof(uint32_t) );
325 0 : uchar * writable_indexes = (uchar *) (txn_payload + address_lookup_tables[i].writable_off);
326 0 : for( ulong j = 0; j < address_lookup_tables[i].writable_cnt; ++j ) {
327 0 : message->address_table_lookups[i].writable_indexes[j] = writable_indexes[j];
328 0 : }
329 :
330 : // alut -> readonly_indexes
331 0 : message->address_table_lookups[i].readonly_indexes_count = address_lookup_tables[i].readonly_cnt;
332 0 : message->address_table_lookups[i].readonly_indexes = fd_spad_alloc( spad, alignof(uint32_t), address_lookup_tables[i].readonly_cnt * sizeof(uint32_t) );
333 0 : uchar * readonly_indexes = (uchar *) (txn_payload + address_lookup_tables[i].readonly_off);
334 0 : for( ulong j = 0; j < address_lookup_tables[i].readonly_cnt; ++j ) {
335 0 : message->address_table_lookups[i].readonly_indexes[j] = readonly_indexes[j];
336 0 : }
337 :
338 0 : fd_accdb_unread_one( accdb, &acc );
339 0 : }
340 0 : }
341 :
342 : /* Transaction Context -> tx -> message_hash */
343 : // Skip because it does not matter what's in here
344 :
345 : /* Transaction Context -> tx -> signatures */
346 0 : sanitized_transaction->signatures_count = txn_descriptor->signature_cnt;
347 0 : sanitized_transaction->signatures = fd_spad_alloc( spad, alignof(pb_bytes_array_t *), PB_BYTES_ARRAY_T_ALLOCSIZE(txn_descriptor->signature_cnt * sizeof(pb_bytes_array_t *)) );
348 0 : fd_ed25519_sig_t const * signatures = fd_txn_get_signatures( txn_descriptor, txn_payload );
349 0 : for( uchar i = 0; i < txn_descriptor->signature_cnt; ++i ) {
350 0 : pb_bytes_array_t * signature = fd_spad_alloc( spad, alignof(pb_bytes_array_t), PB_BYTES_ARRAY_T_ALLOCSIZE(sizeof(fd_ed25519_sig_t)) );
351 0 : signature->size = sizeof(fd_ed25519_sig_t);
352 0 : memcpy( signature->bytes, &signatures[i], sizeof(fd_ed25519_sig_t) );
353 0 : sanitized_transaction->signatures[i] = signature;
354 0 : }
355 0 : }
356 :
357 : static void
358 : dump_fee_rate_governor( fd_bank_t * bank,
359 0 : fd_exec_test_fee_rate_governor_t * out ) {
360 0 : fd_fee_rate_governor_t const * frg = &bank->f.fee_rate_governor;
361 0 : *out = (fd_exec_test_fee_rate_governor_t){
362 0 : .target_lamports_per_signature = frg->target_lamports_per_signature,
363 0 : .target_signatures_per_slot = frg->target_signatures_per_slot,
364 0 : .min_lamports_per_signature = frg->min_lamports_per_signature,
365 0 : .max_lamports_per_signature = frg->max_lamports_per_signature,
366 0 : .burn_percent = frg->burn_percent,
367 0 : };
368 0 : }
369 :
370 : static void
371 : dump_blockhash_queue( fd_bank_t * bank,
372 : fd_spad_t * spad,
373 : fd_exec_test_blockhash_queue_entry_t ** entries_out,
374 0 : pb_size_t * count_out ) {
375 0 : fd_blockhashes_t const * bhq = &bank->f.block_hash_queue;
376 0 : ulong bhq_size = fd_ulong_min( FD_BLOCKHASHES_MAX, fd_blockhash_deq_cnt( bhq->d.deque ) );
377 :
378 0 : fd_exec_test_blockhash_queue_entry_t * entries = fd_spad_alloc( spad,
379 0 : alignof(fd_exec_test_blockhash_queue_entry_t),
380 0 : bhq_size * sizeof(fd_exec_test_blockhash_queue_entry_t) );
381 :
382 0 : ulong cnt = 0UL;
383 0 : for( fd_blockhash_deq_iter_t iter=fd_blockhash_deq_iter_init_rev( bhq->d.deque );
384 0 : !fd_blockhash_deq_iter_done_rev( bhq->d.deque, iter ) && cnt<bhq_size;
385 0 : iter=fd_blockhash_deq_iter_prev( bhq->d.deque, iter ), cnt++ ) {
386 0 : fd_blockhash_info_t const * ele = fd_blockhash_deq_iter_ele_const( bhq->d.deque, iter );
387 0 : fd_exec_test_blockhash_queue_entry_t * entry = &entries[bhq_size-cnt-1UL];
388 0 : fd_memcpy( entry->blockhash, ele->hash.uc, sizeof(fd_hash_t) );
389 0 : entry->lamports_per_signature = ele->lamports_per_signature;
390 0 : }
391 :
392 0 : *entries_out = entries;
393 0 : *count_out = (pb_size_t)bhq_size;
394 0 : }
395 :
396 : static void
397 : dump_txn_bank( fd_bank_t * bank,
398 : fd_spad_t * spad,
399 0 : fd_exec_test_txn_context_t * txn_context ) {
400 0 : txn_context->has_bank = true;
401 0 : fd_exec_test_txn_bank_t * txn_bank = &txn_context->bank;
402 :
403 : /* TxnBank -> blockhash_queue */
404 0 : dump_blockhash_queue( bank, spad, &txn_bank->blockhash_queue, &txn_bank->blockhash_queue_count );
405 :
406 : /* TxnBank -> rbh_lamports_per_signature */
407 0 : txn_bank->rbh_lamports_per_signature = (uint)bank->f.rbh_lamports_per_sig;
408 :
409 : /* TxnBank -> fee_rate_governor */
410 0 : txn_bank->has_fee_rate_governor = true;
411 0 : dump_fee_rate_governor( bank, &txn_bank->fee_rate_governor );
412 :
413 : /* TxnBank -> total_epoch_stake */
414 0 : txn_bank->total_epoch_stake = bank->f.total_epoch_stake;
415 :
416 : /* TxnBank -> features */
417 0 : txn_bank->has_features = true;
418 0 : dump_sorted_features( &bank->f.features, &txn_bank->features, spad );
419 0 : }
420 :
421 : /** SECONDARY FUNCTIONS **/
422 :
423 : /* add_account_to_dumped_accounts adds an account to the dumped accounts
424 : set if it does not exist already. Returns 0 if the account already
425 : exists, and 1 if the account was added successfully.
426 :
427 : TODO: Txn dumping should be optimized to use these functions. */
428 : static uchar
429 : add_account_to_dumped_accounts( fd_dump_account_key_set_t * dumped_accounts,
430 0 : fd_pubkey_t const * pubkey ) {
431 0 : if( fd_pubkey_eq( pubkey, &fd_solana_system_program_id ) ) {
432 0 : if( dumped_accounts->system_program_dumped ) return 0;
433 0 : dumped_accounts->system_program_dumped = 1;
434 0 : dumped_accounts->cnt++;
435 0 : return 1;
436 0 : }
437 :
438 : /* If the key already exists, return early. */
439 0 : if( fd_dump_account_key_map_query( dumped_accounts->map, *pubkey, NULL ) ) {
440 0 : return 0;
441 0 : }
442 :
443 0 : if( FD_UNLIKELY( dumped_accounts->cnt-dumped_accounts->system_program_dumped>=fd_dump_account_key_map_key_max() ) ) {
444 0 : FD_LOG_CRIT(( "too many dumped accounts for fd_dump_account_key_map" ));
445 0 : }
446 0 : fd_dump_account_t * new_ele = fd_dump_account_key_map_insert( dumped_accounts->map, *pubkey );
447 0 : if( FD_UNLIKELY( !new_ele ) ) FD_LOG_CRIT(( "fd_dump_account_key_map_insert failed" ));
448 0 : dumped_accounts->cnt++;
449 0 : return 1;
450 0 : }
451 :
452 : /* add_account_and_programdata_to_dumped_accounts adds an account and
453 : its programdata account (if the account is a v3 program) to the
454 : dumped accounts set if they do not exist already. */
455 : static void
456 : add_account_and_programdata_to_dumped_accounts( fd_accdb_t * accdb,
457 : fd_accdb_fork_id_t fork_id,
458 : fd_dump_account_key_set_t * dumped_accounts,
459 0 : fd_pubkey_t const * pubkey ) {
460 : /* Add the current account to the dumped accounts set. We can save
461 : some time by enforcing an invariant that "if current account was
462 : dumped, then programdata account was also dumped," so we save
463 : ourselves a call to accdb. */
464 0 : uchar ret = add_account_to_dumped_accounts( dumped_accounts, pubkey );
465 0 : if( ret==0 ) return;
466 :
467 : /* Read the account from accdb to see if its a program account and if
468 : it needs to be dumped. */
469 0 : fd_acc_t program_account = fd_accdb_read_one( accdb, fork_id, pubkey->uc );
470 0 : if( FD_UNLIKELY( !program_account.lamports ) ) {
471 0 : fd_accdb_unread_one( accdb, &program_account );
472 0 : return;
473 0 : }
474 :
475 : /* Return if its not owned by the v3 loader */
476 0 : if( FD_LIKELY( !fd_pubkey_eq( (fd_pubkey_t*)program_account.owner, &fd_solana_bpf_loader_upgradeable_program_id ) ) ) {
477 0 : fd_accdb_unread_one( accdb, &program_account );
478 0 : return;
479 0 : }
480 :
481 : /* Get the program account state */
482 0 : fd_bpf_state_t program_account_state[1];
483 0 : if( FD_UNLIKELY( fd_bpf_state_decode(
484 0 : program_account_state,
485 0 : program_account.data,
486 0 : program_account.data_len ) ) ) {
487 0 : fd_accdb_unread_one( accdb, &program_account );
488 0 : return;
489 0 : }
490 0 : if( program_account_state->discriminant!=FD_BPF_STATE_PROGRAM ) {
491 0 : fd_accdb_unread_one( accdb, &program_account );
492 0 : return;
493 0 : }
494 :
495 : /* Dump the programdata address */
496 0 : add_account_to_dumped_accounts( dumped_accounts, &program_account_state->inner.program.programdata_address );
497 0 : fd_accdb_unread_one( accdb, &program_account );
498 0 : }
499 :
500 : /* add_lut_account_to_dumped_accounts adds an address lookup table
501 : account AND all pubkeys in the lookup table to the dumped accounts
502 : set if they do not exist already. */
503 : static void
504 : add_lut_accounts_to_dumped_accounts( fd_accdb_t * accdb,
505 : fd_accdb_fork_id_t fork_id,
506 : fd_dump_account_key_set_t * dumped_accounts,
507 0 : fd_pubkey_t const * pubkey ) {
508 : /* Add the current account to the dumped accounts set. */
509 0 : add_account_to_dumped_accounts( dumped_accounts, pubkey );
510 :
511 : /* Read the account and dump all pubkeys within the lookup table. */
512 0 : fd_acc_t lut_account = fd_accdb_read_one( accdb, fork_id, pubkey->uc );
513 0 : if( FD_UNLIKELY( !lut_account.lamports ) ) {
514 0 : fd_accdb_unread_one( accdb, &lut_account );
515 0 : return;
516 0 : }
517 :
518 : /* Decode the ALUT account and dump all pubkeys within the lookup
519 : table. */
520 0 : if( lut_account.data_len<FD_LOOKUP_TABLE_META_SIZE || (lut_account.data_len&0x1fUL) ) {
521 0 : fd_accdb_unread_one( accdb, &lut_account );
522 0 : return;
523 0 : }
524 :
525 : /* Copy the addresses out and release before nested acquires. */
526 0 : fd_pubkey_t lookup_addrs[ 256 ]; /* LOOKUP_TABLE_MAX_ADDRESSES */
527 0 : ulong lookup_addrs_cnt = fd_ulong_min( (lut_account.data_len-FD_LOOKUP_TABLE_META_SIZE)>>5UL, 256UL );
528 0 : fd_memcpy( lookup_addrs, lut_account.data+FD_LOOKUP_TABLE_META_SIZE, lookup_addrs_cnt*sizeof(fd_pubkey_t) );
529 0 : fd_accdb_unread_one( accdb, &lut_account );
530 :
531 0 : for( ulong i=0UL; i<lookup_addrs_cnt; i++ ) {
532 0 : fd_pubkey_t const * referenced_pubkey = &lookup_addrs[i];
533 0 : add_account_and_programdata_to_dumped_accounts( accdb, fork_id, dumped_accounts, referenced_pubkey );
534 0 : }
535 0 : }
536 :
537 : static void
538 : create_block_context_protobuf_from_block( fd_block_dump_ctx_t * dump_ctx,
539 : fd_banks_t * banks,
540 : fd_bank_t * bank,
541 : fd_accdb_t * accdb,
542 0 : fd_runtime_stack_t * runtime_stack ) {
543 : /* We should use the bank fields from the parent slot in order to
544 : capture the block context from before the current block was
545 : executed, since dumping is happening in the block finalize step. */
546 0 : fd_bank_t * parent_bank = fd_banks_get_parent( banks, bank );
547 0 : fd_exec_test_block_context_t * block_context = &dump_ctx->block_context;
548 0 : ulong dump_txn_count = dump_ctx->txns_to_dump_cnt;
549 0 : fd_spad_t * spad = dump_ctx->spad;
550 :
551 : /* Get vote and stake delegation infos */
552 0 : fd_vote_stakes_t * vote_stakes = fd_bank_vote_stakes( parent_bank );
553 0 : ulong fork_id = parent_bank->vote_stakes_fork_id;
554 0 : ulong vote_account_t_1_cnt = fd_vote_stakes_cnt_t_1( vote_stakes, fork_id );
555 0 : ulong vote_account_t_2_cnt = fd_vote_stakes_cnt_t_2( vote_stakes, fork_id );
556 0 : uchar vote_stakes_iter_mem[ FD_VOTE_STAKES_T_2_ITER_FOOTPRINT ] __attribute__((aligned(FD_VOTE_STAKES_T_2_ITER_ALIGN)));
557 :
558 0 : fd_stake_delegations_t const * stake_delegations = fd_bank_stake_delegations_frontier_query( banks, parent_bank );
559 :
560 : /* Collect account states in a temporary set before iterating over
561 : them and dumping them out. */
562 0 : void * dumped_accounts_mem = fd_spad_alloc( spad, fd_dump_account_key_map_align(), fd_dump_account_key_map_footprint() );
563 0 : fd_dump_account_t * dumped_accounts_map = fd_dump_account_key_map_join( fd_dump_account_key_map_new( dumped_accounts_mem ) );
564 0 : fd_dump_account_key_set_t dumped_accounts[1] = {{ dumped_accounts_map, 0UL, 0 }};
565 :
566 : /* BlockContext -> txns */
567 0 : block_context->txns_count = (pb_size_t)dump_txn_count;
568 0 : block_context->txns = fd_spad_alloc( spad, alignof(fd_exec_test_sanitized_transaction_t), dump_ctx->txns_to_dump_cnt * sizeof(fd_exec_test_sanitized_transaction_t) );
569 0 : fd_memset( block_context->txns, 0, dump_ctx->txns_to_dump_cnt * sizeof(fd_exec_test_sanitized_transaction_t) );
570 :
571 : /* Dump sanitized transactions from the transaction descriptors */
572 0 : for( ulong i=0UL; i<dump_ctx->txns_to_dump_cnt; i++ ) {
573 0 : fd_txn_p_t const * txn_ptr = &dump_ctx->txns_to_dump[i];
574 0 : fd_txn_t const * txn_descriptor = TXN( txn_ptr );
575 0 : dump_sanitized_transaction( accdb, parent_bank->accdb_fork_id, txn_descriptor, txn_ptr->payload, spad, &block_context->txns[i] );
576 :
577 : /* Dump account + alut + programdata accounts (if applicable).
578 : 1. Dump the raw txn account keys
579 : 2. Dump the ALUT accounts
580 : 3. Dump all referenced accounts in the ALUTs
581 : 4. Dump any executable accounts */
582 :
583 : // 1 + 4. Dump any account keys that are referenced by transactions
584 : // + any programdata accounts (if applicable).
585 0 : fd_acct_addr_t const * account_keys = fd_txn_get_acct_addrs( txn_descriptor, txn_ptr->payload );
586 0 : for( ushort l=0; l<txn_descriptor->acct_addr_cnt; l++ ) {
587 0 : fd_pubkey_t const * account_key = fd_type_pun_const( &account_keys[l] );
588 0 : add_account_and_programdata_to_dumped_accounts( accdb, parent_bank->accdb_fork_id, dumped_accounts, account_key );
589 0 : }
590 :
591 : // 2 + 3 + 4. Dump any ALUT accounts + any accounts referenced in
592 : // the ALUTs + any programdata accounts (if applicable).
593 0 : fd_txn_acct_addr_lut_t const * txn_lookup_tables = fd_txn_get_address_tables_const( txn_descriptor );
594 0 : for( ushort l=0; l<txn_descriptor->addr_table_lookup_cnt; l++ ) {
595 0 : fd_txn_acct_addr_lut_t const * lookup_table = &txn_lookup_tables[l];
596 0 : fd_pubkey_t const * lut_key = fd_type_pun_const( txn_ptr->payload+lookup_table->addr_off );
597 0 : add_lut_accounts_to_dumped_accounts( accdb, parent_bank->accdb_fork_id, dumped_accounts, lut_key );
598 0 : }
599 0 : }
600 :
601 : /* Dump sysvars */
602 0 : for( ulong i=0UL; i<num_sysvar_entries; i++ ) {
603 0 : add_account_to_dumped_accounts( dumped_accounts, fd_dump_sysvar_ids[i] );
604 0 : }
605 :
606 : /* Dump builtins */
607 0 : for( ulong i=0UL; i<num_loaded_builtins; i++ ) {
608 0 : add_account_to_dumped_accounts( dumped_accounts, fd_dump_builtin_ids[i] );
609 0 : }
610 :
611 : /* Dump stake accounts for this epoch */
612 0 : fd_stake_delegations_iter_t iter_[1];
613 0 : for( fd_stake_delegations_iter_t * iter = fd_stake_delegations_iter_init( iter_, stake_delegations, accdb, parent_bank->accdb_fork_id, parent_bank->f.epoch, &parent_bank->f.warmup_cooldown_rate_epoch );
614 0 : !fd_stake_delegations_iter_done( iter );
615 0 : fd_stake_delegations_iter_next( iter ) ) {
616 0 : fd_stake_delegation_t const * stake_delegation = fd_stake_delegations_iter_ele( iter );
617 0 : add_account_to_dumped_accounts( dumped_accounts, &stake_delegation->stake_account );
618 0 : }
619 0 : fd_bank_stake_delegations_end_frontier_query( banks, parent_bank );
620 :
621 : /* BlockBank -> vote_accounts_t_1 and vote_accounts_t_2 */
622 0 : fd_exec_test_prev_vote_account_t * va_t1 = fd_spad_alloc( spad,
623 0 : alignof(fd_exec_test_prev_vote_account_t),
624 0 : vote_account_t_1_cnt * sizeof(fd_exec_test_prev_vote_account_t) );
625 0 : fd_exec_test_prev_vote_account_t * va_t2 = fd_spad_alloc( spad,
626 0 : alignof(fd_exec_test_prev_vote_account_t),
627 0 : vote_account_t_2_cnt * sizeof(fd_exec_test_prev_vote_account_t) );
628 0 : pb_size_t va_t1_cnt = 0U;
629 0 : pb_size_t va_t2_cnt = 0U;
630 :
631 : /* SIMD-0232 collector overrides are tagged with the source epoch.
632 : Empty protobuf fields represent the vote/node defaults. */
633 0 : fd_collector_overrides_t * collector_overrides = fd_bank_collector_overrides( parent_bank );
634 0 : ushort co_fork_idx = parent_bank->collector_overrides_fork_id;
635 0 : ulong co_epoch_t_1 = parent_bank->f.epoch;
636 0 : ulong co_epoch_t_2 = fd_ulong_sat_sub( parent_bank->f.epoch, 1UL );
637 :
638 0 : for( fd_vote_stakes_t_1_iter_t * iter = fd_vote_stakes_t_1_iter_init( vote_stakes, fork_id, vote_stakes_iter_mem );
639 0 : !fd_vote_stakes_t_1_iter_done( vote_stakes, fork_id, iter );
640 0 : fd_vote_stakes_t_1_iter_next( vote_stakes, fork_id, iter ) ) {
641 0 : fd_pubkey_t pubkey;
642 0 : ulong stake;
643 0 : fd_pubkey_t node;
644 0 : ushort commission;
645 0 : fd_vote_stakes_t_1_iter_ele( vote_stakes, fork_id, iter, &pubkey, &node, &stake, &commission, NULL );
646 0 : add_account_to_dumped_accounts( dumped_accounts, &pubkey );
647 :
648 0 : fd_exec_test_prev_vote_account_t * acc = &va_t1[ va_t1_cnt++ ];
649 0 : fd_memcpy( acc->address, &pubkey, sizeof(fd_pubkey_t) );
650 0 : fd_memcpy( acc->node_pubkey, &node, sizeof(fd_pubkey_t) );
651 0 : acc->stake = stake;
652 0 : acc->commission_bps = commission;
653 0 : acc->version = FD_EXEC_TEST_VOTE_ACCOUNT_VERSION_V4;
654 0 : acc->epoch_credits_count = 0U;
655 0 : acc->inflation_rewards_collector.size = 0U;
656 0 : acc->block_revenue_collector.size = 0U;
657 :
658 0 : fd_pubkey_t inflation_collector;
659 0 : fd_pubkey_t block_collector;
660 0 : int co_flags = fd_collector_overrides_query( collector_overrides, co_fork_idx, co_epoch_t_1, &pubkey,
661 0 : &inflation_collector, &block_collector );
662 0 : if( co_flags & FD_COLLECTOR_OVERRIDE_INFLATION ) {
663 0 : acc->inflation_rewards_collector.size = 32U;
664 0 : fd_memcpy( acc->inflation_rewards_collector.bytes, &inflation_collector, sizeof(fd_pubkey_t) );
665 0 : }
666 0 : if( co_flags & FD_COLLECTOR_OVERRIDE_BLOCK ) {
667 0 : acc->block_revenue_collector.size = 32U;
668 0 : fd_memcpy( acc->block_revenue_collector.bytes, &block_collector, sizeof(fd_pubkey_t) );
669 0 : }
670 0 : }
671 :
672 0 : for( fd_vote_stakes_t_2_iter_t * iter = fd_vote_stakes_t_2_iter_init( vote_stakes, fork_id, vote_stakes_iter_mem );
673 0 : !fd_vote_stakes_t_2_iter_done( vote_stakes, fork_id, iter );
674 0 : fd_vote_stakes_t_2_iter_next( vote_stakes, fork_id, iter ) ) {
675 0 : fd_pubkey_t pubkey;
676 0 : ulong stake;
677 0 : fd_pubkey_t node;
678 0 : ushort commission;
679 0 : fd_vote_stakes_t_2_iter_ele( vote_stakes, fork_id, iter, &pubkey, &node, &stake, NULL, NULL, &commission, NULL, NULL );
680 0 : add_account_to_dumped_accounts( dumped_accounts, &pubkey );
681 :
682 0 : fd_exec_test_prev_vote_account_t * acc = &va_t2[ va_t2_cnt++ ];
683 0 : fd_memcpy( acc->address, &pubkey, sizeof(fd_pubkey_t) );
684 0 : fd_memcpy( acc->node_pubkey, &node, sizeof(fd_pubkey_t) );
685 0 : acc->stake = stake;
686 0 : acc->commission_bps = commission;
687 0 : acc->version = FD_EXEC_TEST_VOTE_ACCOUNT_VERSION_V4;
688 0 : acc->epoch_credits_count = 0U;
689 0 : acc->inflation_rewards_collector.size = 0U;
690 0 : acc->block_revenue_collector.size = 0U;
691 :
692 0 : fd_pubkey_t inflation_collector;
693 0 : fd_pubkey_t block_collector;
694 0 : int co_flags = fd_collector_overrides_query( collector_overrides, co_fork_idx, co_epoch_t_2, &pubkey,
695 0 : &inflation_collector, &block_collector );
696 0 : if( co_flags & FD_COLLECTOR_OVERRIDE_INFLATION ) {
697 0 : acc->inflation_rewards_collector.size = 32U;
698 0 : fd_memcpy( acc->inflation_rewards_collector.bytes, &inflation_collector, sizeof(fd_pubkey_t) );
699 0 : }
700 0 : if( co_flags & FD_COLLECTOR_OVERRIDE_BLOCK ) {
701 0 : acc->block_revenue_collector.size = 32U;
702 0 : fd_memcpy( acc->block_revenue_collector.bytes, &block_collector, sizeof(fd_pubkey_t) );
703 0 : }
704 0 : }
705 :
706 : /* Dump epoch_credits from runtime_stack->stakes.vote_ele if the
707 : vote_ele_map has been populated (happens after epoch boundary
708 : reward calculation). Needed for the harness to correctly
709 : recalculate partitioned epoch rewards. */
710 0 : fd_vote_rewards_map_t * vote_ele_map = runtime_stack->stakes.vote_map;
711 0 : for( pb_size_t i=0U; i<va_t1_cnt; i++ ) {
712 0 : fd_pubkey_t va_pubkey = FD_LOAD( fd_pubkey_t, va_t1[i].address );
713 0 : uint idx = (uint)fd_vote_rewards_map_idx_query( vote_ele_map, &va_pubkey, UINT_MAX, runtime_stack->stakes.vote_ele );
714 0 : if( idx==UINT_MAX ) continue;
715 0 : fd_epoch_credits_t const * ec = &fd_bank_epoch_credits( parent_bank )[idx];
716 0 : ulong cnt = ec->cnt;
717 0 : ulong base = ec->base_credits;
718 0 : va_t1[i].epoch_credits_count = (pb_size_t)cnt;
719 0 : va_t1[i].epoch_credits = fd_spad_alloc( spad, alignof(fd_exec_test_epoch_credit_t), cnt * sizeof(fd_exec_test_epoch_credit_t) );
720 0 : for( ulong j=0; j<cnt; j++ ) {
721 0 : va_t1[i].epoch_credits[j].epoch = ec->epoch[j];
722 0 : va_t1[i].epoch_credits[j].credits = base + ec->credits_delta[j];
723 0 : va_t1[i].epoch_credits[j].prev_credits = base + ec->prev_credits_delta[j];
724 0 : }
725 0 : }
726 :
727 : /* BlockContext -> acct_states
728 : Iterate over the set and dump all the account keys in one pass. */
729 0 : block_context->acct_states_count = 0U;
730 0 : block_context->acct_states = fd_spad_alloc(
731 0 : spad,
732 0 : alignof(fd_exec_test_acct_state_t),
733 0 : dumped_accounts->cnt*sizeof(fd_exec_test_acct_state_t) );
734 0 : fd_dump_account_key_iter_t dumped_accounts_iter_[1];
735 0 : for( fd_dump_account_key_iter_t * iter = fd_dump_account_key_iter_init( dumped_accounts_iter_, dumped_accounts );
736 0 : !fd_dump_account_key_iter_done( iter );
737 0 : fd_dump_account_key_iter_next( iter ) ) {
738 0 : fd_pubkey_t const * pubkey = fd_dump_account_key_iter_ele( iter );
739 0 : fd_acc_t acc = fd_accdb_read_one( accdb, parent_bank->accdb_fork_id, pubkey->uc );
740 0 : if( FD_UNLIKELY( !acc.lamports ) ) {
741 0 : fd_accdb_unread_one( accdb, &acc );
742 0 : continue;
743 0 : }
744 0 : dump_account_state(
745 0 : &acc,
746 0 : &block_context->acct_states[block_context->acct_states_count++],
747 0 : spad );
748 0 : fd_accdb_unread_one( accdb, &acc );
749 0 : }
750 :
751 : /* BlockContext -> bank */
752 0 : block_context->has_bank = true;
753 0 : fd_exec_test_block_bank_t * block_bank = &block_context->bank;
754 :
755 : /* BlockBank -> blockhash_queue */
756 0 : dump_blockhash_queue( parent_bank, spad, &block_bank->blockhash_queue, &block_bank->blockhash_queue_count );
757 :
758 : /* BlockBank -> rbh_lamports_per_signature */
759 0 : block_bank->rbh_lamports_per_signature = (uint)parent_bank->f.rbh_lamports_per_sig;
760 :
761 : /* BlockBank -> fee_rate_governor */
762 0 : block_bank->has_fee_rate_governor = true;
763 0 : dump_fee_rate_governor( parent_bank, &block_bank->fee_rate_governor );
764 :
765 : /* BlockBank -> slot */
766 0 : block_bank->slot = bank->f.slot;
767 :
768 : /* BlockBank -> parent_slot */
769 0 : block_bank->parent_slot = bank->f.parent_slot;
770 :
771 : /* BlockBank -> capitalization */
772 0 : block_bank->capitalization = parent_bank->f.capitalization;
773 :
774 : /* BlockBank -> ns_per_slot */
775 0 : fd_w_u128_t ns_per_slot = { .ud = bank->f.slot_params.ns_per_slot };
776 0 : fd_memcpy( block_bank->ns_per_slot, &ns_per_slot.ud, sizeof(uint128) );
777 :
778 : /* BlockBank -> inflation */
779 0 : block_bank->has_inflation = true;
780 0 : fd_inflation_t const * inflation = &parent_bank->f.inflation;
781 0 : block_bank->inflation = (fd_exec_test_inflation_t){
782 0 : .initial = inflation->initial,
783 0 : .terminal = inflation->terminal,
784 0 : .taper = inflation->taper,
785 0 : .foundation = inflation->foundation,
786 0 : .foundation_term = inflation->foundation_term,
787 0 : };
788 :
789 : /* BlockBank -> block_height */
790 0 : block_bank->block_height = bank->f.block_height;
791 :
792 : /* BlockBank -> poh */
793 0 : fd_memcpy( block_bank->poh, &bank->f.poh, sizeof(fd_hash_t) );
794 :
795 : /* BlockBank -> parent_bank_hash */
796 0 : fd_memcpy( block_bank->parent_bank_hash, &parent_bank->f.bank_hash, sizeof(fd_hash_t) );
797 :
798 : /* BlockBank -> parent_lt_hash */
799 0 : fd_lthash_value_t const * parent_lthash = fd_bank_lthash_locking_query( parent_bank );
800 0 : fd_memcpy( block_bank->parent_lt_hash, parent_lthash, sizeof(fd_lthash_value_t) );
801 0 : fd_bank_lthash_end_locking_query( parent_bank );
802 :
803 : /* BlockBank -> parent_signature_count */
804 0 : block_bank->parent_signature_count = parent_bank->f.parent_signature_cnt;
805 :
806 : /* BlockBank -> features */
807 0 : block_bank->has_features = true;
808 0 : dump_sorted_features( &parent_bank->f.features, &block_bank->features, spad );
809 :
810 : /* BlockBank -> vote_accounts_t_1 / vote_accounts_t_2 */
811 0 : block_bank->vote_accounts_t_1 = va_t1;
812 0 : block_bank->vote_accounts_t_1_count = va_t1_cnt;
813 0 : block_bank->vote_accounts_t_2 = va_t2;
814 0 : block_bank->vote_accounts_t_2_count = va_t2_cnt;
815 0 : }
816 :
817 : static void
818 : create_txn_context_protobuf_from_txn( fd_exec_test_txn_context_t * txn_context_msg,
819 : fd_runtime_t * runtime,
820 : fd_bank_t * bank,
821 : fd_txn_in_t const * txn_in,
822 : fd_txn_out_t * txn_out,
823 0 : fd_spad_t * spad ) {
824 0 : fd_txn_t const * txn_descriptor = TXN( txn_in->txn );
825 0 : uchar const * txn_payload = (uchar const *) txn_in->txn->payload;
826 0 : (void)txn_out;
827 :
828 : /* Transaction Context -> account_shared_data
829 : Contains:
830 : - Account data for regular accounts
831 : - Account data for LUT accounts
832 : - Account data for executable accounts
833 : - Account data for (almost) all sysvars */
834 0 : txn_context_msg->account_shared_data_count = 0;
835 0 : txn_context_msg->account_shared_data = fd_spad_alloc( spad,
836 0 : alignof(fd_exec_test_acct_state_t),
837 0 : (256UL*2UL + txn_descriptor->addr_table_lookup_cnt + num_sysvar_entries) * sizeof(fd_exec_test_acct_state_t) );
838 :
839 : /* Dump regular accounts first */
840 0 : fd_acct_addr_t const * account_keys = fd_txn_get_acct_addrs( txn_descriptor, txn_payload );
841 0 : for( ushort i=0; i<txn_descriptor->acct_addr_cnt; i++ ) {
842 0 : dump_account_if_not_already_dumped(
843 0 : runtime->accdb,
844 0 : bank->accdb_fork_id,
845 0 : fd_type_pun_const( &account_keys[i] ),
846 0 : spad,
847 0 : txn_context_msg->account_shared_data,
848 0 : &txn_context_msg->account_shared_data_count,
849 0 : NULL
850 0 : );
851 0 : }
852 :
853 : // Dump LUT accounts
854 0 : fd_txn_acct_addr_lut_t const * address_lookup_tables = fd_txn_get_address_tables_const( txn_descriptor );
855 0 : for( ulong i = 0; i < txn_descriptor->addr_table_lookup_cnt; ++i ) {
856 0 : fd_txn_acct_addr_lut_t const * addr_lut = &address_lookup_tables[i];
857 0 : fd_pubkey_t * alut_key = (fd_pubkey_t *) (txn_payload + addr_lut->addr_off);
858 :
859 : // Dump the LUT account itself if not already dumped
860 0 : fd_acc_t acc;
861 0 : int ret = dump_account_if_not_already_dumped(
862 0 : runtime->accdb,
863 0 : bank->accdb_fork_id,
864 0 : alut_key,
865 0 : spad,
866 0 : txn_context_msg->account_shared_data,
867 0 : &txn_context_msg->account_shared_data_count,
868 0 : &acc
869 0 : );
870 0 : if( FD_UNLIKELY( ret ) ) continue;
871 :
872 0 : if( FD_UNLIKELY( acc.data_len < FD_LOOKUP_TABLE_META_SIZE ) ) {
873 : /* Skip over invalid address lookup tables */
874 0 : fd_accdb_unread_one( runtime->accdb, &acc );
875 0 : continue;
876 0 : }
877 :
878 : /* Copy the addresses out and release before nested acquires. */
879 0 : fd_pubkey_t lookup_addrs[ 256 ]; /* LOOKUP_TABLE_MAX_ADDRESSES */
880 0 : ulong lookup_addrs_cnt = fd_ulong_min( (acc.data_len - FD_LOOKUP_TABLE_META_SIZE) / sizeof(fd_pubkey_t), 256UL );
881 0 : fd_memcpy( lookup_addrs, acc.data + FD_LOOKUP_TABLE_META_SIZE, lookup_addrs_cnt*sizeof(fd_pubkey_t) );
882 0 : fd_accdb_unread_one( runtime->accdb, &acc );
883 :
884 : /* Dump any account state referenced in ALUTs */
885 0 : uchar const * writable_lut_idxs = txn_payload + addr_lut->writable_off;
886 0 : for( ulong j=0; j<addr_lut->writable_cnt; j++ ) {
887 0 : if( writable_lut_idxs[j] >= lookup_addrs_cnt ) {
888 0 : continue;
889 0 : }
890 0 : fd_pubkey_t const * referenced_addr = lookup_addrs + writable_lut_idxs[j];
891 0 : dump_account_if_not_already_dumped(
892 0 : runtime->accdb,
893 0 : bank->accdb_fork_id,
894 0 : referenced_addr,
895 0 : spad,
896 0 : txn_context_msg->account_shared_data,
897 0 : &txn_context_msg->account_shared_data_count,
898 0 : NULL
899 0 : );
900 0 : }
901 :
902 0 : uchar const * readonly_lut_idxs = txn_payload + addr_lut->readonly_off;
903 0 : for( ulong j = 0; j < addr_lut->readonly_cnt; j++ ) {
904 0 : if( readonly_lut_idxs[j] >= lookup_addrs_cnt ) {
905 0 : continue;
906 0 : }
907 0 : fd_pubkey_t const * referenced_addr = lookup_addrs + readonly_lut_idxs[j];
908 0 : dump_account_if_not_already_dumped(
909 0 : runtime->accdb,
910 0 : bank->accdb_fork_id,
911 0 : referenced_addr,
912 0 : spad,
913 0 : txn_context_msg->account_shared_data,
914 0 : &txn_context_msg->account_shared_data_count,
915 0 : NULL
916 0 : );
917 0 : }
918 0 : }
919 :
920 : /* Dump the programdata accounts for any potential v3-owned program accounts */
921 0 : uint accounts_dumped_so_far = txn_context_msg->account_shared_data_count;
922 0 : for( uint i=0U; i<accounts_dumped_so_far; i++ ) {
923 0 : fd_exec_test_acct_state_t const * maybe_program_account = &txn_context_msg->account_shared_data[i];
924 0 : dump_executable_account_if_exists( runtime->accdb, bank->accdb_fork_id, maybe_program_account, spad, txn_context_msg->account_shared_data, &txn_context_msg->account_shared_data_count );
925 0 : }
926 :
927 : /* Dump sysvars */
928 0 : for( ulong i = 0; i < num_sysvar_entries; i++ ) {
929 0 : dump_account_if_not_already_dumped(
930 0 : runtime->accdb,
931 0 : bank->accdb_fork_id,
932 0 : fd_dump_sysvar_ids[i],
933 0 : spad,
934 0 : txn_context_msg->account_shared_data,
935 0 : &txn_context_msg->account_shared_data_count,
936 0 : NULL
937 0 : );
938 0 : }
939 :
940 : /* Transaction Context -> tx */
941 0 : txn_context_msg->has_tx = true;
942 0 : fd_exec_test_sanitized_transaction_t * sanitized_transaction = &txn_context_msg->tx;
943 0 : dump_sanitized_transaction( runtime->accdb, bank->accdb_fork_id, txn_descriptor, txn_payload, spad, sanitized_transaction );
944 :
945 : /* Transaction Context -> bank */
946 0 : dump_txn_bank( bank, spad, txn_context_msg );
947 0 : }
948 :
949 : static void
950 : create_instr_context_protobuf_from_instructions( fd_exec_test_instr_context_t * instr_context,
951 : fd_runtime_t * runtime,
952 : fd_bank_t * bank,
953 : fd_txn_out_t * txn_out,
954 : fd_instr_info_t const * instr,
955 0 : fd_spad_t * spad ) {
956 : /* Program ID */
957 0 : fd_memcpy( instr_context->program_id, txn_out->accounts.keys[ instr->program_id ].uc, sizeof(fd_pubkey_t) );
958 :
959 : /* Accounts */
960 0 : instr_context->accounts_count = (pb_size_t) txn_out->accounts.cnt;
961 0 : instr_context->accounts = fd_spad_alloc( spad, alignof(fd_exec_test_acct_state_t), (instr_context->accounts_count + num_sysvar_entries + txn_out->accounts.executable_cnt) * sizeof(fd_exec_test_acct_state_t));
962 0 : for( ulong i = 0; i < txn_out->accounts.cnt; i++ ) {
963 : // Copy account information over
964 0 : fd_exec_test_acct_state_t * output_account = &instr_context->accounts[i];
965 0 : dump_account_state( txn_out->accounts.account[ i ], output_account, spad );
966 0 : }
967 :
968 : /* Add sysvar cache variables */
969 0 : uchar * sysvar_data = fd_spad_alloc( spad, 1UL, FD_RUNTIME_ACC_SZ_MAX );
970 0 : for( ulong i = 0; i < num_sysvar_entries; i++ ) {
971 0 : if( account_already_dumped( instr_context->accounts, instr_context->accounts_count, fd_dump_sysvar_ids[i] ) ) continue;
972 :
973 0 : fd_acc_t acc = {0};
974 0 : fd_memcpy( acc.pubkey, fd_dump_sysvar_ids[i]->uc, sizeof(fd_pubkey_t) );
975 0 : acc.data = sysvar_data;
976 0 : fd_accdb_read_one_nocache(
977 0 : runtime->accdb,
978 0 : bank->accdb_fork_id,
979 0 : fd_dump_sysvar_ids[i]->uc,
980 0 : &acc.lamports,
981 0 : &acc.executable,
982 0 : acc.owner,
983 0 : acc.data,
984 0 : &acc.data_len
985 0 : );
986 0 : if( FD_UNLIKELY( !acc.lamports ) ) continue;
987 :
988 0 : fd_exec_test_acct_state_t * output_account = &instr_context->accounts[instr_context->accounts_count++];
989 0 : dump_account_state( &acc, output_account, spad );
990 0 : }
991 :
992 : /* Add executable accounts */
993 0 : for( ulong i = 0; i < txn_out->accounts.executable_cnt; i++ ) {
994 : // Make sure the account doesn't exist in the output accounts yet
995 0 : fd_acc_t const * ro = txn_out->accounts.executable[i];
996 0 : bool account_exists = false;
997 0 : for( ulong j = 0; j < instr_context->accounts_count; j++ ) {
998 0 : if( 0 == memcmp( instr_context->accounts[j].address, ro->pubkey, sizeof(fd_pubkey_t) ) ) {
999 0 : account_exists = true;
1000 0 : break;
1001 0 : }
1002 0 : }
1003 : // Copy it into output
1004 0 : if( !account_exists ) {
1005 0 : fd_exec_test_acct_state_t * output_account = &instr_context->accounts[instr_context->accounts_count++];
1006 0 : dump_account_state( ro, output_account, spad );
1007 0 : }
1008 0 : }
1009 :
1010 : /* Instruction Accounts */
1011 0 : instr_context->instr_accounts_count = (pb_size_t) instr->acct_cnt;
1012 0 : instr_context->instr_accounts = fd_spad_alloc( spad, alignof(fd_exec_test_instr_acct_t), instr_context->instr_accounts_count * sizeof(fd_exec_test_instr_acct_t) );
1013 0 : for( ushort i = 0; i < instr->acct_cnt; i++ ) {
1014 0 : fd_exec_test_instr_acct_t * output_instr_account = &instr_context->instr_accounts[i];
1015 :
1016 0 : output_instr_account->index = instr->accounts[i].index_in_transaction;
1017 0 : output_instr_account->is_writable = instr->accounts[i].is_writable;
1018 0 : output_instr_account->is_signer = instr->accounts[i].is_signer;
1019 0 : }
1020 :
1021 : /* Data */
1022 0 : instr_context->data = fd_spad_alloc( spad, alignof(pb_bytes_array_t), PB_BYTES_ARRAY_T_ALLOCSIZE( instr->data_sz ) );
1023 0 : instr_context->data->size = (pb_size_t) instr->data_sz;
1024 0 : fd_memcpy( instr_context->data->bytes, instr->data, instr->data_sz );
1025 :
1026 : /* Compute Units */
1027 0 : instr_context->cu_avail = txn_out->details.compute_budget.compute_meter;
1028 :
1029 : /* Feature set */
1030 0 : instr_context->has_features = true;
1031 0 : dump_sorted_features( &bank->f.features, &instr_context->features, spad );
1032 0 : }
1033 :
1034 : /***** PUBLIC APIs *****/
1035 :
1036 : void
1037 : fd_dump_instr_to_protobuf( fd_runtime_t * runtime,
1038 : fd_bank_t * bank,
1039 : fd_txn_in_t const * txn_in,
1040 : fd_txn_out_t * txn_out,
1041 : fd_instr_info_t * instr,
1042 0 : ushort instruction_idx ) {
1043 : /* Check program ID filter, if it exists */
1044 0 : if( runtime->log.dump_proto_ctx->has_dump_instr_program_id_filter &&
1045 0 : memcmp( txn_out->accounts.keys[ instr->program_id ].uc, runtime->log.dump_proto_ctx->dump_instr_program_id_filter, sizeof(fd_pubkey_t) ) ) {
1046 0 : return;
1047 0 : }
1048 :
1049 0 : fd_spad_t * spad = fd_spad_join( fd_spad_new( runtime->log.dumping_mem, 1UL<<28UL ) );
1050 :
1051 0 : FD_SPAD_FRAME_BEGIN( spad ) {
1052 : // Get base58-encoded tx signature
1053 0 : const fd_ed25519_sig_t * signatures = fd_txn_get_signatures( TXN( txn_in->txn ), txn_in->txn->payload );
1054 0 : char encoded_signature[FD_BASE58_ENCODED_64_SZ];
1055 0 : fd_base58_encode_64( signatures[0], NULL, encoded_signature );
1056 :
1057 0 : fd_exec_test_instr_context_t instr_context = FD_EXEC_TEST_INSTR_CONTEXT_INIT_DEFAULT;
1058 0 : create_instr_context_protobuf_from_instructions( &instr_context, runtime, bank, txn_out, instr, spad );
1059 :
1060 : /* Output to file */
1061 0 : ulong out_buf_size = 100 * 1024 * 1024;
1062 0 : uint8_t * out = fd_spad_alloc( spad, alignof(uchar) , out_buf_size );
1063 0 : pb_ostream_t stream = pb_ostream_from_buffer( out, out_buf_size );
1064 0 : if (pb_encode(&stream, FD_EXEC_TEST_INSTR_CONTEXT_FIELDS, &instr_context)) {
1065 0 : char output_filepath[ PATH_MAX ];
1066 0 : snprintf( output_filepath, PATH_MAX, "%s/instr-%s-%hu.instrctx", runtime->log.dump_proto_ctx->dump_proto_output_dir, encoded_signature, instruction_idx );
1067 0 : FILE * file = fopen(output_filepath, "wb");
1068 0 : if( file ) {
1069 0 : fwrite( out, 1, stream.bytes_written, file );
1070 0 : fclose( file );
1071 0 : }
1072 0 : }
1073 0 : } FD_SPAD_FRAME_END;
1074 0 : }
1075 :
1076 : /* Writes a single account state into the resulting_state field of a
1077 : TxnResult protobuf. Sub-allocations for account data are bump-
1078 : allocated from the caller's scratch region via _l. */
1079 : static void
1080 : write_account_to_result( fd_acc_t const * acc,
1081 : fd_exec_test_acct_state_t * out_accounts,
1082 : pb_size_t * out_accounts_cnt,
1083 : ulong * scratch_cur,
1084 0 : ulong scratch_end ) {
1085 0 : fd_exec_test_acct_state_t * out_acct = &out_accounts[ *out_accounts_cnt ];
1086 0 : (*out_accounts_cnt)++;
1087 :
1088 0 : memset( out_acct, 0, sizeof(fd_exec_test_acct_state_t) );
1089 0 : memcpy( out_acct->address, acc->pubkey, sizeof(fd_pubkey_t) );
1090 0 : out_acct->lamports = acc->lamports;
1091 :
1092 0 : if( acc->data_len>0UL ) {
1093 0 : pb_bytes_array_t * data = (pb_bytes_array_t *)fd_ulong_align_up( *scratch_cur, alignof(pb_bytes_array_t) );
1094 0 : *scratch_cur = (ulong)data + PB_BYTES_ARRAY_T_ALLOCSIZE( acc->data_len );
1095 0 : if( FD_UNLIKELY( *scratch_cur > scratch_end ) ) abort();
1096 0 : data->size = (pb_size_t)acc->data_len;
1097 0 : fd_memcpy( data->bytes, acc->data, acc->data_len );
1098 0 : out_acct->data = data;
1099 0 : }
1100 :
1101 0 : out_acct->executable = acc->executable;
1102 0 : memcpy( out_acct->owner, acc->owner, sizeof(fd_pubkey_t) );
1103 0 : }
1104 :
1105 : static void
1106 : write_account_to_result1( uchar const * pubkey,
1107 : ulong lamports,
1108 : uchar const * owner,
1109 : ulong data_len,
1110 : uchar const * _data,
1111 : int executable,
1112 : fd_exec_test_acct_state_t * out_accounts,
1113 : pb_size_t * out_accounts_cnt,
1114 : ulong * scratch_cur,
1115 0 : ulong scratch_end ) {
1116 0 : fd_exec_test_acct_state_t * out_acct = &out_accounts[ *out_accounts_cnt ];
1117 0 : (*out_accounts_cnt)++;
1118 :
1119 0 : memset( out_acct, 0, sizeof(fd_exec_test_acct_state_t) );
1120 0 : memcpy( out_acct->address, pubkey, sizeof(fd_pubkey_t) );
1121 0 : out_acct->lamports = lamports;
1122 :
1123 0 : if( data_len>0UL ) {
1124 0 : pb_bytes_array_t * data = (pb_bytes_array_t *)fd_ulong_align_up( *scratch_cur, alignof(pb_bytes_array_t) );
1125 0 : *scratch_cur = (ulong)data + PB_BYTES_ARRAY_T_ALLOCSIZE( data_len );
1126 0 : if( FD_UNLIKELY( *scratch_cur > scratch_end ) ) abort();
1127 0 : data->size = (pb_size_t)data_len;
1128 0 : fd_memcpy( data->bytes, _data, data_len );
1129 0 : out_acct->data = data;
1130 0 : }
1131 :
1132 0 : out_acct->executable = executable;
1133 0 : memcpy( out_acct->owner, owner, sizeof(fd_pubkey_t) );
1134 0 : }
1135 :
1136 : ulong
1137 : create_txn_result_protobuf_from_txn( fd_exec_test_txn_result_t ** txn_result_out,
1138 : void * out_buf,
1139 : ulong out_bufsz,
1140 : fd_txn_in_t const * txn_in,
1141 : fd_txn_out_t * txn_out,
1142 0 : int exec_res ) {
1143 0 : FD_SCRATCH_ALLOC_INIT( l, out_buf );
1144 0 : ulong out_end = (ulong)out_buf + out_bufsz;
1145 :
1146 0 : fd_exec_test_txn_result_t * txn_result =
1147 0 : FD_SCRATCH_ALLOC_APPEND( l, alignof(fd_exec_test_txn_result_t),
1148 0 : sizeof(fd_exec_test_txn_result_t) );
1149 0 : if( FD_UNLIKELY( _l > out_end ) ) abort();
1150 0 : fd_memset( txn_result, 0, sizeof(fd_exec_test_txn_result_t) );
1151 :
1152 : /* Map nonce errors into the agave expected ones. */
1153 0 : if( FD_UNLIKELY( exec_res==FD_RUNTIME_TXN_ERR_BLOCKHASH_NONCE_ALREADY_ADVANCED ||
1154 0 : exec_res==FD_RUNTIME_TXN_ERR_BLOCKHASH_FAIL_ADVANCE_NONCE_INSTR ||
1155 0 : exec_res==FD_RUNTIME_TXN_ERR_BLOCKHASH_FAIL_WRONG_NONCE )) {
1156 0 : exec_res = FD_RUNTIME_TXN_ERR_BLOCKHASH_NOT_FOUND;
1157 0 : }
1158 :
1159 : /* Basic result fields */
1160 0 : txn_result->executed = txn_out->err.is_committable;
1161 0 : txn_result->modified_accounts_count = 0;
1162 0 : txn_result->rollback_accounts_count = 0;
1163 0 : txn_result->txn_error = (uint32_t) -exec_res;
1164 0 : txn_result->instruction_error = 0;
1165 0 : txn_result->instruction_error_index = 0;
1166 0 : txn_result->custom_error = 0;
1167 0 : txn_result->has_fee_details = false;
1168 0 : txn_result->loaded_accounts_data_size = txn_out->details.loaded_accounts_data_size;
1169 :
1170 0 : if( !txn_out->err.is_committable ) {
1171 0 : if( txn_out->err.is_fees_only ) {
1172 0 : txn_result->has_fee_details = true;
1173 0 : txn_result->fee_details.prioritization_fee = txn_out->details.priority_fee;
1174 0 : txn_result->fee_details.transaction_fee = txn_out->details.execution_fee;
1175 0 : }
1176 :
1177 0 : if( exec_res==FD_RUNTIME_TXN_ERR_INSTRUCTION_ERROR ) {
1178 0 : txn_result->instruction_error = (uint32_t) -txn_out->err.exec_err;
1179 0 : txn_result->instruction_error_index = txn_out->err.exec_err_idx;
1180 0 : if( txn_out->err.exec_err==FD_EXECUTOR_INSTR_ERR_CUSTOM_ERR ) {
1181 0 : txn_result->custom_error = txn_out->err.custom_err;
1182 0 : }
1183 0 : }
1184 :
1185 0 : *txn_result_out = txn_result;
1186 0 : return FD_SCRATCH_ALLOC_FINI( l, 1UL ) - (ulong)out_buf;
1187 0 : }
1188 :
1189 : /* Capture instruction error code for executed transactions */
1190 0 : if( exec_res==FD_RUNTIME_TXN_ERR_INSTRUCTION_ERROR ) {
1191 0 : fd_txn_t const * txn = TXN( txn_in->txn );
1192 0 : uint instr_err_idx = txn_out->err.exec_err_idx;
1193 0 : int program_id_idx = txn->instr[instr_err_idx].program_id;
1194 :
1195 0 : txn_result->instruction_error = (uint32_t) -txn_out->err.exec_err;
1196 0 : txn_result->instruction_error_index = instr_err_idx;
1197 :
1198 0 : if( txn_out->err.exec_err==FD_EXECUTOR_INSTR_ERR_CUSTOM_ERR &&
1199 0 : fd_executor_lookup_native_precompile_program( &txn_out->accounts.keys[ program_id_idx ] )==NULL ) {
1200 0 : txn_result->custom_error = txn_out->err.custom_err;
1201 0 : }
1202 0 : }
1203 :
1204 0 : txn_result->has_fee_details = true;
1205 0 : txn_result->fee_details.transaction_fee = txn_out->details.execution_fee;
1206 0 : txn_result->fee_details.prioritization_fee = txn_out->details.priority_fee;
1207 0 : txn_result->executed_units = txn_out->details.compute_budget.compute_unit_limit - txn_out->details.compute_budget.compute_meter;
1208 :
1209 : /* Return data */
1210 0 : if( txn_out->details.return_data.len>0 ) {
1211 0 : txn_result->return_data = FD_SCRATCH_ALLOC_APPEND( l, alignof(pb_bytes_array_t),
1212 0 : PB_BYTES_ARRAY_T_ALLOCSIZE( txn_out->details.return_data.len ) );
1213 0 : if( FD_UNLIKELY( _l > out_end ) ) abort();
1214 0 : txn_result->return_data->size = (pb_size_t)txn_out->details.return_data.len;
1215 0 : fd_memcpy( txn_result->return_data->bytes, txn_out->details.return_data.data, txn_out->details.return_data.len );
1216 0 : }
1217 :
1218 : /* Modified accounts */
1219 0 : txn_result->modified_accounts = FD_SCRATCH_ALLOC_APPEND( l, alignof(fd_exec_test_acct_state_t), sizeof(fd_exec_test_acct_state_t) * txn_out->accounts.cnt );
1220 0 : txn_result->rollback_accounts = FD_SCRATCH_ALLOC_APPEND( l, alignof(fd_exec_test_acct_state_t), sizeof(fd_exec_test_acct_state_t) * 2UL );
1221 0 : if( FD_UNLIKELY( _l > out_end ) ) abort();
1222 :
1223 0 : if( txn_out->err.is_fees_only || exec_res!=FD_RUNTIME_EXECUTE_SUCCESS ) {
1224 : /* If the transaction errored, capture the rollback accounts (fee payer and nonce). */
1225 0 : if( FD_LIKELY( txn_out->accounts.nonce_idx_in_txn!=FD_FEE_PAYER_TXN_IDX ) ) {
1226 0 : write_account_to_result1(
1227 0 : txn_out->accounts.keys[FD_FEE_PAYER_TXN_IDX].uc,
1228 0 : txn_out->accounts.fee_payer_rollback_lamports,
1229 0 : txn_out->accounts.account[ FD_FEE_PAYER_TXN_IDX ]->prior_owner,
1230 0 : txn_out->accounts.account[ FD_FEE_PAYER_TXN_IDX ]->prior_data_len,
1231 0 : txn_out->accounts.account[ FD_FEE_PAYER_TXN_IDX ]->prior_data,
1232 0 : txn_out->accounts.account[ FD_FEE_PAYER_TXN_IDX ]->prior_executable,
1233 0 : txn_result->rollback_accounts,
1234 0 : &txn_result->rollback_accounts_count,
1235 0 : &_l,
1236 0 : out_end
1237 0 : );
1238 0 : }
1239 :
1240 0 : if( txn_out->accounts.nonce_idx_in_txn!=ULONG_MAX ) {
1241 : /* When the nonce account is also the fee payer, the rollback must
1242 : reflect the fee debit (the fee is still charged on a failed
1243 : nonce txn). prior_lamports is the pre-fee balance, so use the
1244 : post-fee fee_payer_rollback_lamports for that account instead. */
1245 0 : ulong nonce_rollback_lamports =
1246 0 : ( txn_out->accounts.nonce_idx_in_txn==FD_FEE_PAYER_TXN_IDX )
1247 0 : ? txn_out->accounts.fee_payer_rollback_lamports
1248 0 : : txn_out->accounts.account[ txn_out->accounts.nonce_idx_in_txn ]->prior_lamports;
1249 0 : write_account_to_result1(
1250 0 : txn_out->accounts.keys[txn_out->accounts.nonce_idx_in_txn].uc,
1251 0 : nonce_rollback_lamports,
1252 0 : txn_out->accounts.account[ txn_out->accounts.nonce_idx_in_txn ]->prior_owner,
1253 0 : txn_out->accounts.nonce_rollback_data_len,
1254 0 : txn_out->accounts.nonce_rollback_data,
1255 0 : txn_out->accounts.account[ txn_out->accounts.nonce_idx_in_txn ]->prior_executable,
1256 0 : txn_result->rollback_accounts,
1257 0 : &txn_result->rollback_accounts_count,
1258 0 : &_l,
1259 0 : out_end
1260 0 : );
1261 0 : }
1262 0 : }
1263 :
1264 0 : if( !txn_out->err.is_fees_only ) {
1265 : /* Executed: writable accounts. */
1266 0 : for( ulong j=0UL; j<txn_out->accounts.cnt; j++ ) {
1267 0 : if( !fd_runtime_account_is_writable_idx( txn_in, txn_out, (ushort)j ) ) {
1268 0 : continue;
1269 0 : }
1270 :
1271 0 : write_account_to_result(
1272 0 : txn_out->accounts.account[j],
1273 0 : txn_result->modified_accounts,
1274 0 : &txn_result->modified_accounts_count,
1275 0 : &_l,
1276 0 : out_end
1277 0 : );
1278 0 : }
1279 0 : }
1280 :
1281 0 : *txn_result_out = txn_result;
1282 0 : return FD_SCRATCH_ALLOC_FINI( l, 1UL ) - (ulong)out_buf;
1283 0 : }
1284 :
1285 : void
1286 : fd_dump_txn_to_protobuf( fd_runtime_t * runtime,
1287 : fd_bank_t * bank,
1288 : fd_txn_in_t const * txn_in,
1289 0 : fd_txn_out_t * txn_out ) {
1290 0 : fd_spad_t * spad = fd_spad_join( fd_spad_new( runtime->log.dumping_mem, 1UL<<28UL ) );
1291 :
1292 0 : FD_SPAD_FRAME_BEGIN( spad ) {
1293 : // Get base58-encoded tx signature
1294 0 : const fd_ed25519_sig_t * signatures = fd_txn_get_signatures( TXN( txn_in->txn ), txn_in->txn->payload );
1295 0 : char encoded_signature[FD_BASE58_ENCODED_64_SZ];
1296 0 : fd_base58_encode_64( signatures[0], NULL, encoded_signature );
1297 :
1298 0 : fd_exec_test_txn_context_t txn_context_msg = FD_EXEC_TEST_TXN_CONTEXT_INIT_DEFAULT;
1299 0 : create_txn_context_protobuf_from_txn( &txn_context_msg, runtime, bank, txn_in, txn_out, spad );
1300 :
1301 : /* Output to file */
1302 0 : ulong out_buf_size = 100UL<<20UL; // 100 MB
1303 0 : uchar * out = fd_spad_alloc( spad, alignof(uchar), out_buf_size );
1304 0 : pb_ostream_t stream = pb_ostream_from_buffer( out, out_buf_size );
1305 0 : if( pb_encode( &stream, FD_EXEC_TEST_TXN_CONTEXT_FIELDS, &txn_context_msg ) ) {
1306 0 : char output_filepath[ PATH_MAX ];
1307 0 : snprintf( output_filepath, PATH_MAX, "%s/txn-%s.txnctx", runtime->log.dump_proto_ctx->dump_proto_output_dir, encoded_signature );
1308 0 : FILE * file = fopen(output_filepath, "wb");
1309 0 : if( file ) {
1310 0 : fwrite( out, 1, stream.bytes_written, file );
1311 0 : fclose( file );
1312 0 : }
1313 0 : }
1314 0 : } FD_SPAD_FRAME_END;
1315 0 : }
1316 :
1317 : void
1318 : fd_dump_txn_context_to_protobuf( fd_txn_dump_ctx_t * txn_dump_ctx,
1319 : fd_runtime_t * runtime,
1320 : fd_bank_t * bank,
1321 : fd_txn_in_t const * txn_in,
1322 0 : fd_txn_out_t * txn_out ) {
1323 0 : fd_txn_dump_context_reset( txn_dump_ctx );
1324 :
1325 0 : txn_dump_ctx->fixture.has_metadata = true;
1326 0 : strncpy(
1327 0 : txn_dump_ctx->fixture.metadata.fn_entrypoint,
1328 0 : "sol_compat_txn_execute_v1",
1329 0 : sizeof(txn_dump_ctx->fixture.metadata.fn_entrypoint)-1UL
1330 0 : );
1331 :
1332 0 : txn_dump_ctx->fixture.has_input = true;
1333 0 : create_txn_context_protobuf_from_txn( &txn_dump_ctx->fixture.input,
1334 0 : runtime, bank, txn_in, txn_out,
1335 0 : txn_dump_ctx->spad );
1336 0 : }
1337 :
1338 : void
1339 : fd_dump_txn_result_to_protobuf( fd_txn_dump_ctx_t * txn_dump_ctx,
1340 : fd_txn_in_t const * txn_in,
1341 : fd_txn_out_t * txn_out,
1342 0 : int exec_res ) {
1343 0 : txn_dump_ctx->fixture.has_output = true;
1344 :
1345 0 : ulong buf_sz = 100UL<<20UL;
1346 0 : void * buf = fd_spad_alloc( txn_dump_ctx->spad, alignof(fd_exec_test_txn_result_t), buf_sz );
1347 0 : fd_exec_test_txn_result_t * result = NULL;
1348 0 : create_txn_result_protobuf_from_txn( &result, buf, buf_sz, txn_in, txn_out, exec_res );
1349 0 : txn_dump_ctx->fixture.output = *result;
1350 0 : }
1351 :
1352 : void
1353 : fd_dump_txn_fixture_to_file( fd_txn_dump_ctx_t * txn_dump_ctx,
1354 : fd_dump_proto_ctx_t const * dump_proto_ctx,
1355 0 : fd_txn_in_t const * txn_in ) {
1356 0 : const fd_ed25519_sig_t * signatures = fd_txn_get_signatures( TXN( txn_in->txn ), txn_in->txn->payload );
1357 0 : char encoded_signature[FD_BASE58_ENCODED_64_SZ];
1358 0 : fd_base58_encode_64( signatures[0], NULL, encoded_signature );
1359 :
1360 0 : FD_SPAD_FRAME_BEGIN( txn_dump_ctx->spad ) {
1361 0 : ulong out_buf_size = 100UL<<20UL;
1362 0 : uchar * out = fd_spad_alloc( txn_dump_ctx->spad, alignof(uchar), out_buf_size );
1363 0 : pb_ostream_t stream = pb_ostream_from_buffer( out, out_buf_size );
1364 :
1365 0 : char output_filepath[ PATH_MAX ];
1366 :
1367 0 : if( dump_proto_ctx->dump_txn_as_fixture ) {
1368 0 : if( pb_encode( &stream, FD_EXEC_TEST_TXN_FIXTURE_FIELDS, &txn_dump_ctx->fixture ) ) {
1369 0 : snprintf( output_filepath, PATH_MAX, "%s/txn-%s.fix", dump_proto_ctx->dump_proto_output_dir, encoded_signature );
1370 0 : FILE * file = fopen( output_filepath, "wb" );
1371 0 : if( file ) {
1372 0 : fwrite( out, 1, stream.bytes_written, file );
1373 0 : fclose( file );
1374 0 : }
1375 0 : }
1376 0 : } else {
1377 0 : if( pb_encode( &stream, FD_EXEC_TEST_TXN_CONTEXT_FIELDS, &txn_dump_ctx->fixture.input ) ) {
1378 0 : snprintf( output_filepath, PATH_MAX, "%s/txn-%s.txnctx", dump_proto_ctx->dump_proto_output_dir, encoded_signature );
1379 0 : FILE * file = fopen( output_filepath, "wb" );
1380 0 : if( file ) {
1381 0 : fwrite( out, 1, stream.bytes_written, file );
1382 0 : fclose( file );
1383 0 : }
1384 0 : }
1385 0 : }
1386 0 : } FD_SPAD_FRAME_END;
1387 0 : }
1388 :
1389 : void
1390 : fd_dump_block_to_protobuf_collect_tx( fd_block_dump_ctx_t * dump_block_ctx,
1391 0 : fd_txn_p_t const * txn ) {
1392 0 : if( FD_UNLIKELY( dump_block_ctx->txns_to_dump_cnt>=FD_BLOCK_DUMP_CTX_MAX_TXN_CNT ) ) {
1393 0 : FD_LOG_ERR(( "Please increase FD_BLOCK_DUMP_CTX_MAX_TXN_CNT to dump more than %lu transactions.", FD_BLOCK_DUMP_CTX_MAX_TXN_CNT ));
1394 0 : return;
1395 0 : }
1396 0 : fd_memcpy( &dump_block_ctx->txns_to_dump[dump_block_ctx->txns_to_dump_cnt++], txn, sizeof(fd_txn_p_t) );
1397 0 : }
1398 :
1399 : void
1400 : fd_dump_block_to_protobuf( fd_block_dump_ctx_t * dump_block_ctx,
1401 : fd_banks_t * banks,
1402 : fd_bank_t * bank,
1403 : fd_accdb_t * accdb,
1404 : fd_dump_proto_ctx_t const * dump_proto_ctx,
1405 0 : fd_runtime_stack_t * runtime_stack ) {
1406 0 : if( FD_UNLIKELY( dump_block_ctx==NULL ) ) {
1407 0 : FD_LOG_WARNING(( "Block dumping context may not be NULL when dumping blocks." ));
1408 0 : return;
1409 0 : }
1410 :
1411 0 : FD_SPAD_FRAME_BEGIN( dump_block_ctx->spad ) {
1412 0 : if( FD_UNLIKELY( dump_proto_ctx==NULL ) ) {
1413 0 : FD_LOG_WARNING(( "Protobuf dumping context may not be NULL when dumping blocks." ));
1414 0 : return;
1415 0 : }
1416 :
1417 : /* Dump the block context */
1418 0 : create_block_context_protobuf_from_block( dump_block_ctx, banks, bank, accdb, runtime_stack );
1419 :
1420 : /* Output to file */
1421 0 : ulong out_buf_size = 1UL<<30UL; /* 1 GB */
1422 0 : uint8_t * out = fd_spad_alloc( dump_block_ctx->spad, alignof(uint8_t), out_buf_size );
1423 0 : pb_ostream_t stream = pb_ostream_from_buffer( out, out_buf_size );
1424 0 : if( pb_encode( &stream, FD_EXEC_TEST_BLOCK_CONTEXT_FIELDS, &dump_block_ctx->block_context ) ) {
1425 0 : char output_filepath[ PATH_MAX ];
1426 0 : snprintf( output_filepath, PATH_MAX, "%s/block-%lu.blockctx", dump_proto_ctx->dump_proto_output_dir, bank->f.slot );
1427 0 : FILE * file = fopen(output_filepath, "wb");
1428 0 : if( file ) {
1429 0 : fwrite( out, 1, stream.bytes_written, file );
1430 0 : fclose( file );
1431 0 : }
1432 0 : }
1433 0 : } FD_SPAD_FRAME_END;
1434 0 : }
1435 :
1436 : void
1437 : fd_dump_vm_syscall_to_protobuf( fd_vm_t const * vm,
1438 0 : char const * fn_name ) {
1439 0 : char const * syscall_name_filter = vm->instr_ctx->runtime->log.dump_proto_ctx->dump_syscall_name_filter;
1440 0 : if( syscall_name_filter && strlen( syscall_name_filter ) && strcmp( syscall_name_filter, fn_name ) ) {
1441 0 : return;
1442 0 : }
1443 :
1444 0 : fd_spad_t * spad = fd_spad_join( fd_spad_new( vm->instr_ctx->runtime->log.dumping_mem, 1UL<<28UL ) );
1445 :
1446 0 : FD_SPAD_FRAME_BEGIN( spad ) {
1447 :
1448 0 : fd_ed25519_sig_t signature;
1449 0 : memcpy( signature, (uchar const *)vm->instr_ctx->txn_in->txn->payload + TXN( vm->instr_ctx->txn_in->txn )->signature_off, sizeof(fd_ed25519_sig_t) );
1450 0 : char encoded_signature[FD_BASE58_ENCODED_64_SZ];
1451 0 : fd_base58_encode_64( signature, NULL, encoded_signature );
1452 :
1453 0 : char filename[ PATH_MAX ];
1454 0 : snprintf( filename,
1455 0 : PATH_MAX,
1456 0 : "%s/syscall-%s-%s-%d-%hhu-%lu.sysctx",
1457 0 : vm->instr_ctx->runtime->log.dump_proto_ctx->dump_proto_output_dir,
1458 0 : fn_name,
1459 0 : encoded_signature,
1460 0 : vm->instr_ctx->runtime->instr.current_idx,
1461 0 : vm->instr_ctx->runtime->instr.stack_sz,
1462 0 : vm->cu );
1463 :
1464 : /* The generated filename should be unique for every call. Silently return otherwise. */
1465 0 : if( FD_UNLIKELY( access( filename, F_OK )!=-1 ) ) {
1466 0 : return;
1467 0 : }
1468 :
1469 0 : fd_exec_test_syscall_context_t sys_ctx = FD_EXEC_TEST_SYSCALL_CONTEXT_INIT_ZERO;
1470 :
1471 : /* SyscallContext -> vm_ctx */
1472 0 : sys_ctx.has_vm_ctx = 1;
1473 :
1474 : /* SyscallContext -> vm_ctx -> heap_max */
1475 0 : sys_ctx.vm_ctx.heap_max = vm->heap_max; /* should be equiv. to txn_ctx->heap_sz */
1476 :
1477 : /* SyscallContext -> vm_ctx -> rodata */
1478 0 : sys_ctx.vm_ctx.rodata = fd_spad_alloc( spad, alignof(pb_bytes_array_t), PB_BYTES_ARRAY_T_ALLOCSIZE( vm->rodata_sz ) );
1479 0 : sys_ctx.vm_ctx.rodata->size = (pb_size_t) vm->rodata_sz;
1480 0 : fd_memcpy( sys_ctx.vm_ctx.rodata->bytes, vm->rodata, vm->rodata_sz );
1481 :
1482 : /* SyscallContext -> vm_ctx -> r0-11 */
1483 0 : sys_ctx.vm_ctx.r0 = vm->reg[0];
1484 0 : sys_ctx.vm_ctx.r1 = vm->reg[1];
1485 0 : sys_ctx.vm_ctx.r2 = vm->reg[2];
1486 0 : sys_ctx.vm_ctx.r3 = vm->reg[3];
1487 0 : sys_ctx.vm_ctx.r4 = vm->reg[4];
1488 0 : sys_ctx.vm_ctx.r5 = vm->reg[5];
1489 0 : sys_ctx.vm_ctx.r6 = vm->reg[6];
1490 0 : sys_ctx.vm_ctx.r7 = vm->reg[7];
1491 0 : sys_ctx.vm_ctx.r8 = vm->reg[8];
1492 0 : sys_ctx.vm_ctx.r9 = vm->reg[9];
1493 0 : sys_ctx.vm_ctx.r10 = vm->reg[10];
1494 0 : sys_ctx.vm_ctx.r11 = vm->reg[11];
1495 :
1496 : /* SyscallContext -> vm_ctx -> entry_pc */
1497 0 : sys_ctx.vm_ctx.entry_pc = vm->entry_pc;
1498 :
1499 : /* SyscallContext -> vm_ctx -> return_data */
1500 0 : sys_ctx.vm_ctx.has_return_data = 1;
1501 :
1502 : /* SyscallContext -> vm_ctx -> return_data -> data */
1503 0 : sys_ctx.vm_ctx.return_data.data = fd_spad_alloc( spad, alignof(pb_bytes_array_t), PB_BYTES_ARRAY_T_ALLOCSIZE( vm->instr_ctx->txn_out->details.return_data.len ) );
1504 0 : sys_ctx.vm_ctx.return_data.data->size = (pb_size_t)vm->instr_ctx->txn_out->details.return_data.len;
1505 0 : fd_memcpy( sys_ctx.vm_ctx.return_data.data->bytes, vm->instr_ctx->txn_out->details.return_data.data, vm->instr_ctx->txn_out->details.return_data.len );
1506 :
1507 : /* SyscallContext -> vm_ctx -> return_data -> program_id */
1508 0 : sys_ctx.vm_ctx.return_data.program_id = fd_spad_alloc( spad, alignof(pb_bytes_array_t), sizeof(fd_pubkey_t) );
1509 0 : sys_ctx.vm_ctx.return_data.program_id->size = sizeof(fd_pubkey_t);
1510 0 : fd_memcpy( sys_ctx.vm_ctx.return_data.program_id->bytes, vm->instr_ctx->txn_out->details.return_data.program_id.key, sizeof(fd_pubkey_t) );
1511 :
1512 : /* SyscallContext -> vm_ctx -> sbpf_version */
1513 0 : sys_ctx.vm_ctx.sbpf_version = (uint)vm->sbpf_version;
1514 :
1515 : /* SyscallContext -> instr_ctx */
1516 0 : sys_ctx.has_instr_ctx = 1;
1517 0 : create_instr_context_protobuf_from_instructions( &sys_ctx.instr_ctx,
1518 0 : vm->instr_ctx->runtime,
1519 0 : vm->instr_ctx->bank,
1520 0 : vm->instr_ctx->txn_out,
1521 0 : vm->instr_ctx->instr,
1522 0 : spad );
1523 :
1524 : /* SyscallContext -> syscall_invocation */
1525 0 : sys_ctx.has_syscall_invocation = 1;
1526 :
1527 : /* SyscallContext -> syscall_invocation -> function_name */
1528 0 : sys_ctx.syscall_invocation.function_name.size = fd_uint_min( (uint) strlen(fn_name), sizeof(sys_ctx.syscall_invocation.function_name.bytes) );
1529 0 : fd_memcpy( sys_ctx.syscall_invocation.function_name.bytes,
1530 0 : fn_name,
1531 0 : sys_ctx.syscall_invocation.function_name.size );
1532 :
1533 : /* SyscallContext -> syscall_invocation -> heap_prefix */
1534 0 : sys_ctx.syscall_invocation.heap_prefix = fd_spad_alloc( spad, 8UL, PB_BYTES_ARRAY_T_ALLOCSIZE( vm->heap_max ) );
1535 0 : sys_ctx.syscall_invocation.heap_prefix->size = (pb_size_t) vm->instr_ctx->txn_out->details.compute_budget.heap_size;
1536 0 : fd_memcpy( sys_ctx.syscall_invocation.heap_prefix->bytes, vm->heap, vm->instr_ctx->txn_out->details.compute_budget.heap_size );
1537 :
1538 : /* SyscallContext -> syscall_invocation -> stack_prefix */
1539 0 : pb_size_t stack_sz = (pb_size_t)FD_VM_STACK_MAX;
1540 0 : sys_ctx.syscall_invocation.stack_prefix = fd_spad_alloc( spad, 8UL, PB_BYTES_ARRAY_T_ALLOCSIZE( stack_sz ) );
1541 0 : sys_ctx.syscall_invocation.stack_prefix->size = stack_sz;
1542 0 : fd_memcpy( sys_ctx.syscall_invocation.stack_prefix->bytes, vm->stack, stack_sz );
1543 :
1544 : /* Output to file */
1545 0 : ulong out_buf_size = 1UL<<29UL; /* 128 MB */
1546 0 : uint8_t * out = fd_spad_alloc( spad, alignof(uint8_t), out_buf_size );
1547 0 : pb_ostream_t stream = pb_ostream_from_buffer( out, out_buf_size );
1548 0 : if( pb_encode( &stream, FD_EXEC_TEST_SYSCALL_CONTEXT_FIELDS, &sys_ctx ) ) {
1549 0 : FILE * file = fopen(filename, "wb");
1550 0 : if( file ) {
1551 0 : fwrite( out, 1, stream.bytes_written, file );
1552 0 : fclose( file );
1553 0 : }
1554 0 : }
1555 0 : } FD_SPAD_FRAME_END;
1556 0 : }
|