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: parse

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 727 39.9%
gold [1:9] 34 1.86%
yellow [10:29] 7 0.38%
greenyellow [30:49] 2 0.10%
lawngreen 50+ 1050 57.6%
All colors 1820 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
57 975 delim_run_can_close call site: 00975 scan_entity
50 818 CodeDelims::find call site: 00818 CodeDelims::find
50 884 delim_run_can_open call site: 00884 CodeDelims::find
46 224 FirstPass::parse_footnote call site: 00224 InlineStack::push
37 351 scan_atx_heading call site: 00351 CodeDelims::insert
37 1167 extract_attribute_block_content_from_header_text call site: 01167 CodeDelims::insert
25 740 FirstPass::run call site: 00740 Tree::append_text
25 784 Allocations::allocate_alignment call site: 00784 delim_run_can_open
24 712 TreeIndex::add call site: 00712 FirstPass::run
23 120 LineStart::is_at_eol call site: 00120
22 155 CodeDelims::insert call site: 00155 CodeDelims::insert
21 21 FootnoteDefs::contains call site: 00021 special_bytes

Runtime coverage analysis

Covered functions
436
Functions that are reachable but not covered
1
Reachable functions
3
Percentage of reachable functions covered
66.67%
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.
Warning: The number of covered functions are larger than the number of reachable functions. This means that there are more functions covered at runtime than are extracted using static analysis. This is likely a result of the static analysis component failing to extract the right call graph or the coverage runtime being compiled with sanitizers in code that the static analysis has not analysed. This can happen if lto/gold is not used in all places that coverage instrumentation is used.
Function name source code lines source lines hit percentage hit

Files reached

filename functions hit
fuzz/fuzz_targets/parse.rs 3
pulldown-cmark/src/parse.rs 42
pulldown-cmark/src/firstpass.rs 216
pulldown-cmark/src/scanners.rs 94
dos-fuzzer/src/literals.rs 30
pulldown-cmark/src/tree.rs 18
dos-fuzzer/src/main.rs 1
pulldown-cmark/src/strings.rs 19
pulldown-cmark/src/lib.rs 1
pulldown-cmark/src/linklabel.rs 13
pulldown-cmark/tests/html.rs 5
pulldown-cmark/src/html.rs 5
pulldown-cmark/build.rs 8
pulldown-cmark/src/puncttable.rs 2
pulldown-cmark/src/entities.rs 3

Fuzzer: commonmark_js

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 1181 55.2%
gold [1:9] 0 0.0%
yellow [10:29] 8 0.37%
greenyellow [30:49] 2 0.09%
lawngreen 50+ 946 44.2%
All colors 2137 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
57 1062 delim_run_can_close call site: 01062 scan_entity
54 322 FirstPass::parse_block call site: 00322 FirstPass::parse_footnote
50 971 delim_run_can_open call site: 00971 CodeDelims::find
49 912 CodeDelims::find call site: 00912 CodeDelims::find
45 1463 FirstPass::parse_block call site: 01463 unescape
39 864 Tree::append call site: 00864 delim_run_can_open
37 1197 FirstPass::parse_line call site: 01197 FirstPass::parse_table
36 1271 HeadingIndex::get call site: 01271 parse_inside_attribute_block
33 1910 pulldown_cmark_fuzz::commonmark_js call site: 01910 get
25 834 FirstPass::run call site: 00834 Tree::append_text
22 1427 FirstPass::parse_block call site: 01427 LineStart::scan_blockquote_tag
20 468 &[u8]::get call site: 00468 CodeDelims::insert

Runtime coverage analysis

Covered functions
636
Functions that are reachable but not covered
12
Reachable functions
17
Percentage of reachable functions covered
29.41%
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.
Warning: The number of covered functions are larger than the number of reachable functions. This means that there are more functions covered at runtime than are extracted using static analysis. This is likely a result of the static analysis component failing to extract the right call graph or the coverage runtime being compiled with sanitizers in code that the static analysis has not analysed. This can happen if lto/gold is not used in all places that coverage instrumentation is used.
Function name source code lines source lines hit percentage hit

Files reached

filename functions hit
fuzz/fuzz_targets/commonmark_js.rs 14
pulldown-cmark/src/firstpass.rs 216
pulldown-cmark/src/parse.rs 42
dos-fuzzer/src/literals.rs 31
dos-fuzzer/src/main.rs 1
fuzz/src/lib.rs 71
pulldown-cmark/src/tree.rs 18
pulldown-cmark/src/strings.rs 19
pulldown-cmark/src/main.rs 2
pulldown-cmark/src/scanners.rs 94
pulldown-cmark/src/lib.rs 7
pulldown-cmark/src/linklabel.rs 13
pulldown-cmark/tests/html.rs 5
pulldown-cmark/src/html.rs 5
pulldown-cmark/build.rs 8
pulldown-cmark/src/puncttable.rs 2
pulldown-cmark/src/entities.rs 3
pulldown-cmark/tests/errors.rs 1

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/pulldown-cmark/guide/prepare-specs.rs [] []
/src/pulldown-cmark/fuzz/fuzz_targets/commonmark_js.rs ['commonmark_js'] []
/src/pulldown-cmark/pulldown-cmark/build.rs ['parse', 'commonmark_js'] ['parse', 'commonmark_js']
/src/pulldown-cmark/dos-fuzzer/src/scoring.rs [] []
/src/pulldown-cmark/pulldown-cmark/tests/lib.rs [] []
/src/pulldown-cmark/pulldown-cmark/tests/suite/spec.rs [] []
/src/pulldown-cmark/pulldown-cmark/src/utils.rs [] []
/src/pulldown-cmark/pulldown-cmark/tests/suite/smart_punct.rs [] []
/src/pulldown-cmark/pulldown-cmark/tests/suite/strikethrough.rs [] []
/src/pulldown-cmark/fuzz/fuzz_targets/parse.rs ['parse'] []
/src/pulldown-cmark/pulldown-cmark/src/lib.rs ['parse', 'commonmark_js'] ['parse', 'commonmark_js']
/src/pulldown-cmark/pulldown-cmark/tests/suite/regression.rs [] []
/src/pulldown-cmark/dos-fuzzer/src/clock.rs [] []
/src/pulldown-cmark/pulldown-cmark/src/html.rs ['parse', 'commonmark_js'] ['parse', 'commonmark_js']
/src/pulldown-cmark/bench/benches/markdown-it.rs [] []
/src/pulldown-cmark/dos-fuzzer/src/literals.rs ['parse', 'commonmark_js'] ['parse', 'commonmark_js']
/src/pulldown-cmark/pulldown-cmark/tests/suite/blockquotes_tags.rs [] []
/src/pulldown-cmark/pulldown-cmark/tests/html.rs ['parse', 'commonmark_js'] []
/src/pulldown-cmark/pulldown-cmark/tests/suite/old_footnotes.rs [] []
/src/pulldown-cmark/fuzz/src/lib.rs ['commonmark_js'] ['commonmark_js']
/src/pulldown-cmark/pulldown-cmark/src/scanners.rs ['parse', 'commonmark_js'] ['parse', 'commonmark_js']
/src/pulldown-cmark/dos-fuzzer/src/main.rs ['parse', 'commonmark_js'] ['parse', 'commonmark_js']
/src/pulldown-cmark/pulldown-cmark/tests/suite/footnotes.rs [] []
/src/pulldown-cmark/pulldown-cmark/tests/suite/metadata_blocks.rs [] []
/src/pulldown-cmark/pulldown-cmark/tests/suite/wikilinks.rs [] []
/src/pulldown-cmark/bench/benches/html_rendering.rs [] []
/src/pulldown-cmark/pulldown-cmark/src/parse.rs ['parse', 'commonmark_js'] ['parse', 'commonmark_js']
/src/pulldown-cmark/pulldown-cmark/tests/suite/math.rs [] []
/src/pulldown-cmark/pulldown-cmark/tests/suite/gfm_strikethrough.rs [] []
/src/pulldown-cmark/pulldown-cmark/src/puncttable.rs ['parse', 'commonmark_js'] ['parse', 'commonmark_js']
/src/pulldown-cmark/pulldown-cmark/src/entities.rs ['parse', 'commonmark_js'] ['parse', 'commonmark_js']
/src/pulldown-cmark/pulldown-cmark/src/firstpass.rs ['parse', 'commonmark_js'] ['parse', 'commonmark_js']
/src/pulldown-cmark/pulldown-cmark/src/tree.rs ['parse', 'commonmark_js'] ['parse', 'commonmark_js']
/src/pulldown-cmark/pulldown-cmark/tests/errors.rs ['commonmark_js'] ['commonmark_js']
/src/pulldown-cmark/bench/benches/lib.rs [] []
/src/pulldown-cmark/pulldown-cmark/tests/suite/heading_attrs.rs [] []
/src/pulldown-cmark/pulldown-cmark/tests/suite/table.rs [] []
/src/pulldown-cmark/pulldown-cmark/src/strings.rs ['parse', 'commonmark_js'] ['parse', 'commonmark_js']
/src/pulldown-cmark/pulldown-cmark-escape/src/lib.rs [] []
/src/pulldown-cmark/pulldown-cmark/tests/suite/container_extensions.rs [] []
/src/pulldown-cmark/pulldown-cmark/tests/serde.rs [] []
/src/pulldown-cmark/pulldown-cmark/tests/suite/gfm_table.rs [] []
/src/pulldown-cmark/pulldown-cmark/tests/suite/definition_lists.rs [] []
/src/pulldown-cmark/pulldown-cmark/tests/suite/highlight.rs [] []
/src/pulldown-cmark/pulldown-cmark/src/main.rs ['commonmark_js'] []
/src/pulldown-cmark/pulldown-cmark/examples/normalize-wikilink.rs [] []
/src/pulldown-cmark/pulldown-cmark/tests/suite/gfm_tasklist.rs [] []
/src/pulldown-cmark/dos-fuzzer/src/black_box.rs [] []
/src/pulldown-cmark/pulldown-cmark/src/linklabel.rs ['parse', 'commonmark_js'] ['parse', 'commonmark_js']
/src/pulldown-cmark/pulldown-cmark/tests/suite/super_sub.rs [] []

Directories in report

Directory
/src/pulldown-cmark/pulldown-cmark/src/
/src/pulldown-cmark/pulldown-cmark/tests/suite/
/src/pulldown-cmark/pulldown-cmark-escape/src/
/src/pulldown-cmark/pulldown-cmark/tests/
/src/pulldown-cmark/dos-fuzzer/src/
/src/pulldown-cmark/guide/
/src/pulldown-cmark/fuzz/fuzz_targets/
/src/pulldown-cmark/pulldown-cmark/
/src/pulldown-cmark/pulldown-cmark/examples/
/src/pulldown-cmark/fuzz/src/
/src/pulldown-cmark/bench/benches/