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: solver_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 17 10.8%
gold [1:9] 0 0.0%
yellow [10:29] 0 0.0%
greenyellow [30:49] 0 0.0%
lawngreen 50+ 140 89.1%
All colors 157 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
4 18 int* Eigen::internal::conditional_aligned_new_auto (unsigned long) call site: 00018 __cxa_allocate_exception
2 28 Eigen::Matrix ::Matrix (unsigned long const&) call site: 00028
2 72 Eigen::Matrix ::Matrix (unsigned long const&, unsigned long const&) call site: 00072
1 33 Eigen::internal::DenseStorage_impl ::~DenseStorage_impl() call site: 00033 __cxa_begin_catch
1 106 LLVMFuzzerTestOneInput call site: 00106
1 111 Eigen::TriangularView , 1u>::TriangularView(Eigen::Matrix &) call site: 00111
1 118 Eigen::TriangularView , 2u>::TriangularView(Eigen::Matrix &) call site: 00118
1 127 Eigen::TriangularView const, 1u>::TriangularView(Eigen::Matrix const&) call site: 00127
1 134 Eigen::TriangularView const, 2u>::TriangularView(Eigen::Matrix const&) call site: 00134
1 144 Eigen::TriangularView >, 1u>::TriangularView(Eigen::Transpose >&) call site: 00144
1 151 Eigen::TriangularView >, 2u>::TriangularView(Eigen::Transpose >&) call site: 00151
1 155 LLVMFuzzerTestOneInput call site: 00155

Runtime coverage analysis

Covered functions
111
Functions that are reachable but not covered
23
Reachable functions
239
Percentage of reachable functions covered
90.38%
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/solver_fuzzer.cc 2
/src/eigen/./Eigen/src/Core/Matrix.h 5
/src/eigen/./Eigen/src/Core/PlainObjectBase.h 14
/src/eigen/./Eigen/src/Core/DenseStorage.h 18
/src/eigen/./Eigen/src/Core/util/Macros.h 2
/src/eigen/./Eigen/src/Core/util/Memory.h 8
/src/eigen/./Eigen/src/Core/DenseCoeffsBase.h 5
/src/eigen/./Eigen/src/Core/EigenBase.h 10
/src/eigen/./Eigen/src/Core/CoreEvaluators.h 11
/src/eigen/./Eigen/src/Core/util/Meta.h 1
/src/eigen/./Eigen/src/Core/DenseBase.h 1
/src/eigen/./Eigen/src/Core/TriangularMatrix.h 30
/src/eigen/./Eigen/src/Core/Solve.h 6
/src/eigen/./Eigen/src/Core/../plugins/CommonCwiseUnaryOps.inc 1
/src/eigen/./Eigen/src/Core/Transpose.h 2

Fuzzer: /src/inspector/light/source_files/src/solver_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 17 10.8%
gold [1:9] 0 0.0%
yellow [10:29] 0 0.0%
greenyellow [30:49] 0 0.0%
lawngreen 50+ 140 89.1%
All colors 157 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
0 0 None 0 0 longEigen::internal::first_aligned<16,int,long>(intconst*,long) call site: 00000 /src/eigen/./Eigen/src/Core/util/Memory.h:540

Runtime coverage analysis

Covered functions
2134
Functions that are reachable but not covered
23
Reachable functions
239
Percentage of reachable functions covered
90.38%
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
/src/inspector/light/source_files/src/solver_fuzzer.cc 2
/src/eigen/./Eigen/src/Core/Matrix.h 5
/src/eigen/./Eigen/src/Core/PlainObjectBase.h 14
/src/eigen/./Eigen/src/Core/DenseStorage.h 18
/src/eigen/./Eigen/src/Core/util/Macros.h 2
/src/eigen/./Eigen/src/Core/util/Memory.h 8
/src/eigen/./Eigen/src/Core/DenseCoeffsBase.h 5
/src/eigen/./Eigen/src/Core/EigenBase.h 10
/src/eigen/./Eigen/src/Core/CoreEvaluators.h 11
/src/eigen/./Eigen/src/Core/util/Meta.h 1
/src/eigen/./Eigen/src/Core/DenseBase.h 1
/src/eigen/./Eigen/src/Core/TriangularMatrix.h 30
/src/eigen/./Eigen/src/Core/Solve.h 6
/src/eigen/./Eigen/src/Core/../plugins/CommonCwiseUnaryOps.inc 1
/src/eigen/./Eigen/src/Core/Transpose.h 2

Fuzzer: /src/inspector/source-code/src/solver_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 17 10.8%
gold [1:9] 0 0.0%
yellow [10:29] 0 0.0%
greenyellow [30:49] 0 0.0%
lawngreen 50+ 140 89.1%
All colors 157 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
0 0 None 0 0 longEigen::internal::first_aligned<16,int,long>(intconst*,long) call site: 00000 /src/eigen/./Eigen/src/Core/util/Memory.h:540

Runtime coverage analysis

Covered functions
2134
Functions that are reachable but not covered
23
Reachable functions
239
Percentage of reachable functions covered
90.38%
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
/src/inspector/source-code/src/solver_fuzzer.cc 2
/src/eigen/./Eigen/src/Core/Matrix.h 5
/src/eigen/./Eigen/src/Core/PlainObjectBase.h 14
/src/eigen/./Eigen/src/Core/DenseStorage.h 18
/src/eigen/./Eigen/src/Core/util/Macros.h 2
/src/eigen/./Eigen/src/Core/util/Memory.h 8
/src/eigen/./Eigen/src/Core/DenseCoeffsBase.h 5
/src/eigen/./Eigen/src/Core/EigenBase.h 10
/src/eigen/./Eigen/src/Core/CoreEvaluators.h 11
/src/eigen/./Eigen/src/Core/util/Meta.h 1
/src/eigen/./Eigen/src/Core/DenseBase.h 1
/src/eigen/./Eigen/src/Core/TriangularMatrix.h 30
/src/eigen/./Eigen/src/Core/Solve.h 6
/src/eigen/./Eigen/src/Core/../plugins/CommonCwiseUnaryOps.inc 1
/src/eigen/./Eigen/src/Core/Transpose.h 2

Fuzzer: /src/inspector/source-code/src/basicstuff_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 172 5.46%
gold [1:9] 0 0.0%
yellow [10:29] 0 0.0%
greenyellow [30:49] 0 0.0%
lawngreen 50+ 2978 94.5%
All colors 3150 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
0 0 None 0 0 longEigen::internal::first_aligned<16,int,long>(intconst*,long) call site: 00000 /src/eigen/./Eigen/src/Core/util/Memory.h:540

Runtime coverage analysis

Covered functions
2134
Functions that are reachable but not covered
131
Reachable functions
4213
Percentage of reachable functions covered
96.89%
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/inspector/source-code/src/basicstuff_fuzzer.cc 23
/src/eigen/./Eigen/src/Core/Matrix.h 78
/src/eigen/./Eigen/src/Core/PlainObjectBase.h 202
/src/eigen/./Eigen/src/Core/DenseStorage.h 136
/src/eigen/./Eigen/src/Core/util/Meta.h 1
/src/eigen/./Eigen/src/Core/util/Memory.h 19
/src/eigen/./Eigen/src/Core/Stride.h 4
/src/eigen/./Eigen/src/Core/util/XprHelper.h 6
/src/eigen/./Eigen/src/Core/Map.h 40
/src/eigen/./Eigen/src/Core/MapBase.h 109
/src/eigen/./Eigen/src/Core/EigenBase.h 183
/src/eigen/./Eigen/src/Core/AssignEvaluator.h 618
/src/eigen/./Eigen/src/Core/Transpose.h 98
/src/eigen/./Eigen/src/Core/CoreEvaluators.h 211
/src/eigen/./Eigen/src/Core/DenseCoeffsBase.h 26
/src/eigen/./Eigen/src/Core/DenseBase.h 18
/src/eigen/./Eigen/src/Core/arch/SSE/Complex.h 10
/src/eigen/./Eigen/src/Core/MathFunctions.h 16
/src/eigen/./Eigen/src/Core/functors/AssignmentFunctors.h 21
/src/eigen/./Eigen/src/Core/CwiseNullaryOp.h 72
/src/eigen/./Eigen/src/Core/Fill.h 22
/src/eigen/./Eigen/src/Core/util/Macros.h 2
/src/eigen/./Eigen/src/Core/Random.h 8
/src/eigen/./Eigen/src/Core/RandomImpl.h 24
/src/eigen/./Eigen/src/Core/NumTraits.h 6
/src/eigen/./Eigen/src/Core/../plugins/BlockMethods.inc 8
/src/eigen/./Eigen/src/Core/Block.h 72
/src/eigen/./Eigen/src/Core/Assign.h 14
/src/eigen/./Eigen/src/Core/../plugins/CommonCwiseUnaryOps.inc 6
/src/eigen/./Eigen/src/Core/CwiseUnaryView.h 32
/src/eigen/./Eigen/src/Core/functors/UnaryFunctors.h 8
/src/eigen/./Eigen/src/Core/NoAlias.h 20
/src/eigen/./Eigen/src/Core/functors/BinaryFunctors.h 8
/src/eigen/./Eigen/src/Core/arch/SSE/PacketMath.h 7
/src/eigen/./Eigen/src/Core/functors/NullaryFunctors.h 2

Fuzzer: /src/inspector/light/source_files/src/basicstuff_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 172 5.46%
gold [1:9] 0 0.0%
yellow [10:29] 0 0.0%
greenyellow [30:49] 0 0.0%
lawngreen 50+ 2978 94.5%
All colors 3150 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
0 0 None 0 0 longEigen::internal::first_aligned<16,int,long>(intconst*,long) call site: 00000 /src/eigen/./Eigen/src/Core/util/Memory.h:540

Runtime coverage analysis

Covered functions
2134
Functions that are reachable but not covered
131
Reachable functions
4213
Percentage of reachable functions covered
96.89%
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/inspector/light/source_files/src/basicstuff_fuzzer.cc 23
/src/eigen/./Eigen/src/Core/Matrix.h 78
/src/eigen/./Eigen/src/Core/PlainObjectBase.h 202
/src/eigen/./Eigen/src/Core/DenseStorage.h 136
/src/eigen/./Eigen/src/Core/util/Meta.h 1
/src/eigen/./Eigen/src/Core/util/Memory.h 19
/src/eigen/./Eigen/src/Core/Stride.h 4
/src/eigen/./Eigen/src/Core/util/XprHelper.h 6
/src/eigen/./Eigen/src/Core/Map.h 40
/src/eigen/./Eigen/src/Core/MapBase.h 109
/src/eigen/./Eigen/src/Core/EigenBase.h 183
/src/eigen/./Eigen/src/Core/AssignEvaluator.h 618
/src/eigen/./Eigen/src/Core/Transpose.h 98
/src/eigen/./Eigen/src/Core/CoreEvaluators.h 211
/src/eigen/./Eigen/src/Core/DenseCoeffsBase.h 26
/src/eigen/./Eigen/src/Core/DenseBase.h 18
/src/eigen/./Eigen/src/Core/arch/SSE/Complex.h 10
/src/eigen/./Eigen/src/Core/MathFunctions.h 16
/src/eigen/./Eigen/src/Core/functors/AssignmentFunctors.h 21
/src/eigen/./Eigen/src/Core/CwiseNullaryOp.h 72
/src/eigen/./Eigen/src/Core/Fill.h 22
/src/eigen/./Eigen/src/Core/util/Macros.h 2
/src/eigen/./Eigen/src/Core/Random.h 8
/src/eigen/./Eigen/src/Core/RandomImpl.h 24
/src/eigen/./Eigen/src/Core/NumTraits.h 6
/src/eigen/./Eigen/src/Core/../plugins/BlockMethods.inc 8
/src/eigen/./Eigen/src/Core/Block.h 72
/src/eigen/./Eigen/src/Core/Assign.h 14
/src/eigen/./Eigen/src/Core/../plugins/CommonCwiseUnaryOps.inc 6
/src/eigen/./Eigen/src/Core/CwiseUnaryView.h 32
/src/eigen/./Eigen/src/Core/functors/UnaryFunctors.h 8
/src/eigen/./Eigen/src/Core/NoAlias.h 20
/src/eigen/./Eigen/src/Core/functors/BinaryFunctors.h 8
/src/eigen/./Eigen/src/Core/arch/SSE/PacketMath.h 7
/src/eigen/./Eigen/src/Core/functors/NullaryFunctors.h 2

Fuzzer: basicstuff_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 154 4.88%
gold [1:9] 0 0.0%
yellow [10:29] 0 0.0%
greenyellow [30:49] 0 0.0%
lawngreen 50+ 2996 95.1%
All colors 3150 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
0 0 None 0 0 longEigen::internal::first_aligned<16,int,long>(intconst*,long) call site: 00000 /src/eigen/./Eigen/src/Core/util/Memory.h:540

Runtime coverage analysis

Covered functions
2089
Functions that are reachable but not covered
131
Reachable functions
4213
Percentage of reachable functions covered
96.89%
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/basicstuff_fuzzer.cc 23
/src/eigen/./Eigen/src/Core/Matrix.h 78
/src/eigen/./Eigen/src/Core/PlainObjectBase.h 202
/src/eigen/./Eigen/src/Core/DenseStorage.h 136
/src/eigen/./Eigen/src/Core/util/Meta.h 1
/src/eigen/./Eigen/src/Core/util/Memory.h 19
/src/eigen/./Eigen/src/Core/Stride.h 4
/src/eigen/./Eigen/src/Core/util/XprHelper.h 6
/src/eigen/./Eigen/src/Core/Map.h 40
/src/eigen/./Eigen/src/Core/MapBase.h 109
/src/eigen/./Eigen/src/Core/EigenBase.h 183
/src/eigen/./Eigen/src/Core/AssignEvaluator.h 618
/src/eigen/./Eigen/src/Core/Transpose.h 98
/src/eigen/./Eigen/src/Core/CoreEvaluators.h 211
/src/eigen/./Eigen/src/Core/DenseCoeffsBase.h 26
/src/eigen/./Eigen/src/Core/DenseBase.h 18
/src/eigen/./Eigen/src/Core/arch/SSE/Complex.h 10
/src/eigen/./Eigen/src/Core/MathFunctions.h 16
/src/eigen/./Eigen/src/Core/functors/AssignmentFunctors.h 21
/src/eigen/./Eigen/src/Core/CwiseNullaryOp.h 72
/src/eigen/./Eigen/src/Core/Fill.h 22
/src/eigen/./Eigen/src/Core/util/Macros.h 2
/src/eigen/./Eigen/src/Core/Random.h 8
/src/eigen/./Eigen/src/Core/RandomImpl.h 24
/src/eigen/./Eigen/src/Core/NumTraits.h 6
/src/eigen/./Eigen/src/Core/../plugins/BlockMethods.inc 8
/src/eigen/./Eigen/src/Core/Block.h 72
/src/eigen/./Eigen/src/Core/Assign.h 14
/src/eigen/./Eigen/src/Core/../plugins/CommonCwiseUnaryOps.inc 6
/src/eigen/./Eigen/src/Core/CwiseUnaryView.h 32
/src/eigen/./Eigen/src/Core/functors/UnaryFunctors.h 8
/src/eigen/./Eigen/src/Core/NoAlias.h 20
/src/eigen/./Eigen/src/Core/functors/BinaryFunctors.h 8
/src/eigen/./Eigen/src/Core/arch/SSE/PacketMath.h 7
/src/eigen/./Eigen/src/Core/functors/NullaryFunctors.h 2

Fuzz engine guidance

This sections provides heuristics that can be used as input to a fuzz engine when running a given fuzz target. The current focus is on providing input that is usable by libFuzzer.

/src/solver_fuzzer.cc

Dictionary

Use this with the libFuzzer -dict=DICT.file flag


Fuzzer function priority

Use one of these functions as input to libfuzzer with flag: -focus_function name

-focus_function=['int* Eigen::internal::conditional_aligned_new_auto(unsigned long)', 'Eigen::Matrix::Matrix(unsigned long const&)', 'Eigen::Matrix::Matrix(unsigned long const&, unsigned long const&)', 'Eigen::internal::DenseStorage_impl::~DenseStorage_impl()', 'LLVMFuzzerTestOneInput', 'Eigen::TriangularView, 1u>::TriangularView(Eigen::Matrix&)', 'Eigen::TriangularView, 2u>::TriangularView(Eigen::Matrix&)', 'Eigen::TriangularView const, 1u>::TriangularView(Eigen::Matrix const&)', 'Eigen::TriangularView const, 2u>::TriangularView(Eigen::Matrix const&)', 'Eigen::TriangularView >, 1u>::TriangularView(Eigen::Transpose >&)']

/src/inspector/light/source_files/src/solver_fuzzer.cc

Dictionary

Use this with the libFuzzer -dict=DICT.file flag


Fuzzer function priority

Use one of these functions as input to libfuzzer with flag: -focus_function name

-focus_function=['int* Eigen::internal::conditional_aligned_new_auto(unsigned long)', 'Eigen::Matrix::Matrix(unsigned long const&)', 'Eigen::Matrix::Matrix(unsigned long const&, unsigned long const&)', 'Eigen::internal::DenseStorage_impl::~DenseStorage_impl()', 'LLVMFuzzerTestOneInput', 'Eigen::TriangularView, 1u>::TriangularView(Eigen::Matrix&)', 'Eigen::TriangularView, 2u>::TriangularView(Eigen::Matrix&)', 'Eigen::TriangularView const, 1u>::TriangularView(Eigen::Matrix const&)', 'Eigen::TriangularView const, 2u>::TriangularView(Eigen::Matrix const&)', 'Eigen::TriangularView >, 1u>::TriangularView(Eigen::Transpose >&)']

/src/inspector/source-code/src/solver_fuzzer.cc

Dictionary

Use this with the libFuzzer -dict=DICT.file flag


Fuzzer function priority

Use one of these functions as input to libfuzzer with flag: -focus_function name

-focus_function=['int* Eigen::internal::conditional_aligned_new_auto(unsigned long)', 'Eigen::Matrix::Matrix(unsigned long const&)', 'Eigen::Matrix::Matrix(unsigned long const&, unsigned long const&)', 'Eigen::internal::DenseStorage_impl::~DenseStorage_impl()', 'LLVMFuzzerTestOneInput', 'Eigen::TriangularView, 1u>::TriangularView(Eigen::Matrix&)', 'Eigen::TriangularView, 2u>::TriangularView(Eigen::Matrix&)', 'Eigen::TriangularView const, 1u>::TriangularView(Eigen::Matrix const&)', 'Eigen::TriangularView const, 2u>::TriangularView(Eigen::Matrix const&)', 'Eigen::TriangularView >, 1u>::TriangularView(Eigen::Transpose >&)']

/src/inspector/source-code/src/basicstuff_fuzzer.cc

Dictionary

Use this with the libFuzzer -dict=DICT.file flag


Fuzzer function priority

Use one of these functions as input to libfuzzer with flag: -focus_function name

-focus_function=['void Eigen::internal::resize_if_allowed, -1, -1, 0, -1, -1>, -1, 1, true> >, Eigen::Matrix, 1, -1, 1, 1, -1>, std::__1::complex, std::__1::complex >(Eigen::Transpose, -1, -1, 0, -1, -1>, -1, 1, true> >&, Eigen::Matrix, 1, -1, 1, 1, -1> const&, Eigen::internal::assign_op, std::__1::complex > const&)', 'void Eigen::internal::resize_if_allowed, -1, 1, true> >, Eigen::Matrix, int, int>(Eigen::Transpose, -1, 1, true> >&, Eigen::Matrix const&, Eigen::internal::assign_op const&)', 'void Eigen::internal::resize_if_allowed, -1, -1, 0, -1, -1>, -1, 1, true> >, Eigen::Matrix, 1, -1, 1, 1, -1>, std::__1::complex, std::__1::complex >(Eigen::Transpose, -1, -1, 0, -1, -1>, -1, 1, true> >&, Eigen::Matrix, 1, -1, 1, 1, -1> const&, Eigen::internal::assign_op, std::__1::complex > const&)', 'void Eigen::internal::resize_if_allowed, -1, 1, true> >, Eigen::Matrix, long double, long double>(Eigen::Transpose, -1, 1, true> >&, Eigen::Matrix const&, Eigen::internal::assign_op const&)', 'void (anonymous namespace)::basicStuff, -1, -1, 0, -1, -1> >(Eigen::Matrix, -1, -1, 0, -1, -1> const&, FuzzedDataProvider*)', 'void (anonymous namespace)::basicStuff, -1, -1, 0, -1, -1> >(Eigen::Matrix, -1, -1, 0, -1, -1> const&, FuzzedDataProvider*)', 'void (anonymous namespace)::basicStuff >(Eigen::Matrix const&, FuzzedDataProvider*)', 'void (anonymous namespace)::basicStuff >(Eigen::Matrix const&, FuzzedDataProvider*)', 'void (anonymous namespace)::basicStuff, -1, -1, 0, -1, -1> >(Eigen::Matrix, -1, -1, 0, -1, -1> const&, FuzzedDataProvider*)', 'void (anonymous namespace)::basicStuff, -1, -1, 0, -1, -1> >(Eigen::Matrix, -1, -1, 0, -1, -1> const&, FuzzedDataProvider*)']

/src/inspector/light/source_files/src/basicstuff_fuzzer.cc

Dictionary

Use this with the libFuzzer -dict=DICT.file flag


Fuzzer function priority

Use one of these functions as input to libfuzzer with flag: -focus_function name

-focus_function=['void Eigen::internal::resize_if_allowed, -1, -1, 0, -1, -1>, -1, 1, true> >, Eigen::Matrix, 1, -1, 1, 1, -1>, std::__1::complex, std::__1::complex >(Eigen::Transpose, -1, -1, 0, -1, -1>, -1, 1, true> >&, Eigen::Matrix, 1, -1, 1, 1, -1> const&, Eigen::internal::assign_op, std::__1::complex > const&)', 'void Eigen::internal::resize_if_allowed, -1, 1, true> >, Eigen::Matrix, int, int>(Eigen::Transpose, -1, 1, true> >&, Eigen::Matrix const&, Eigen::internal::assign_op const&)', 'void Eigen::internal::resize_if_allowed, -1, -1, 0, -1, -1>, -1, 1, true> >, Eigen::Matrix, 1, -1, 1, 1, -1>, std::__1::complex, std::__1::complex >(Eigen::Transpose, -1, -1, 0, -1, -1>, -1, 1, true> >&, Eigen::Matrix, 1, -1, 1, 1, -1> const&, Eigen::internal::assign_op, std::__1::complex > const&)', 'void Eigen::internal::resize_if_allowed, -1, 1, true> >, Eigen::Matrix, long double, long double>(Eigen::Transpose, -1, 1, true> >&, Eigen::Matrix const&, Eigen::internal::assign_op const&)', 'void (anonymous namespace)::basicStuff, -1, -1, 0, -1, -1> >(Eigen::Matrix, -1, -1, 0, -1, -1> const&, FuzzedDataProvider*)', 'void (anonymous namespace)::basicStuff, -1, -1, 0, -1, -1> >(Eigen::Matrix, -1, -1, 0, -1, -1> const&, FuzzedDataProvider*)', 'void (anonymous namespace)::basicStuff >(Eigen::Matrix const&, FuzzedDataProvider*)', 'void (anonymous namespace)::basicStuff >(Eigen::Matrix const&, FuzzedDataProvider*)', 'void (anonymous namespace)::basicStuff, -1, -1, 0, -1, -1> >(Eigen::Matrix, -1, -1, 0, -1, -1> const&, FuzzedDataProvider*)', 'void (anonymous namespace)::basicStuff, -1, -1, 0, -1, -1> >(Eigen::Matrix, -1, -1, 0, -1, -1> const&, FuzzedDataProvider*)']

/src/basicstuff_fuzzer.cc

Dictionary

Use this with the libFuzzer -dict=DICT.file flag


Fuzzer function priority

Use one of these functions as input to libfuzzer with flag: -focus_function name

-focus_function=['void Eigen::internal::resize_if_allowed, -1, -1, 0, -1, -1>, -1, 1, true> >, Eigen::Matrix, 1, -1, 1, 1, -1>, std::__1::complex, std::__1::complex >(Eigen::Transpose, -1, -1, 0, -1, -1>, -1, 1, true> >&, Eigen::Matrix, 1, -1, 1, 1, -1> const&, Eigen::internal::assign_op, std::__1::complex > const&)', 'void Eigen::internal::resize_if_allowed, -1, 1, true> >, Eigen::Matrix, int, int>(Eigen::Transpose, -1, 1, true> >&, Eigen::Matrix const&, Eigen::internal::assign_op const&)', 'void Eigen::internal::resize_if_allowed, -1, -1, 0, -1, -1>, -1, 1, true> >, Eigen::Matrix, 1, -1, 1, 1, -1>, std::__1::complex, std::__1::complex >(Eigen::Transpose, -1, -1, 0, -1, -1>, -1, 1, true> >&, Eigen::Matrix, 1, -1, 1, 1, -1> const&, Eigen::internal::assign_op, std::__1::complex > const&)', 'void Eigen::internal::resize_if_allowed, -1, 1, true> >, Eigen::Matrix, long double, long double>(Eigen::Transpose, -1, 1, true> >&, Eigen::Matrix const&, Eigen::internal::assign_op const&)', 'void (anonymous namespace)::basicStuff, -1, -1, 0, -1, -1> >(Eigen::Matrix, -1, -1, 0, -1, -1> const&, FuzzedDataProvider*)', 'void (anonymous namespace)::basicStuff, -1, -1, 0, -1, -1> >(Eigen::Matrix, -1, -1, 0, -1, -1> const&, FuzzedDataProvider*)', 'void (anonymous namespace)::basicStuff >(Eigen::Matrix const&, FuzzedDataProvider*)', 'void (anonymous namespace)::basicStuff >(Eigen::Matrix const&, FuzzedDataProvider*)', 'void (anonymous namespace)::basicStuff, -1, -1, 0, -1, -1> >(Eigen::Matrix, -1, -1, 0, -1, -1> const&, FuzzedDataProvider*)', 'void (anonymous namespace)::basicStuff, -1, -1, 0, -1, -1> >(Eigen::Matrix, -1, -1, 0, -1, -1> const&, FuzzedDataProvider*)']

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/eigen/./Eigen/src/Core/EigenBase.h ['solver_fuzzer', '/src/inspector/light/source_files/src/solver_fuzzer.cc', '/src/inspector/source-code/src/solver_fuzzer.cc', '/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
[] []
/src/inspector/light/source_files/src/basicstuff_fuzzer.cc ['/src/inspector/light/source_files/src/basicstuff_fuzzer.cc'] ['/src/inspector/light/source_files/src/basicstuff_fuzzer.cc']
/src/eigen/./Eigen/src/Core/functors/NullaryFunctors.h ['/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
/src/eigen/./Eigen/src/Core/functors/UnaryFunctors.h ['/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
/src/eigen/./Eigen/src/Core/util/XprHelper.h ['/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
/src/eigen/./Eigen/src/Core/DenseCoeffsBase.h ['solver_fuzzer', '/src/inspector/light/source_files/src/solver_fuzzer.cc', '/src/inspector/source-code/src/solver_fuzzer.cc', '/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
/src/eigen/./Eigen/src/Core/AssignEvaluator.h ['/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
/src/eigen/./Eigen/src/Core/MapBase.h ['/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
/src/eigen/./Eigen/src/Core/RandomImpl.h ['/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
/src/eigen/./Eigen/src/Core/Matrix.h ['solver_fuzzer', '/src/inspector/light/source_files/src/solver_fuzzer.cc', '/src/inspector/source-code/src/solver_fuzzer.cc', '/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
/src/inspector/light/source_files/src/solver_fuzzer.cc ['/src/inspector/light/source_files/src/solver_fuzzer.cc'] ['/src/inspector/light/source_files/src/solver_fuzzer.cc']
/src/eigen/./Eigen/src/Core/PlainObjectBase.h ['solver_fuzzer', '/src/inspector/light/source_files/src/solver_fuzzer.cc', '/src/inspector/source-code/src/solver_fuzzer.cc', '/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
/src/eigen/./Eigen/src/Core/DenseStorage.h ['solver_fuzzer', '/src/inspector/light/source_files/src/solver_fuzzer.cc', '/src/inspector/source-code/src/solver_fuzzer.cc', '/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
/src/eigen/./Eigen/src/Core/util/Macros.h ['solver_fuzzer', '/src/inspector/light/source_files/src/solver_fuzzer.cc', '/src/inspector/source-code/src/solver_fuzzer.cc', '/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
/src/eigen/./Eigen/src/Core/../plugins/CommonCwiseUnaryOps.inc ['solver_fuzzer', '/src/inspector/light/source_files/src/solver_fuzzer.cc', '/src/inspector/source-code/src/solver_fuzzer.cc', '/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
/src/inspector/source-code/src/solver_fuzzer.cc ['/src/inspector/source-code/src/solver_fuzzer.cc'] ['/src/inspector/source-code/src/solver_fuzzer.cc']
/src/eigen/./Eigen/src/Core/NoAlias.h ['/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
/src/basicstuff_fuzzer.cc ['basicstuff_fuzzer'] ['basicstuff_fuzzer']
/src/eigen/./Eigen/src/Core/../plugins/BlockMethods.inc ['/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
/src/eigen/./Eigen/src/Core/Fill.h ['/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
/usr/local/bin/../include/c++/v1/stdexcept [] []
/src/eigen/./Eigen/src/Core/functors/AssignmentFunctors.h ['/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
/src/eigen/./Eigen/src/Core/CwiseUnaryView.h ['/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
/src/eigen/./Eigen/src/Core/util/Memory.h ['solver_fuzzer', '/src/inspector/light/source_files/src/solver_fuzzer.cc', '/src/inspector/source-code/src/solver_fuzzer.cc', '/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
/src/eigen/./Eigen/src/Core/TriangularMatrix.h ['solver_fuzzer', '/src/inspector/light/source_files/src/solver_fuzzer.cc', '/src/inspector/source-code/src/solver_fuzzer.cc'] []
/src/eigen/./Eigen/src/Core/MathFunctions.h ['/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
/src/eigen/./Eigen/src/Core/CwiseNullaryOp.h ['/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
/src/solver_fuzzer.cc ['solver_fuzzer'] ['solver_fuzzer']
/src/eigen/./Eigen/src/Core/arch/SSE/Complex.h ['/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
/src/inspector/source-code/src/basicstuff_fuzzer.cc ['/src/inspector/source-code/src/basicstuff_fuzzer.cc'] ['/src/inspector/source-code/src/basicstuff_fuzzer.cc']
/src/eigen/./Eigen/src/Core/Solve.h ['solver_fuzzer', '/src/inspector/light/source_files/src/solver_fuzzer.cc', '/src/inspector/source-code/src/solver_fuzzer.cc'] []
/src/eigen/./Eigen/src/Core/Map.h ['/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
/src/eigen/./Eigen/src/Core/Assign.h ['/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
/src/eigen/./Eigen/src/Core/DenseBase.h ['solver_fuzzer', '/src/inspector/light/source_files/src/solver_fuzzer.cc', '/src/inspector/source-code/src/solver_fuzzer.cc', '/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
/src/eigen/./Eigen/src/Core/Transpose.h ['solver_fuzzer', '/src/inspector/light/source_files/src/solver_fuzzer.cc', '/src/inspector/source-code/src/solver_fuzzer.cc', '/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
/src/eigen/./Eigen/src/Core/arch/SSE/PacketMath.h ['/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
/src/eigen/./Eigen/src/Core/functors/BinaryFunctors.h ['/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
/src/eigen/./Eigen/src/Core/Block.h ['/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
/src/eigen/./Eigen/src/Core/CoreEvaluators.h ['solver_fuzzer', '/src/inspector/light/source_files/src/solver_fuzzer.cc', '/src/inspector/source-code/src/solver_fuzzer.cc', '/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
/src/eigen/./Eigen/src/Core/Random.h ['/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
/src/eigen/./Eigen/src/Core/Stride.h ['/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
/src/eigen/./Eigen/src/Core/util/Meta.h ['solver_fuzzer', '/src/inspector/light/source_files/src/solver_fuzzer.cc', '/src/inspector/source-code/src/solver_fuzzer.cc', '/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []
/src/eigen/./Eigen/src/Core/NumTraits.h ['/src/inspector/source-code/src/basicstuff_fuzzer.cc', '/src/inspector/light/source_files/src/basicstuff_fuzzer.cc', 'basicstuff_fuzzer'] []

Directories in report

Directory
/usr/local/bin/../include/c++/v1/
/src/
/src/eigen/./Eigen/src/Core/functors/
/src/eigen/./Eigen/src/Core/arch/SSE/
/src/inspector/light/source_files/src/
/src/inspector/source-code/src/
/src/eigen/./Eigen/src/Core/util/
/src/eigen/./Eigen/src/Core/../plugins/
/src/eigen/./Eigen/src/Core/