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: exif_from_data_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 139 15.0%
gold [1:9] 46 4.97%
yellow [10:29] 23 2.48%
greenyellow [30:49] 33 3.57%
lawngreen 50+ 683 73.9%
All colors 924 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
49 791 exif_entry_initialize call site: 00791 exif_entry_alloc
26 761 exif_entry_initialize call site: 00761 exif_entry_alloc
8 733 exif_entry_initialize call site: 00733 exif_entry_initialize_gps
5 710 get_support_level_any_type call site: 00710 exif_content_remove_entry
4 745 exif_entry_initialize call site: 00745 exif_entry_alloc
4 753 exif_entry_initialize call site: 00753 exif_entry_alloc
4 856 LLVMFuzzerTestOneInput call site: 00856 exif_data_foreach_content
3 31 exif_content_free call site: 00031 exif_log_free
3 636 exif_entry_alloc call site: 00636 exif_entry_log
3 688 exif_entry_realloc call site: 00688 exif_log
3 846 exif_entry_initialize call site: 00846 exif_entry_alloc
2 71 exif_data_load_data call site: 00071 exif_log

Runtime coverage analysis

Covered functions
161
Functions that are reachable but not covered
26
Reachable functions
137
Percentage of reachable functions covered
81.02%
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
exif_from_data_fuzzer.cc 5
libexif/libexif/exif-data.c 24
libexif/libexif/exif-mem.c 10
libexif/libexif/exif-content.c 11
libexif/libexif/exif-entry.c 16
libexif/libexif/exif-log.c 5
libexif/libexif/exif-mnote-data.c 10
libexif/libexif/exif-utils.c 13
libexif/libexif/exif-tag.c 10
libexif/libexif/exif-ifd.c 1
libexif/libexif/exif-format.c 2
libexif/libexif/olympus/exif-mnote-data-olympus.c 3
libexif/libexif/canon/exif-mnote-data-canon.c 2
libexif/libexif/fuji/exif-mnote-data-fuji.c 2
libexif/libexif/pentax/exif-mnote-data-pentax.c 2
libexif/libexif/exif-gps-ifd.c 1

Fuzzer: exif_loader_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 136 15.0%
gold [1:9] 46 5.10%
yellow [10:29] 31 3.44%
greenyellow [30:49] 54 5.99%
lawngreen 50+ 634 70.3%
All colors 901 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
49 814 exif_entry_initialize call site: 00814 exif_entry_alloc
26 784 exif_entry_initialize call site: 00784 exif_entry_alloc
8 756 exif_entry_initialize call site: 00756 exif_entry_initialize_gps
5 733 get_support_level_any_type call site: 00733 exif_content_remove_entry
4 768 exif_entry_initialize call site: 00768 exif_entry_alloc
4 776 exif_entry_initialize call site: 00776 exif_entry_alloc
3 51 exif_content_free call site: 00051 exif_log_free
3 659 exif_entry_alloc call site: 00659 exif_entry_log
3 711 exif_entry_realloc call site: 00711 exif_log
3 869 exif_entry_initialize call site: 00869 exif_entry_alloc
2 74 exif_data_log call site: 00074 exif_log_unref
2 95 exif_data_load_data call site: 00095 exif_log

Runtime coverage analysis

Covered functions
183
Functions that are reachable but not covered
25
Reachable functions
143
Percentage of reachable functions covered
82.52%
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
exif_loader_fuzzer.cc 4
libexif/libexif/exif-loader.c 9
libexif/libexif/exif-mem.c 10
libexif/libexif/exif-log.c 5
libexif/libexif/exif-data.c 20
libexif/libexif/exif-content.c 12
libexif/libexif/exif-entry.c 16
libexif/libexif/exif-mnote-data.c 13
libexif/libexif/exif-utils.c 13
libexif/libexif/exif-tag.c 10
libexif/libexif/exif-ifd.c 1
libexif/libexif/exif-format.c 2
libexif/libexif/olympus/exif-mnote-data-olympus.c 3
libexif/libexif/canon/exif-mnote-data-canon.c 2
libexif/libexif/fuji/exif-mnote-data-fuji.c 2
libexif/libexif/pentax/exif-mnote-data-pentax.c 2
libexif/libexif/exif-gps-ifd.c 1

Fuzzer: inspector/light/source_filesexif_from_data_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 139 15.0%
gold [1:9] 46 4.97%
yellow [10:29] 23 2.48%
greenyellow [30:49] 33 3.57%
lawngreen 50+ 683 73.9%
All colors 924 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
49 791 exif_entry_initialize call site: 00791 exif_entry_alloc
26 761 exif_entry_initialize call site: 00761 exif_entry_alloc
8 733 exif_entry_initialize call site: 00733 exif_entry_initialize_gps
5 710 get_support_level_any_type call site: 00710 exif_content_remove_entry
4 745 exif_entry_initialize call site: 00745 exif_entry_alloc
4 753 exif_entry_initialize call site: 00753 exif_entry_alloc
4 856 LLVMFuzzerTestOneInput call site: 00856 exif_data_foreach_content
3 31 exif_content_free call site: 00031 exif_log_free
3 636 exif_entry_alloc call site: 00636 exif_entry_log
3 688 exif_entry_realloc call site: 00688 exif_log
3 846 exif_entry_initialize call site: 00846 exif_entry_alloc
2 71 exif_data_load_data call site: 00071 exif_log

Runtime coverage analysis

Covered functions
200
Functions that are reachable but not covered
26
Reachable functions
137
Percentage of reachable functions covered
81.02%
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
inspector/light/source_filesexif_from_data_fuzzer.cc 5
libexif/libexif/exif-data.c 24
libexif/libexif/exif-mem.c 10
libexif/libexif/exif-content.c 11
libexif/libexif/exif-entry.c 16
libexif/libexif/exif-log.c 5
libexif/libexif/exif-mnote-data.c 10
libexif/libexif/exif-utils.c 13
libexif/libexif/exif-tag.c 10
libexif/libexif/exif-ifd.c 1
libexif/libexif/exif-format.c 2
libexif/libexif/olympus/exif-mnote-data-olympus.c 3
libexif/libexif/canon/exif-mnote-data-canon.c 2
libexif/libexif/fuji/exif-mnote-data-fuji.c 2
libexif/libexif/pentax/exif-mnote-data-pentax.c 2
libexif/libexif/exif-gps-ifd.c 1

Fuzzer: inspector/light/source_filesexif_loader_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 141 15.6%
gold [1:9] 46 5.10%
yellow [10:29] 23 2.55%
greenyellow [30:49] 33 3.66%
lawngreen 50+ 658 73.0%
All colors 901 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
49 814 exif_entry_initialize call site: 00814 exif_entry_alloc
26 784 exif_entry_initialize call site: 00784 exif_entry_alloc
8 756 exif_entry_initialize call site: 00756 exif_entry_initialize_gps
5 733 get_support_level_any_type call site: 00733 exif_content_remove_entry
4 768 exif_entry_initialize call site: 00768 exif_entry_alloc
4 776 exif_entry_initialize call site: 00776 exif_entry_alloc
4 883 exif_loader_free call site: 00883 exif_data_foreach_content
3 51 exif_content_free call site: 00051 exif_log_free
3 659 exif_entry_alloc call site: 00659 exif_entry_log
3 711 exif_entry_realloc call site: 00711 exif_log
3 869 exif_entry_initialize call site: 00869 exif_entry_alloc
2 74 exif_data_log call site: 00074 exif_log_unref

Runtime coverage analysis

Covered functions
200
Functions that are reachable but not covered
25
Reachable functions
143
Percentage of reachable functions covered
82.52%
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
inspector/light/source_filesexif_loader_fuzzer.cc 4
libexif/libexif/exif-loader.c 9
libexif/libexif/exif-mem.c 10
libexif/libexif/exif-log.c 5
libexif/libexif/exif-data.c 20
libexif/libexif/exif-content.c 12
libexif/libexif/exif-entry.c 16
libexif/libexif/exif-mnote-data.c 13
libexif/libexif/exif-utils.c 13
libexif/libexif/exif-tag.c 10
libexif/libexif/exif-ifd.c 1
libexif/libexif/exif-format.c 2
libexif/libexif/olympus/exif-mnote-data-olympus.c 3
libexif/libexif/canon/exif-mnote-data-canon.c 2
libexif/libexif/fuji/exif-mnote-data-fuji.c 2
libexif/libexif/pentax/exif-mnote-data-pentax.c 2
libexif/libexif/exif-gps-ifd.c 1

Fuzzer: inspector/source-codeexif_from_data_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 139 15.0%
gold [1:9] 46 4.97%
yellow [10:29] 23 2.48%
greenyellow [30:49] 33 3.57%
lawngreen 50+ 683 73.9%
All colors 924 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
49 791 exif_entry_initialize call site: 00791 exif_entry_alloc
26 761 exif_entry_initialize call site: 00761 exif_entry_alloc
8 733 exif_entry_initialize call site: 00733 exif_entry_initialize_gps
5 710 get_support_level_any_type call site: 00710 exif_content_remove_entry
4 745 exif_entry_initialize call site: 00745 exif_entry_alloc
4 753 exif_entry_initialize call site: 00753 exif_entry_alloc
4 856 LLVMFuzzerTestOneInput call site: 00856 exif_data_foreach_content
3 31 exif_content_free call site: 00031 exif_log_free
3 636 exif_entry_alloc call site: 00636 exif_entry_log
3 688 exif_entry_realloc call site: 00688 exif_log
3 846 exif_entry_initialize call site: 00846 exif_entry_alloc
2 71 exif_data_load_data call site: 00071 exif_log

Runtime coverage analysis

Covered functions
200
Functions that are reachable but not covered
26
Reachable functions
137
Percentage of reachable functions covered
81.02%
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
inspector/source-codeexif_from_data_fuzzer.cc 5
libexif/libexif/exif-data.c 24
libexif/libexif/exif-mem.c 10
libexif/libexif/exif-content.c 11
libexif/libexif/exif-entry.c 16
libexif/libexif/exif-log.c 5
libexif/libexif/exif-mnote-data.c 10
libexif/libexif/exif-utils.c 13
libexif/libexif/exif-tag.c 10
libexif/libexif/exif-ifd.c 1
libexif/libexif/exif-format.c 2
libexif/libexif/olympus/exif-mnote-data-olympus.c 3
libexif/libexif/canon/exif-mnote-data-canon.c 2
libexif/libexif/fuji/exif-mnote-data-fuji.c 2
libexif/libexif/pentax/exif-mnote-data-pentax.c 2
libexif/libexif/exif-gps-ifd.c 1

Fuzzer: inspector/source-codeexif_loader_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 141 15.6%
gold [1:9] 46 5.10%
yellow [10:29] 23 2.55%
greenyellow [30:49] 33 3.66%
lawngreen 50+ 658 73.0%
All colors 901 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
49 814 exif_entry_initialize call site: 00814 exif_entry_alloc
26 784 exif_entry_initialize call site: 00784 exif_entry_alloc
8 756 exif_entry_initialize call site: 00756 exif_entry_initialize_gps
5 733 get_support_level_any_type call site: 00733 exif_content_remove_entry
4 768 exif_entry_initialize call site: 00768 exif_entry_alloc
4 776 exif_entry_initialize call site: 00776 exif_entry_alloc
4 883 exif_loader_free call site: 00883 exif_data_foreach_content
3 51 exif_content_free call site: 00051 exif_log_free
3 659 exif_entry_alloc call site: 00659 exif_entry_log
3 711 exif_entry_realloc call site: 00711 exif_log
3 869 exif_entry_initialize call site: 00869 exif_entry_alloc
2 74 exif_data_log call site: 00074 exif_log_unref

Runtime coverage analysis

Covered functions
200
Functions that are reachable but not covered
25
Reachable functions
143
Percentage of reachable functions covered
82.52%
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
inspector/source-codeexif_loader_fuzzer.cc 4
libexif/libexif/exif-loader.c 9
libexif/libexif/exif-mem.c 10
libexif/libexif/exif-log.c 5
libexif/libexif/exif-data.c 20
libexif/libexif/exif-content.c 12
libexif/libexif/exif-entry.c 16
libexif/libexif/exif-mnote-data.c 13
libexif/libexif/exif-utils.c 13
libexif/libexif/exif-tag.c 10
libexif/libexif/exif-ifd.c 1
libexif/libexif/exif-format.c 2
libexif/libexif/olympus/exif-mnote-data-olympus.c 3
libexif/libexif/canon/exif-mnote-data-canon.c 2
libexif/libexif/fuji/exif-mnote-data-fuji.c 2
libexif/libexif/pentax/exif-mnote-data-pentax.c 2
libexif/libexif/exif-gps-ifd.c 1

Analyses and suggestions

Optimal target analysis

Remaining optimal interesting functions

The following table shows a list of functions that are optimal targets. Optimal targets are identified by finding the functions that in combination, yield a high code coverage.

Func name Functions filename Arg count Args Function depth hitcount instr count bb count cyclomatic complexity Reachable functions Incoming references total cyclomatic complexity Unreached complexity
exif_mnote_data_olympus_get_value /src/libexif/libexif/olympus/exif-mnote-data-olympus.c 4 ['N/A', 'int', 'N/A', 'int'] 4 0 67 11 5 15 0 171 127
exif_mnote_data_canon_get_value /src/libexif/libexif/canon/exif-mnote-data-canon.c 4 ['N/A', 'int', 'N/A', 'int'] 4 0 64 8 4 20 0 131 93
exif_entry_fix /src/libexif/libexif/exif-entry.c 1 ['N/A'] 3 0 922 139 31 35 0 187 55
exif_mnote_data_olympus_load /src/libexif/libexif/olympus/exif-mnote-data-olympus.c 3 ['N/A', 'N/A', 'int'] 2 0 1129 124 44 14 0 106 53
exif_mnote_data_pentax_get_value /src/libexif/libexif/pentax/exif-mnote-data-pentax.c 4 ['N/A', 'int', 'N/A', 'int'] 3 0 58 8 4 11 0 82 48
exif_mnote_data_pentax_load /src/libexif/libexif/pentax/exif-mnote-data-pentax.c 3 ['N/A', 'N/A', 'int'] 2 0 648 72 28 12 0 78 37

Implementing fuzzers that target the above functions will improve reachability such that it becomes:

Functions statically reachable by fuzzers
63.0%
151 / 238
Cyclomatic complexity statically reachable by fuzzers
74.0%
1289 / 1743

All functions overview

If you implement fuzzers for these functions, the status of all functions in the project will be:

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

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.

exif_from_data_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=['exif_entry_initialize', 'get_support_level_any_type', 'LLVMFuzzerTestOneInput', 'exif_content_free', 'exif_entry_alloc', 'exif_entry_realloc']

exif_loader_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=['exif_entry_initialize', 'get_support_level_any_type', 'exif_content_free', 'exif_entry_alloc', 'exif_entry_realloc']

inspector/light/source_filesexif_from_data_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=['exif_entry_initialize', 'get_support_level_any_type', 'LLVMFuzzerTestOneInput', 'exif_content_free', 'exif_entry_alloc', 'exif_entry_realloc']

inspector/light/source_filesexif_loader_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=['exif_entry_initialize', 'get_support_level_any_type', 'exif_loader_free', 'exif_content_free', 'exif_entry_alloc', 'exif_entry_realloc']

inspector/source-codeexif_from_data_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=['exif_entry_initialize', 'get_support_level_any_type', 'LLVMFuzzerTestOneInput', 'exif_content_free', 'exif_entry_alloc', 'exif_entry_realloc']

inspector/source-codeexif_loader_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=['exif_entry_initialize', 'get_support_level_any_type', 'exif_loader_free', 'exif_content_free', 'exif_entry_alloc', 'exif_entry_realloc']

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/libexif/libexif/canon/mnote-canon-tag.c [] []
/src/libexif/libexif/olympus/mnote-olympus-tag.c [] []
/src/inspector/light/source_files/src/exif_loader_fuzzer.cc ['inspector/light/source_filesexif_loader_fuzzer.cc'] ['inspector/light/source_filesexif_loader_fuzzer.cc']
/src/exif_loader_fuzzer.cc ['exif_loader_fuzzer'] ['exif_loader_fuzzer']
/src/libexif/libexif/exif-content.c ['exif_from_data_fuzzer', 'exif_loader_fuzzer', 'inspector/light/source_filesexif_from_data_fuzzer.cc', 'inspector/light/source_filesexif_loader_fuzzer.cc', 'inspector/source-codeexif_from_data_fuzzer.cc', 'inspector/source-codeexif_loader_fuzzer.cc'] ['exif_from_data_fuzzer', 'exif_loader_fuzzer', 'inspector/light/source_filesexif_from_data_fuzzer.cc', 'inspector/light/source_filesexif_loader_fuzzer.cc', 'inspector/source-codeexif_from_data_fuzzer.cc', 'inspector/source-codeexif_loader_fuzzer.cc']
/src/libexif/libexif/exif-mem.c ['exif_from_data_fuzzer', 'exif_loader_fuzzer', 'inspector/light/source_filesexif_from_data_fuzzer.cc', 'inspector/light/source_filesexif_loader_fuzzer.cc', 'inspector/source-codeexif_from_data_fuzzer.cc', 'inspector/source-codeexif_loader_fuzzer.cc'] ['exif_from_data_fuzzer', 'exif_loader_fuzzer', 'inspector/light/source_filesexif_from_data_fuzzer.cc', 'inspector/light/source_filesexif_loader_fuzzer.cc', 'inspector/source-codeexif_from_data_fuzzer.cc', 'inspector/source-codeexif_loader_fuzzer.cc']
/src/libexif/libexif/pentax/mnote-pentax-entry.c [] []
/src/libexif/libexif/exif-utils.c ['exif_from_data_fuzzer', 'exif_loader_fuzzer', 'inspector/light/source_filesexif_from_data_fuzzer.cc', 'inspector/light/source_filesexif_loader_fuzzer.cc', 'inspector/source-codeexif_from_data_fuzzer.cc', 'inspector/source-codeexif_loader_fuzzer.cc'] ['exif_from_data_fuzzer', 'exif_loader_fuzzer', 'inspector/light/source_filesexif_from_data_fuzzer.cc', 'inspector/light/source_filesexif_loader_fuzzer.cc', 'inspector/source-codeexif_from_data_fuzzer.cc', 'inspector/source-codeexif_loader_fuzzer.cc']
/src/libexif/libexif/exif-format.c ['exif_from_data_fuzzer', 'exif_loader_fuzzer', 'inspector/light/source_filesexif_from_data_fuzzer.cc', 'inspector/light/source_filesexif_loader_fuzzer.cc', 'inspector/source-codeexif_from_data_fuzzer.cc', 'inspector/source-codeexif_loader_fuzzer.cc'] ['exif_from_data_fuzzer', 'exif_loader_fuzzer', 'inspector/light/source_filesexif_from_data_fuzzer.cc', 'inspector/light/source_filesexif_loader_fuzzer.cc', 'inspector/source-codeexif_from_data_fuzzer.cc', 'inspector/source-codeexif_loader_fuzzer.cc']
/src/libexif/libexif/canon/mnote-canon-entry.c [] []
/src/libexif/libexif/fuji/exif-mnote-data-fuji.c ['exif_from_data_fuzzer', 'exif_loader_fuzzer', 'inspector/light/source_filesexif_from_data_fuzzer.cc', 'inspector/light/source_filesexif_loader_fuzzer.cc', 'inspector/source-codeexif_from_data_fuzzer.cc', 'inspector/source-codeexif_loader_fuzzer.cc'] ['exif_from_data_fuzzer', 'exif_loader_fuzzer', 'inspector/light/source_filesexif_from_data_fuzzer.cc', 'inspector/light/source_filesexif_loader_fuzzer.cc', 'inspector/source-codeexif_from_data_fuzzer.cc', 'inspector/source-codeexif_loader_fuzzer.cc']
/src/libexif/libexif/exif-gps-ifd.c ['exif_from_data_fuzzer', 'exif_loader_fuzzer', 'inspector/light/source_filesexif_from_data_fuzzer.cc', 'inspector/light/source_filesexif_loader_fuzzer.cc', 'inspector/source-codeexif_from_data_fuzzer.cc', 'inspector/source-codeexif_loader_fuzzer.cc'] []
/src/inspector/light/source_files/src/exif_from_data_fuzzer.cc ['inspector/light/source_filesexif_from_data_fuzzer.cc'] ['inspector/light/source_filesexif_from_data_fuzzer.cc']
/src/exif_from_data_fuzzer.cc ['exif_from_data_fuzzer'] ['exif_from_data_fuzzer']
/src/libexif/libexif/exif-mnote-data.c ['exif_from_data_fuzzer', 'exif_loader_fuzzer', 'inspector/light/source_filesexif_from_data_fuzzer.cc', 'inspector/light/source_filesexif_loader_fuzzer.cc', 'inspector/source-codeexif_from_data_fuzzer.cc', 'inspector/source-codeexif_loader_fuzzer.cc'] ['exif_from_data_fuzzer', 'exif_loader_fuzzer', 'inspector/light/source_filesexif_from_data_fuzzer.cc', 'inspector/light/source_filesexif_loader_fuzzer.cc', 'inspector/source-codeexif_from_data_fuzzer.cc', 'inspector/source-codeexif_loader_fuzzer.cc']
/src/libexif/libexif/canon/exif-mnote-data-canon.c ['exif_from_data_fuzzer', 'exif_loader_fuzzer', 'inspector/light/source_filesexif_from_data_fuzzer.cc', 'inspector/light/source_filesexif_loader_fuzzer.cc', 'inspector/source-codeexif_from_data_fuzzer.cc', 'inspector/source-codeexif_loader_fuzzer.cc'] ['exif_from_data_fuzzer', 'exif_loader_fuzzer', 'inspector/light/source_filesexif_from_data_fuzzer.cc', 'inspector/light/source_filesexif_loader_fuzzer.cc', 'inspector/source-codeexif_from_data_fuzzer.cc', 'inspector/source-codeexif_loader_fuzzer.cc']
/src/libexif/libexif/olympus/mnote-olympus-entry.c [] []
/src/libexif/libexif/exif-log.c ['exif_from_data_fuzzer', 'exif_loader_fuzzer', 'inspector/light/source_filesexif_from_data_fuzzer.cc', 'inspector/light/source_filesexif_loader_fuzzer.cc', 'inspector/source-codeexif_from_data_fuzzer.cc', 'inspector/source-codeexif_loader_fuzzer.cc'] ['exif_from_data_fuzzer', 'exif_loader_fuzzer', 'inspector/light/source_filesexif_from_data_fuzzer.cc', 'inspector/light/source_filesexif_loader_fuzzer.cc', 'inspector/source-codeexif_from_data_fuzzer.cc', 'inspector/source-codeexif_loader_fuzzer.cc']
/src/libexif/libexif/exif-ifd.c ['exif_from_data_fuzzer', 'exif_loader_fuzzer', 'inspector/light/source_filesexif_from_data_fuzzer.cc', 'inspector/light/source_filesexif_loader_fuzzer.cc', 'inspector/source-codeexif_from_data_fuzzer.cc', 'inspector/source-codeexif_loader_fuzzer.cc'] ['exif_from_data_fuzzer', 'exif_loader_fuzzer', 'inspector/light/source_filesexif_from_data_fuzzer.cc', 'inspector/light/source_filesexif_loader_fuzzer.cc', 'inspector/source-codeexif_from_data_fuzzer.cc', 'inspector/source-codeexif_loader_fuzzer.cc']
/src/libexif/libexif/fuji/mnote-fuji-tag.c [] []
/src/libexif/libexif/pentax/exif-mnote-data-pentax.c ['exif_from_data_fuzzer', 'exif_loader_fuzzer', 'inspector/light/source_filesexif_from_data_fuzzer.cc', 'inspector/light/source_filesexif_loader_fuzzer.cc', 'inspector/source-codeexif_from_data_fuzzer.cc', 'inspector/source-codeexif_loader_fuzzer.cc'] ['exif_from_data_fuzzer', 'exif_loader_fuzzer', 'inspector/light/source_filesexif_from_data_fuzzer.cc', 'inspector/light/source_filesexif_loader_fuzzer.cc', 'inspector/source-codeexif_from_data_fuzzer.cc', 'inspector/source-codeexif_loader_fuzzer.cc']
/src/libexif/libexif/fuji/mnote-fuji-entry.c [] []
/src/libexif/libexif/olympus/exif-mnote-data-olympus.c ['exif_from_data_fuzzer', 'exif_loader_fuzzer', 'inspector/light/source_filesexif_from_data_fuzzer.cc', 'inspector/light/source_filesexif_loader_fuzzer.cc', 'inspector/source-codeexif_from_data_fuzzer.cc', 'inspector/source-codeexif_loader_fuzzer.cc'] ['exif_from_data_fuzzer', 'exif_loader_fuzzer', 'inspector/light/source_filesexif_from_data_fuzzer.cc', 'inspector/light/source_filesexif_loader_fuzzer.cc', 'inspector/source-codeexif_from_data_fuzzer.cc', 'inspector/source-codeexif_loader_fuzzer.cc']
/src/libexif/libexif/exif-loader.c ['exif_loader_fuzzer', 'inspector/light/source_filesexif_loader_fuzzer.cc', 'inspector/source-codeexif_loader_fuzzer.cc'] ['exif_loader_fuzzer', 'inspector/light/source_filesexif_loader_fuzzer.cc', 'inspector/source-codeexif_loader_fuzzer.cc']
/src/inspector/source-code/src/exif_loader_fuzzer.cc ['inspector/source-codeexif_loader_fuzzer.cc'] ['inspector/source-codeexif_loader_fuzzer.cc']
/src/libexif/libexif/exif-data.c ['exif_from_data_fuzzer', 'exif_loader_fuzzer', 'inspector/light/source_filesexif_from_data_fuzzer.cc', 'inspector/light/source_filesexif_loader_fuzzer.cc', 'inspector/source-codeexif_from_data_fuzzer.cc', 'inspector/source-codeexif_loader_fuzzer.cc'] ['exif_from_data_fuzzer', 'exif_loader_fuzzer', 'inspector/light/source_filesexif_from_data_fuzzer.cc', 'inspector/light/source_filesexif_loader_fuzzer.cc', 'inspector/source-codeexif_from_data_fuzzer.cc', 'inspector/source-codeexif_loader_fuzzer.cc']
/src/libexif/libexif/exif-entry.c ['exif_from_data_fuzzer', 'exif_loader_fuzzer', 'inspector/light/source_filesexif_from_data_fuzzer.cc', 'inspector/light/source_filesexif_loader_fuzzer.cc', 'inspector/source-codeexif_from_data_fuzzer.cc', 'inspector/source-codeexif_loader_fuzzer.cc'] ['exif_from_data_fuzzer', 'exif_loader_fuzzer', 'inspector/light/source_filesexif_from_data_fuzzer.cc', 'inspector/light/source_filesexif_loader_fuzzer.cc', 'inspector/source-codeexif_from_data_fuzzer.cc', 'inspector/source-codeexif_loader_fuzzer.cc']
/src/libexif/libexif/pentax/mnote-pentax-tag.c [] []
/src/libexif/libexif/exif-tag.c ['exif_from_data_fuzzer', 'exif_loader_fuzzer', 'inspector/light/source_filesexif_from_data_fuzzer.cc', 'inspector/light/source_filesexif_loader_fuzzer.cc', 'inspector/source-codeexif_from_data_fuzzer.cc', 'inspector/source-codeexif_loader_fuzzer.cc'] ['exif_from_data_fuzzer', 'exif_loader_fuzzer', 'inspector/light/source_filesexif_from_data_fuzzer.cc', 'inspector/light/source_filesexif_loader_fuzzer.cc', 'inspector/source-codeexif_from_data_fuzzer.cc', 'inspector/source-codeexif_loader_fuzzer.cc']
/src/inspector/source-code/src/exif_from_data_fuzzer.cc ['inspector/source-codeexif_from_data_fuzzer.cc'] ['inspector/source-codeexif_from_data_fuzzer.cc']

Directories in report

Directory
/src/inspector/light/source_files/src/
/src/libexif/libexif/canon/
/src/libexif/libexif/olympus/
/src/libexif/libexif/pentax/
/src/libexif/libexif/fuji/
/src/
/src/inspector/source-code/src/
/src/libexif/libexif/