LCOV - code coverage report
Current view: top level - ballet/txn - fuzz_txn_parse.c (source / functions) Hit Total Coverage
Test: cov.lcov Lines: 9 9 100.0 %
Date: 2025-01-08 12:08:44 Functions: 1 1 100.0 %

          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 : #ifndef FD_DEBUG_MODE
      19          18 :   fd_log_level_core_set(3); /* crash on warning log */
      20          18 : #endif
      21          18 :   atexit( fd_halt );
      22          18 :   return 0;
      23          18 : }
      24             : 
      25             : int
      26             : LLVMFuzzerTestOneInput( uchar const * data,
      27             :                         ulong         size ) {
      28             :   if( FD_UNLIKELY( size>=1232UL ) ) return -1;
      29             : 
      30             :   uchar __attribute__((aligned((alignof(fd_txn_t))))) txn_buf[ FD_TXN_MAX_SZ ];
      31             :   fd_txn_parse_counters_t counters = {0};
      32             : 
      33             :   ulong sz = fd_txn_parse( data, size, txn_buf, &counters );
      34             :   __asm__ volatile( "" : "+m,r"(sz) : : "memory" ); /* prevent optimization */
      35             : 
      36             :   if( FD_LIKELY( sz>0UL ) ) {
      37             :     FD_FUZZ_MUST_BE_COVERED;
      38             :     fd_txn_t * txn = (fd_txn_t *)txn_buf;
      39             :     FD_TEST( fd_txn_footprint( txn->instr_cnt, txn->addr_table_lookup_cnt )<=FD_TXN_MAX_SZ );
      40             :   }
      41             : 
      42             :   FD_FUZZ_MUST_BE_COVERED;
      43             :   return 0;
      44             : }

Generated by: LCOV version 1.14