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 814 42.3%
gold [1:9] 5 0.25%
yellow [10:29] 23 1.19%
greenyellow [30:49] 16 0.83%
lawngreen 50+ 1066 55.4%
All colors 1924 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
70 833 CodeDelims::find call site: 00833 CodeDelims::find
70 919 delim_run_can_open call site: 00919 CodeDelims::find
57 1069 delim_run_can_close call site: 01069 scan_entity
48 234 FirstPass::parse_footnote call site: 00234 InlineStack::push
37 364 scan_atx_heading call site: 00364 FootnoteDefs::contains
37 1265 extract_attribute_block_content_from_header_text call site: 01265 FootnoteDefs::contains
25 755 FirstPass::run call site: 00755 Tree::append_text
25 799 Allocations::allocate_alignment call site: 00799 delim_run_can_open
24 727 TreeIndex::add call site: 00727 FirstPass::run
23 130 LineStart::is_at_eol call site: 00130 FootnoteDefs::contains
23 1016 puncttable::is_punctuation call site: 01016 is_punctuation
22 165 CodeDelims::insert call site: 00165 CodeDelims::insert

Runtime coverage analysis

Covered functions
450
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 43
pulldown-cmark/src/firstpass.rs 227
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 21
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/cjk.rs 6
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 1281 57.1%
gold [1:9] 5 0.22%
yellow [10:29] 5 0.22%
greenyellow [30:49] 5 0.22%
lawngreen 50+ 947 42.2%
All colors 2243 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
70 1006 delim_run_can_open call site: 01006 CodeDelims::find
69 927 CodeDelims::find call site: 00927 CodeDelims::find
57 1156 delim_run_can_close call site: 01156 scan_entity
56 329 FirstPass::parse_block call site: 00329 FirstPass::parse_footnote
47 1561 FirstPass::parse_block call site: 01561 unescape
39 879 Tree::append call site: 00879 delim_run_can_open
37 1295 FirstPass::parse_line call site: 01295 FirstPass::parse_table
36 1369 HeadingIndex::get call site: 01369 parse_inside_attribute_block
33 2014 pulldown_cmark_fuzz::commonmark_js call site: 02014 get
25 849 FirstPass::run call site: 00849 Tree::append_text
23 1103 puncttable::is_punctuation call site: 01103 is_punctuation
22 1270 Tree::with_capacity call site: 01270 delim_run_can_open

Runtime coverage analysis

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

Directories in report

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