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 662 38.5%
gold [1:9] 0 0.0%
yellow [10:29] 1 0.05%
greenyellow [30:49] 0 0.0%
lawngreen 50+ 1055 61.4%
All colors 1718 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
54 954 delim_run_can_close call site: 00954 scan_entity
46 212 FirstPass::parse_footnote call site: 00212 InlineStack::push
45 815 CodeDelims::find call site: 00815 CodeDelims::find
45 879 delim_run_can_open call site: 00879 CodeDelims::find
37 341 scan_atx_heading call site: 00341 CodeDelims::insert
37 1143 extract_attribute_block_content_from_header_text call site: 01143 CodeDelims::insert
25 737 FirstPass::run call site: 00737 Tree::append_text
25 781 Allocations::allocate_alignment call site: 00781 delim_run_can_open
23 108 LineStart::is_at_eol call site: 00108
22 143 CodeDelims::insert call site: 00143 CodeDelims::insert
19 1042 scan_entity call site: 01042 Tree::append_text
19 1553 FirstPass::parse_fenced_code_block call site: 01553 scan_entity

Runtime coverage analysis

Covered functions
401
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 41
pulldown-cmark/src/firstpass.rs 201
pulldown-cmark/src/tree.rs 18
dos-fuzzer/src/literals.rs 30
dos-fuzzer/src/main.rs 1
pulldown-cmark/src/strings.rs 19
pulldown-cmark/src/scanners.rs 93
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 1075 52.8%
gold [1:9] 1 0.04%
yellow [10:29] 0 0.0%
greenyellow [30:49] 2 0.09%
lawngreen 50+ 955 46.9%
All colors 2033 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
54 1040 delim_run_can_close call site: 01040 scan_entity
53 309 FirstPass::parse_block call site: 00309 FirstPass::parse_footnote
45 965 delim_run_can_open call site: 00965 CodeDelims::find
44 908 CodeDelims::find call site: 00908 CodeDelims::find
39 860 Tree::append call site: 00860 delim_run_can_open
37 1172 FirstPass::parse_line call site: 01172 FirstPass::parse_table
35 1246 HeadingIndex::get call site: 01246 parse_inside_attribute_block
33 1807 pulldown_cmark_fuzz::commonmark_js call site: 01807 get
25 830 FirstPass::run call site: 00830 Tree::append_text
22 1371 FirstPass::parse_block call site: 01371 LineStart::scan_blockquote_tag
20 457 &[u8]::get call site: 00457 CodeDelims::insert
19 736 FirstPass::parse_block call site: 00736 LineStart::scan_task_list_marker

Runtime coverage analysis

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

Directories in report

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