Line data Source code
1 : #if !FD_HAS_HOSTED 2 : #error "This target requires FD_HAS_HOSTED" 3 : #endif 4 : 5 : #include <stdio.h> 6 : #include <stdlib.h> 7 : 8 : #include "../../util/fd_util.h" 9 : #include "../../util/sanitize/fd_fuzz.h" 10 : #include "fd_txn.h" 11 : 12 : int 13 : LLVMFuzzerInitialize( int * argc, 14 18 : char *** argv ) { 15 : /* Set up shell without signal handlers */ 16 18 : putenv( "FD_LOG_BACKTRACE=0" ); 17 18 : fd_boot( argc, argv ); 18 18 : atexit( fd_halt ); 19 18 : return 0; 20 18 : } 21 : 22 : int 23 : LLVMFuzzerTestOneInput( uchar const * data, 24 : ulong size ) { 25 : if( FD_UNLIKELY( size>=1232UL ) ) return -1; 26 : 27 : uchar __attribute__((aligned((alignof(fd_txn_t))))) txn_buf[ FD_TXN_MAX_SZ ]; 28 : fd_txn_parse_counters_t counters = {0}; 29 : 30 : ulong sz = fd_txn_parse( data, size, txn_buf, &counters ); 31 : __asm__ volatile( "" : "+m,r"(sz) : : "memory" ); /* prevent optimization */ 32 : 33 : if( FD_LIKELY( sz>0UL ) ) { 34 : FD_FUZZ_MUST_BE_COVERED; 35 : fd_txn_t * txn = (fd_txn_t *)txn_buf; 36 : FD_TEST( fd_txn_footprint( txn->instr_cnt, txn->addr_table_lookup_cnt )<=FD_TXN_MAX_SZ ); 37 : } 38 : 39 : FD_FUZZ_MUST_BE_COVERED; 40 : return 0; 41 : }