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

Fuzzer details

Fuzzer: string_to_double_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 46 14.9%
gold [1:9] 16 5.19%
yellow [10:29] 1 0.32%
greenyellow [30:49] 2 0.64%
lawngreen 50+ 243 78.8%
All colors 308 100

Fuzz blockers

The followings are the branches where fuzzer fails to bypass.

Unique non-covered Complexity Unique Reachable Complexities Unique Reachable Functions All non-covered Complexity All Reachable Complexity Function Name Function Callsite Blocked Branch
235 235 1 :

['double_conversion::StrtofTrimmed(double_conversion::Vector , int)']

235 235 doubledouble_conversion::StringToDoubleConverter::StringToIeee (charconst*,int,bool,int*)const call site: 00000 /src/double-conversion/double-conversion/string-to-double.cc:739
2 73 3 :

['abs', 'bool double_conversion::Advance (char**, unsigned short, int, char*&)', 'double_conversion::IsDecimalDigitForRadix(int, int)']

2 96 doubledouble_conversion::RadixStringToIeee<3,char*>(char**,char*,bool,unsignedshort,bool,bool,double,bool,bool*) call site: 00000 /src/double-conversion/double-conversion/string-to-double.cc:379
2 2 1 :

['abort']

2 2 double_conversion::Bignum::EnsureCapacity(int) call site: 00000 /src/double-conversion/double-conversion/bignum.h:115
0 18 1 :

['double_conversion::isDigit(int, int)']

0 18 booldouble_conversion::Advance (charconst**,unsignedshort,int,charconst*&) call site: 00000 /src/double-conversion/double-conversion/string-to-double.cc:191
0 18 1 :

['double_conversion::isDigit(int, int)']

0 18 booldouble_conversion::Advance (char**,unsignedshort,int,char*&) call site: 00000 /src/double-conversion/double-conversion/string-to-double.cc:191
0 2 1 :

['double_conversion::Bignum::Zero()']

0 2 double_conversion::Bignum::MultiplyByUInt32(unsignedint) call site: 00000 /src/double-conversion/double-conversion/bignum.cc:254
0 2 1 :

['double_conversion::Bignum::Zero()']

0 2 double_conversion::Bignum::MultiplyByUInt64(unsignedlong) call site: 00000 /src/double-conversion/double-conversion/bignum.cc:283
0 0 None 12 149 doubledouble_conversion::RadixStringToIeee<3,char*>(char**,char*,bool,unsignedshort,bool,bool,double,bool,bool*) call site: 00000 /src/double-conversion/double-conversion/string-to-double.cc:335
0 0 None 0 27 double_conversion::AssertTrimmedDigits(double_conversion::Vector const&) call site: 00000 /src/double-conversion/double-conversion/strtod.cc:459
0 0 None 0 8 double_conversion::Double::NextDouble()const call site: 00000 /src/double-conversion/double-conversion/ieee.h:97
0 0 None 0 7 booldouble_conversion::(anonymousnamespace)::ConsumeSubString (charconst**,charconst*,charconst*,bool) call site: 00000 /src/double-conversion/double-conversion/string-to-double.cc:87
0 0 None 0 0 double_conversion::Bignum::ShiftLeft(int) call site: 00000 /src/double-conversion/double-conversion/bignum.cc:240

Runtime coverage analysis

Covered functions
85
Functions that are reachable but not covered
30
Reachable functions
181
Percentage of reachable functions covered
83.43%
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/string_to_double_fuzzer.cc 1
string-to-double.h 1
string-to-double.cc 16
ieee.h 12
diy-fp.h 6
utils.h 7
strtod.h 1
strtod.cc 13
cached-powers.cc 1
bignum.h 5
bignum.cc 16

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/string_to_double_fuzzer.cc ['string_to_double_fuzzer'] ['string_to_double_fuzzer']
/src/double-conversion/double-conversion/ieee.h ['string_to_double_fuzzer'] ['string_to_double_fuzzer']
/src/double-conversion/double-conversion/cached-powers.cc ['string_to_double_fuzzer'] ['string_to_double_fuzzer']
/src/double-conversion/double-conversion/string-to-double.cc ['string_to_double_fuzzer'] ['string_to_double_fuzzer']
/src/double-conversion/double-conversion/strtod.h ['string_to_double_fuzzer'] ['string_to_double_fuzzer']
/src/double-conversion/double-conversion/bignum.h ['string_to_double_fuzzer'] ['string_to_double_fuzzer']
/src/double-conversion/double-conversion/diy-fp.h ['string_to_double_fuzzer'] ['string_to_double_fuzzer']
/src/double-conversion/double-conversion/bignum.cc ['string_to_double_fuzzer'] ['string_to_double_fuzzer']
/src/double-conversion/double-conversion/strtod.cc ['string_to_double_fuzzer'] ['string_to_double_fuzzer']
/src/double-conversion/double-conversion/utils.h ['string_to_double_fuzzer'] ['string_to_double_fuzzer']
/src/double-conversion/double-conversion/string-to-double.h ['string_to_double_fuzzer'] ['string_to_double_fuzzer']

Directories in report

Directory
/src/double-conversion/double-conversion/
/src/