Fuzz introspector
For issues and ideas: https://github.com/ossf/fuzz-introspector/issues

Project functions overview

The following table shows data about each function in the project. The functions included in this table correspond to all functions that exist in the executables of the fuzzers. As such, there may be functions that are from third-party libraries.

For further technical details on the meaning of columns in the below table, please see the Glossary .

Func name Functions filename Args Function call depth Reached by Fuzzers Runtime reached by Fuzzers Combined reached by Fuzzers Fuzzers runtime hit Func lines hit % I Count BB Count Cyclomatic complexity Functions reached Reached by functions Accumulated cyclomatic complexity Undiscovered complexity

Fuzzer details

Fuzzer: croaring_fuzzer

Call tree

The calltree shows the control flow of the fuzzer. This is overlaid with coverage information to display how much of the potential code a fuzzer can reach is in fact covered at runtime. In the following there is a link to a detailed calltree visualisation as well as a bitmap showing a high-level view of the calltree. For further information about these topics please see the glossary for full calltree and calltree overview

Call tree overview bitmap:

The distribution of callsites in terms of coloring is
Color Runtime hitcount Callsite count Percentage
red 0 76 18.0%
gold [1:9] 6 1.42%
yellow [10:29] 0 0.0%
greenyellow [30:49] 2 0.47%
lawngreen 50+ 337 80.0%
All colors 421 100

Fuzz blockers

The following nodes represent call sites where fuzz blockers occur.

Amount of callsites blocked Calltree index Parent function Callsite Largest blocked function
15 67 roaring_bitmap_set_copy_on_write call site: 00067 roaring_unshare_all
6 154 array_container_try_add call site: 00154 bitset_container_from_array
6 214 art_node_child_at call site: 00214 art_node_prev_child
5 113 avx2_harley_seal_popcount256 call site: 00113 _scalar_bitset_container_compute_cardinality
5 407 containerptr_roaring64_bitmap_add call site: 00407 container_free
4 58 run_container_free call site: 00058 shared_container_free
3 89 bitset_container_compute_cardinality call site: 00089 avx512_vpopcount
3 134 roaring_bitmap_contains call site: 00134 array_container_contains
2 43 array_container_grow call site: 00043 roaring_free
2 165 makeRoomAtIndex call site: 00165 container_free
2 176 bitmap32 call site: 00176 printf
2 189 roaring64_bitmap_free call site: 00189 art_free

Runtime coverage analysis

Covered functions
182
Functions that are reachable but not covered
33
Reachable functions
210
Percentage of reachable functions covered
84.29%
NB: The sum of covered functions and functions that are reachable but not covered need not be equal to Reachable functions . This is because the reachability analysis is an approximation and thus at runtime some functions may be covered that are not included in the reachability analysis. This is a limitation of our static analysis capabilities.
Function name source code lines source lines hit percentage hit

Files reached

filename functions hit
/src/croaring_fuzzer.c 3
/src/croaring/src/roaring.c 7
/src/croaring/src/memory.c 5
/src/croaring/src/roaring_array.c 9
/src/croaring/src/containers/bitset.c 10
/src/croaring/src/isadetection.c 5
/src/croaring/src/containers/run.c 11
/src/croaring/include/roaring/containers/run.h 6
/src/croaring/src/containers/array.c 9
/src/croaring/include/roaring/containers/array.h 6
/src/croaring/src/containers/containers.c 5
/src/croaring/include/roaring/portability.h 4
/src/croaring/include/roaring/roaring.h 3
/src/croaring/include/roaring/containers/containers.h 5
/src/croaring/include/roaring/bitset_util.h 6
/src/croaring/include/roaring/roaring_array.h 6
/src/croaring/include/roaring/array_util.h 1
/src/croaring/include/roaring/containers/bitset.h 3
/src/croaring/src/containers/convert.c 1
/src/croaring/src/roaring64.c 24
/src/croaring/src/art/art.c 77
/usr/include/x86_64-linux-gnu/bits/byteswap.h 1

Fuzzer: croaring_fuzzer_cc

Call tree

The calltree shows the control flow of the fuzzer. This is overlaid with coverage information to display how much of the potential code a fuzzer can reach is in fact covered at runtime. In the following there is a link to a detailed calltree visualisation as well as a bitmap showing a high-level view of the calltree. For further information about these topics please see the glossary for full calltree and calltree overview

Call tree overview bitmap:

The distribution of callsites in terms of coloring is
Color Runtime hitcount Callsite count Percentage
red 0 430 26.5%
gold [1:9] 12 0.73%
yellow [10:29] 18 1.10%
greenyellow [30:49] 13 0.80%
lawngreen 50+ 1149 70.8%
All colors 1622 100

Fuzz blockers

The following nodes represent call sites where fuzz blockers occur.

Amount of callsites blocked Calltree index Parent function Callsite Largest blocked function
18 838 union_vector16 call site: 00838 avx512_union_uint16
15 689 container_andnot call site: 00689 bitset_bitset_container_andnot
15 957 container_xor call site: 00957 bitset_bitset_container_xor
13 617 avx2_harley_seal_popcount256 call site: 00617 array_container_from_bitset
12 446 container_and_cardinality call site: 00446 bitset_container_and_justcard
12 804 container_or call site: 00804 bitset_container_or
11 145 convert_run_optimize call site: 00145 run_container_create_given_capacity
10 546 container_and call site: 00546 bitset_bitset_container_intersection
10 1178 roaring_inplace_merge_bulk call site: 01178 container_ior
10 1259 container_iandnot call site: 01259 run_bitset_container_iandnot
10 1317 bitset_container_equals call site: 01317 run_container_equals_bitset
9 1378 container_is_subset call site: 01378 run_container_is_subset_bitset

Runtime coverage analysis

Covered functions
458
Functions that are reachable but not covered
100
Reachable functions
609
Percentage of reachable functions covered
83.58%
NB: The sum of covered functions and functions that are reachable but not covered need not be equal to Reachable functions . This is because the reachability analysis is an approximation and thus at runtime some functions may be covered that are not included in the reachability analysis. This is a limitation of our static analysis capabilities.
Function name source code lines source lines hit percentage hit

Files reached

filename functions hit
/src/croaring_fuzzer_cc.cc 2
/src/croaring/cpp/roaring/roaring.hh 61
/src/croaring/include/roaring/roaring.h 7
/src/croaring/src/roaring.c 64
/src/croaring/src/roaring_array.c 25
/src/croaring/src/memory.c 5
/src/croaring/include/roaring/roaring_array.h 8
/src/croaring/include/roaring/array_util.h 4
/src/croaring/include/roaring/portability.h 5
/src/croaring/include/roaring/containers/containers.h 39
/src/croaring/src/containers/containers.c 7
/src/croaring/src/containers/bitset.c 46
/src/croaring/src/isadetection.c 5
/src/croaring/src/containers/array.c 25
/src/croaring/src/containers/run.c 28
/src/croaring/include/roaring/containers/bitset.h 9
/src/croaring/include/roaring/containers/array.h 18
/src/croaring/src/containers/convert.c 10
/src/croaring/include/roaring/containers/run.h 26
/src/croaring/include/roaring/bitset_util.h 20
/src/croaring/src/bitset_util.c 16
/src/croaring/src/array_util.c 34
/src/croaring/src/containers/mixed_intersection.c 11
/src/croaring/src/containers/mixed_andnot.c 19
/src/croaring/src/containers/mixed_union.c 6
/src/croaring/src/containers/mixed_xor.c 16
/src/croaring/src/containers/mixed_equal.c 3
/src/croaring/src/containers/mixed_subset.c 5
/src/croaring/src/containers/mixed_negation.c 8

Analyses and suggestions

Optimal target analysis

Remaining optimal interesting functions

The following table shows a list of functions that are optimal targets. Optimal targets are identified by finding the functions that in combination, yield a high code coverage.

Func name Functions filename Arg count Args Function depth hitcount instr count bb count cyclomatic complexity Reachable functions Incoming references total cyclomatic complexity Unreached complexity
roaring_bitmap_add_offset /src/croaring/src/roaring.c 2 ['N/A', 'size_t'] 10 0 188 39 16 131 0 662 123
roaring64_bitmap_remove_range /src/croaring/src/roaring64.c 3 ['N/A', 'size_t', 'size_t'] 13 0 24 6 3 138 0 592 123
roaring64_bitmap_portable_deserialize_frozen /src/croaring/src/roaring64.c 2 ['N/A', 'size_t'] 10 0 207 47 21 97 0 403 88
roaring_bitmap_or_many /src/croaring/src/roaring.c 2 ['size_t', 'N/A'] 12 0 58 14 6 136 0 612 85
roaring_bitmap_xor_many /src/croaring/src/roaring.c 2 ['size_t', 'N/A'] 12 0 58 14 6 139 0 609 83
roaring64_bitmap_shrink_to_fit /src/croaring/src/roaring64.c 1 ['N/A'] 6 0 85 14 6 56 0 226 75
roaring64_bitmap_to_uint64_array /src/croaring/src/roaring64.c 2 ['N/A', 'N/A'] 7 0 16 3 2 47 0 191 61
roaring_bitmap_range_uint32_array /src/croaring/src/roaring.c 4 ['N/A', 'size_t', 'size_t', 'N/A'] 4 0 19 3 2 12 0 82 53
roaring_bitmap_flip /src/croaring/src/roaring.c 3 ['N/A', 'size_t', 'size_t'] 12 0 36 9 4 102 0 460 52
roaring_bitmap_rank_many /src/croaring/src/roaring.c 4 ['N/A', 'N/A', 'N/A', 'N/A'] 6 0 167 28 11 17 0 124 41

Implementing fuzzers that target the above functions will improve reachability such that it becomes:

Functions statically reachable by fuzzers
73.0%
746 / 1017
Cyclomatic complexity statically reachable by fuzzers
74.0%
4288 / 5770

All functions overview

If you implement fuzzers for these functions, the status of all functions in the project will be:

Func name Functions filename Args Function call depth Reached by Fuzzers Runtime reached by Fuzzers Combined reached by Fuzzers Fuzzers runtime hit Func lines hit % I Count BB Count Cyclomatic complexity Functions reached Reached by functions Accumulated cyclomatic complexity Undiscovered complexity

Files and Directories in report

This section shows which files and directories are considered in this report. The main reason for showing this is fuzz introspector may include more code in the reasoning than is desired. This section helps identify if too many files/directories are included, e.g. third party code, which may be irrelevant for the threat model. In the event too much is included, fuzz introspector supports a configuration file that can exclude data from the report. See the following link for more information on how to create a config file: link

Files in report

Source file Reached by Covered by
[] []
/src/croaring_fuzzer.c ['croaring_fuzzer'] ['croaring_fuzzer']
/src/croaring/src/containers/mixed_andnot.c ['croaring_fuzzer_cc'] ['croaring_fuzzer_cc']
/src/croaring/src/containers/mixed_xor.c ['croaring_fuzzer_cc'] ['croaring_fuzzer_cc']
/usr/include/x86_64-linux-gnu/bits/byteswap.h ['croaring_fuzzer'] []
/src/croaring/src/memory.c ['croaring_fuzzer', 'croaring_fuzzer_cc'] ['croaring_fuzzer', 'croaring_fuzzer_cc']
/src/croaring/src/containers/bitset.c ['croaring_fuzzer', 'croaring_fuzzer_cc'] ['croaring_fuzzer', 'croaring_fuzzer_cc']
/src/croaring/include/roaring/portability.h ['croaring_fuzzer', 'croaring_fuzzer_cc'] ['croaring_fuzzer', 'croaring_fuzzer_cc']
/src/croaring/include/roaring/roaring.h ['croaring_fuzzer', 'croaring_fuzzer_cc'] ['croaring_fuzzer', 'croaring_fuzzer_cc']
/src/croaring/cpp/roaring/roaring.hh ['croaring_fuzzer_cc'] ['croaring_fuzzer_cc']
/src/croaring/include/roaring/containers/containers.h ['croaring_fuzzer', 'croaring_fuzzer_cc'] ['croaring_fuzzer', 'croaring_fuzzer_cc']
/src/croaring/src/containers/array.c ['croaring_fuzzer', 'croaring_fuzzer_cc'] ['croaring_fuzzer', 'croaring_fuzzer_cc']
/usr/local/bin/../include/c++/v1/stdexcept [] []
/src/croaring/src/isadetection.c ['croaring_fuzzer', 'croaring_fuzzer_cc'] ['croaring_fuzzer', 'croaring_fuzzer_cc']
/src/croaring/include/roaring/containers/array.h ['croaring_fuzzer', 'croaring_fuzzer_cc'] ['croaring_fuzzer', 'croaring_fuzzer_cc']
/src/croaring/include/roaring/containers/bitset.h ['croaring_fuzzer', 'croaring_fuzzer_cc'] ['croaring_fuzzer', 'croaring_fuzzer_cc']
/src/croaring/src/containers/convert.c ['croaring_fuzzer', 'croaring_fuzzer_cc'] ['croaring_fuzzer_cc']
/src/croaring/src/roaring_array.c ['croaring_fuzzer', 'croaring_fuzzer_cc'] ['croaring_fuzzer', 'croaring_fuzzer_cc']
/src/croaring/src/bitset.c [] []
/src/croaring/src/roaring64.c ['croaring_fuzzer'] ['croaring_fuzzer']
/src/croaring/include/roaring/array_util.h ['croaring_fuzzer', 'croaring_fuzzer_cc'] ['croaring_fuzzer', 'croaring_fuzzer_cc']
/src/croaring/include/roaring/bitset/bitset.h [] []
/src/croaring/src/containers/containers.c ['croaring_fuzzer', 'croaring_fuzzer_cc'] ['croaring_fuzzer', 'croaring_fuzzer_cc']
/src/croaring/src/containers/mixed_equal.c ['croaring_fuzzer_cc'] ['croaring_fuzzer_cc']
/src/croaring/src/containers/mixed_subset.c ['croaring_fuzzer_cc'] ['croaring_fuzzer_cc']
/src/croaring/src/bitset_util.c ['croaring_fuzzer_cc'] ['croaring_fuzzer_cc']
/src/croaring/src/art/art.c ['croaring_fuzzer'] ['croaring_fuzzer']
/src/croaring/src/containers/mixed_negation.c ['croaring_fuzzer_cc'] ['croaring_fuzzer_cc']
/src/croaring/src/containers/mixed_union.c ['croaring_fuzzer_cc'] ['croaring_fuzzer_cc']
/src/croaring/include/roaring/roaring_array.h ['croaring_fuzzer', 'croaring_fuzzer_cc'] ['croaring_fuzzer', 'croaring_fuzzer_cc']
/src/croaring/include/roaring/containers/run.h ['croaring_fuzzer', 'croaring_fuzzer_cc'] ['croaring_fuzzer', 'croaring_fuzzer_cc']
/src/croaring/include/roaring/bitset_util.h ['croaring_fuzzer', 'croaring_fuzzer_cc'] ['croaring_fuzzer', 'croaring_fuzzer_cc']
/src/croaring/src/containers/run.c ['croaring_fuzzer', 'croaring_fuzzer_cc'] ['croaring_fuzzer', 'croaring_fuzzer_cc']
/src/croaring/include/roaring/roaring64.h [] []
/src/croaring/src/containers/mixed_intersection.c ['croaring_fuzzer_cc'] ['croaring_fuzzer_cc']
/src/croaring/src/array_util.c ['croaring_fuzzer_cc'] ['croaring_fuzzer_cc']
/src/croaring/src/roaring.c ['croaring_fuzzer', 'croaring_fuzzer_cc'] ['croaring_fuzzer', 'croaring_fuzzer_cc']
/src/croaring_fuzzer_cc.cc ['croaring_fuzzer_cc'] ['croaring_fuzzer_cc']

Directories in report

Directory
/usr/include/x86_64-linux-gnu/bits/
/src/
/usr/local/bin/../include/c++/v1/
/src/croaring/src/art/
/src/croaring/include/roaring/bitset/
/src/croaring/src/containers/
/src/croaring/src/
/src/croaring/cpp/roaring/
/src/croaring/include/roaring/
/src/croaring/include/roaring/containers/