Fuzz introspector
For issues and ideas: https://github.com/ossf/fuzz-introspector/issues
Report generation date: 2025-07-01

Project overview: libzmq

High level conclusions

Reachability and coverage overview

Functions statically reachable by fuzzers
26.0%
622 / 2374
Cyclomatic complexity statically reachable by fuzzers
28.0%
3685 / 13130
Runtime code coverage of functions
30.0%
723 / 2374

Warning: The number of runtime covered functions are larger than the number of reachable functions. This means that Fuzz Introspector found there are more functions covered at runtime than what is considered reachable based on the static analysis. This is a limitation in the analysis as anything covered at runtime is by definition reachable by the fuzzers.
This is likely due to a limitation in the static analysis. In this case, the count of functions covered at runtime is the true value, which means this is what should be considered "achieved" by the fuzzer.

Use the project functions table below to query all functions that were not covered at runtime.

Fuzzers overview

Fuzzer Fuzzer filename Functions Reached Functions unreached Fuzzer depth Files reached Basic blocks reached Cyclomatic complexity Details
test_z85_decode_fuzzer /src/libzmq/tests/test_z85_decode_fuzzer.cpp 13 549 5 3 118 53 test_z85_decode_fuzzer.cpp
test_connect_fuzzer /src/libzmq/tests/test_connect_fuzzer.cpp 1034 1901 17 106 5864 3126 test_connect_fuzzer.cpp
test_bind_null_fuzzer /src/libzmq/tests/test_bind_null_fuzzer.cpp 1091 1864 17 106 6404 3358 test_bind_null_fuzzer.cpp
test_connect_stream_fuzzer /src/libzmq/tests/test_connect_stream_fuzzer.cpp 1058 1884 17 106 6037 3190 test_connect_stream_fuzzer.cpp
test_connect_ws_fuzzer /src/libzmq/tests/test_connect_ws_fuzzer.cpp 1058 1884 17 106 6040 3191 test_connect_ws_fuzzer.cpp
test_bind_ws_fuzzer /src/libzmq/tests/test_bind_ws_fuzzer.cpp 1087 1865 17 106 6440 3368 test_bind_ws_fuzzer.cpp
test_connect_curve_fuzzer /src/libzmq/tests/test_connect_curve_fuzzer.cpp 1071 1906 17 107 6134 3212 test_connect_curve_fuzzer.cpp
test_connect_null_fuzzer /src/libzmq/tests/test_connect_null_fuzzer.cpp 1058 1884 17 106 6037 3190 test_connect_null_fuzzer.cpp
test_bind_curve_fuzzer /src/libzmq/tests/test_bind_curve_fuzzer.cpp 1230 1813 17 111 7603 3832 test_bind_curve_fuzzer.cpp
test_bind_fuzzer /src/libzmq/tests/test_bind_fuzzer.cpp 1013 1914 17 106 5434 3043 test_bind_fuzzer.cpp
test_socket_options_fuzzer /src/libzmq/tests/test_socket_options_fuzzer.cpp 1001 1866 14 104 5508 3072 test_socket_options_fuzzer.cpp
test_bind_stream_fuzzer /src/libzmq/tests/test_bind_stream_fuzzer.cpp 1103 1855 17 106 6502 3392 test_bind_stream_fuzzer.cpp

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: test_z85_decode_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 30 81.0%
gold [1:9] 0 0.0%
yellow [10:29] 0 0.0%
greenyellow [30:49] 0 0.0%
lawngreen 50+ 7 18.9%
All colors 37 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
2 2 1 :

['__errno_location']

2 2 zmq_z85_decode call site: 00033 /src/libzmq/src/zmq_utils.cpp:173

Runtime coverage analysis

Covered functions
2
Functions that are reachable but not covered
11
Reachable functions
13
Percentage of reachable functions covered
15.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/libzmq/tests/test_z85_decode_fuzzer.cpp 1
/src/libzmq/external/unity/unity.c 6
/src/libzmq/src/zmq_utils.cpp 1

Fuzzer: test_connect_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 1790 100.%
gold [1:9] 0 0.0%
yellow [10:29] 0 0.0%
greenyellow [30:49] 0 0.0%
lawngreen 50+ 0 0.0%
All colors 1790 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
1789 0 EP call site: 00000 zmq_ctx_term

Runtime coverage analysis

Covered functions
1
Functions that are reachable but not covered
1032
Reachable functions
1034
Percentage of reachable functions covered
0.19%
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/libzmq/tests/test_connect_fuzzer.cpp 1
/src/libzmq/tests/testutil_unity.cpp 9
/src/libzmq/external/unity/unity.c 10
/src/libzmq/src/zmq.cpp 14
/src/libzmq/src/ctx.cpp 21
/src/libzmq/src/mutex.hpp 8
/src/libzmq/src/err.cpp 3
/src/libzmq/src/reaper.cpp 4
/src/libzmq/src/object.cpp 24
/src/libzmq/src/i_poll_events.hpp 2
/src/libzmq/src/mailbox.cpp 5
/src/libzmq/src/i_mailbox.hpp 2
/src/libzmq/src/ypipe.hpp 5
/src/libzmq/src/ypipe_base.hpp 4
/src/libzmq/src/yqueue.hpp 12
/src/libzmq/src/atomic_ptr.hpp 13
/src/libzmq/src/signaler.cpp 9
/src/libzmq/src/ip.cpp 13
/src/libzmq/src/epoll.cpp 4
/src/libzmq/src/poller_base.cpp 7
/src/libzmq/src/poller_base.hpp 2
/src/libzmq/src/clock.cpp 4
/src/libzmq/src/atomic_counter.hpp 4
/src/libzmq/src/thread.hpp 2
/src/libzmq/src/thread.cpp 7
/src/libzmq/src/io_thread.cpp 6
/src/libzmq/src/socket_base.cpp 26
/src/libzmq/src/pair.cpp 1
/src/libzmq/src/own.cpp 8
/src/libzmq/src/options.cpp 13
/src/libzmq/src/options.hpp 3
/src/libzmq/src/array.hpp 27
/src/libzmq/src/pipe.hpp 2
/src/libzmq/src/socket_base.hpp 2
/src/libzmq/src/mailbox_safe.cpp 2
/src/libzmq/src/condition_variable.hpp 2
/src/libzmq/src/pub.cpp 1
/src/libzmq/src/xpub.cpp 1
/src/libzmq/src/generic_mtrie_impl.hpp 2
/src/libzmq/src/dist.cpp 2
/src/libzmq/src/msg.cpp 16
/src/libzmq/src/endpoint.hpp 6
/src/libzmq/src/metadata.cpp 1
/src/libzmq/src/metadata.hpp 1
/src/libzmq/src/sub.cpp 1
/src/libzmq/src/xsub.cpp 1
/src/libzmq/src/fq.cpp 2
/src/libzmq/src/radix_tree.cpp 13
/src/libzmq/src/req.cpp 2
/src/libzmq/src/dealer.cpp 2
/src/libzmq/src/lb.cpp 2
/src/libzmq/src/random.cpp 4
/src/libzmq/src/rep.cpp 1
/src/libzmq/src/router.cpp 1
/src/libzmq/src/pull.cpp 1
/src/libzmq/src/push.cpp 1
/src/libzmq/src/stream.cpp 1
/src/libzmq/src/server.cpp 1
/src/libzmq/src/client.cpp 1
/src/libzmq/src/radio.cpp 2
/src/libzmq/src/dish.cpp 2
/src/libzmq/src/gather.cpp 1
/src/libzmq/src/scatter.cpp 1
/src/libzmq/src/dgram.cpp 1
/src/libzmq/src/peer.cpp 1
/src/libzmq/src/channel.cpp 1
/src/libzmq/src/pipe.cpp 20
/src/libzmq/src/ctx.hpp 4
/src/libzmq/src/address.cpp 4
/src/libzmq/src/udp_address.cpp 2
/src/libzmq/src/ip_resolver.cpp 24
/src/libzmq/src/ip_resolver.hpp 1
/src/libzmq/src/ws_address.hpp 1
/src/libzmq/src/ipc_address.cpp 6
/src/libzmq/src/session_base.cpp 4
/src/libzmq/src/io_object.cpp 3
/src/libzmq/src/ypipe_conflate.hpp 1
/src/libzmq/src/dbuffer.hpp 1
/src/libzmq/src/blob.hpp 2
/src/libzmq/src/tcp_address.cpp 10
/src/libzmq/src/ws_address.cpp 4
/src/libzmq/src/tipc_address.cpp 9
/usr/include/linux/tipc.h 4
/src/libzmq/src/tcp_listener.cpp 3
/src/libzmq/src/stream_listener_base.cpp 3
/src/libzmq/src/tcp.cpp 5
/src/libzmq/src/endpoint.cpp 2
/src/libzmq/src/ws_listener.cpp 3
/src/libzmq/src/ipc_listener.cpp 2
/src/libzmq/src/tipc_listener.cpp 2
/src/libzmq/src/mailbox.hpp 1
/src/libsodium/src/libsodium/sodium/core.c 4
/src/libsodium/src/libsodium/sodium/runtime.c 11
/src/libsodium/src/libsodium/randombytes/randombytes.c 4
/src/libsodium/src/libsodium/sodium/utils.c 1
/src/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.c 2
/src/libsodium/src/libsodium/crypto_generichash/blake2b/ref/generichash_blake2b.c 1
/src/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-ref.c 1
/src/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c 1
/src/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.c 1
/src/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20.c 1
/src/libsodium/src/libsodium/crypto_stream/salsa20/stream_salsa20.c 1
/src/libsodium/src/libsodium/crypto_aead/aegis128l/aead_aegis128l.c 1
/src/libsodium/src/libsodium/crypto_aead/aegis256/aead_aegis256.c 1
/src/libzmq/tests/testutil.cpp 1
/src/libzmq/src/zmq_utils.cpp 1

Fuzzer: test_bind_null_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 1971 100.%
gold [1:9] 0 0.0%
yellow [10:29] 0 0.0%
greenyellow [30:49] 0 0.0%
lawngreen 50+ 0 0.0%
All colors 1971 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
1970 0 EP call site: 00000 zmq_ctx_term

Runtime coverage analysis

Covered functions
1
Functions that are reachable but not covered
1089
Reachable functions
1091
Percentage of reachable functions covered
0.18%
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/libzmq/tests/test_bind_null_fuzzer.cpp 1
/src/libzmq/tests/testutil_unity.cpp 14
/src/libzmq/external/unity/unity.c 12
/src/libzmq/src/zmq.cpp 22
/src/libzmq/src/ctx.cpp 21
/src/libzmq/src/mutex.hpp 8
/src/libzmq/src/err.cpp 3
/src/libzmq/src/reaper.cpp 4
/src/libzmq/src/object.cpp 24
/src/libzmq/src/i_poll_events.hpp 2
/src/libzmq/src/mailbox.cpp 5
/src/libzmq/src/i_mailbox.hpp 2
/src/libzmq/src/ypipe.hpp 5
/src/libzmq/src/ypipe_base.hpp 4
/src/libzmq/src/yqueue.hpp 12
/src/libzmq/src/atomic_ptr.hpp 13
/src/libzmq/src/signaler.cpp 9
/src/libzmq/src/ip.cpp 13
/src/libzmq/src/epoll.cpp 4
/src/libzmq/src/poller_base.cpp 7
/src/libzmq/src/poller_base.hpp 2
/src/libzmq/src/clock.cpp 4
/src/libzmq/src/atomic_counter.hpp 4
/src/libzmq/src/thread.hpp 2
/src/libzmq/src/thread.cpp 7
/src/libzmq/src/io_thread.cpp 6
/src/libzmq/src/socket_base.cpp 31
/src/libzmq/src/pair.cpp 1
/src/libzmq/src/own.cpp 8
/src/libzmq/src/options.cpp 17
/src/libzmq/src/options.hpp 4
/src/libzmq/src/array.hpp 27
/src/libzmq/src/pipe.hpp 2
/src/libzmq/src/socket_base.hpp 2
/src/libzmq/src/mailbox_safe.cpp 2
/src/libzmq/src/condition_variable.hpp 2
/src/libzmq/src/pub.cpp 1
/src/libzmq/src/xpub.cpp 1
/src/libzmq/src/generic_mtrie_impl.hpp 2
/src/libzmq/src/dist.cpp 2
/src/libzmq/src/msg.cpp 17
/src/libzmq/src/endpoint.hpp 6
/src/libzmq/src/metadata.cpp 1
/src/libzmq/src/metadata.hpp 1
/src/libzmq/src/sub.cpp 1
/src/libzmq/src/xsub.cpp 1
/src/libzmq/src/fq.cpp 2
/src/libzmq/src/radix_tree.cpp 13
/src/libzmq/src/req.cpp 2
/src/libzmq/src/dealer.cpp 2
/src/libzmq/src/lb.cpp 2
/src/libzmq/src/random.cpp 4
/src/libzmq/src/rep.cpp 1
/src/libzmq/src/router.cpp 1
/src/libzmq/src/pull.cpp 1
/src/libzmq/src/push.cpp 1
/src/libzmq/src/stream.cpp 1
/src/libzmq/src/server.cpp 1
/src/libzmq/src/client.cpp 1
/src/libzmq/src/radio.cpp 2
/src/libzmq/src/dish.cpp 2
/src/libzmq/src/gather.cpp 1
/src/libzmq/src/scatter.cpp 1
/src/libzmq/src/dgram.cpp 1
/src/libzmq/src/peer.cpp 1
/src/libzmq/src/channel.cpp 1
/src/libzmq/src/pipe.cpp 20
/src/libzmq/src/ctx.hpp 4
/src/libzmq/src/address.cpp 4
/src/libzmq/src/udp_address.cpp 2
/src/libzmq/src/ip_resolver.cpp 24
/src/libzmq/src/ip_resolver.hpp 1
/src/libzmq/src/ws_address.hpp 1
/src/libzmq/src/ipc_address.cpp 6
/src/libzmq/src/session_base.cpp 4
/src/libzmq/src/io_object.cpp 3
/src/libzmq/src/ypipe_conflate.hpp 1
/src/libzmq/src/dbuffer.hpp 1
/src/libzmq/src/blob.hpp 2
/src/libzmq/src/tcp_address.cpp 10
/src/libzmq/src/ws_address.cpp 4
/src/libzmq/src/tipc_address.cpp 9
/usr/include/linux/tipc.h 4
/src/libzmq/src/tcp_listener.cpp 3
/src/libzmq/src/stream_listener_base.cpp 3
/src/libzmq/src/tcp.cpp 5
/src/libzmq/src/endpoint.cpp 2
/src/libzmq/src/ws_listener.cpp 3
/src/libzmq/src/ipc_listener.cpp 2
/src/libzmq/src/tipc_listener.cpp 2
/src/libzmq/src/mailbox.hpp 1
/src/libsodium/src/libsodium/sodium/core.c 4
/src/libsodium/src/libsodium/sodium/runtime.c 11
/src/libsodium/src/libsodium/randombytes/randombytes.c 4
/src/libsodium/src/libsodium/sodium/utils.c 1
/src/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.c 2
/src/libsodium/src/libsodium/crypto_generichash/blake2b/ref/generichash_blake2b.c 1
/src/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-ref.c 1
/src/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c 1
/src/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.c 1
/src/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20.c 1
/src/libsodium/src/libsodium/crypto_stream/salsa20/stream_salsa20.c 1
/src/libsodium/src/libsodium/crypto_aead/aegis128l/aead_aegis128l.c 1
/src/libsodium/src/libsodium/crypto_aead/aegis256/aead_aegis256.c 1
/src/libzmq/tests/testutil.cpp 4
/src/libzmq/src/zmq_utils.cpp 2

Fuzzer: test_connect_stream_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 1865 100.%
gold [1:9] 0 0.0%
yellow [10:29] 0 0.0%
greenyellow [30:49] 0 0.0%
lawngreen 50+ 0 0.0%
All colors 1865 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
1864 0 EP call site: 00000 zmq_ctx_term

Runtime coverage analysis

Covered functions
1
Functions that are reachable but not covered
1056
Reachable functions
1058
Percentage of reachable functions covered
0.19%
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/libzmq/tests/test_connect_stream_fuzzer.cpp 1
/src/libzmq/tests/testutil_unity.cpp 11
/src/libzmq/external/unity/unity.c 10
/src/libzmq/src/zmq.cpp 18
/src/libzmq/src/ctx.cpp 21
/src/libzmq/src/mutex.hpp 8
/src/libzmq/src/err.cpp 3
/src/libzmq/src/reaper.cpp 4
/src/libzmq/src/object.cpp 24
/src/libzmq/src/i_poll_events.hpp 2
/src/libzmq/src/mailbox.cpp 5
/src/libzmq/src/i_mailbox.hpp 2
/src/libzmq/src/ypipe.hpp 5
/src/libzmq/src/ypipe_base.hpp 4
/src/libzmq/src/yqueue.hpp 12
/src/libzmq/src/atomic_ptr.hpp 13
/src/libzmq/src/signaler.cpp 9
/src/libzmq/src/ip.cpp 13
/src/libzmq/src/epoll.cpp 4
/src/libzmq/src/poller_base.cpp 7
/src/libzmq/src/poller_base.hpp 2
/src/libzmq/src/clock.cpp 4
/src/libzmq/src/atomic_counter.hpp 4
/src/libzmq/src/thread.hpp 2
/src/libzmq/src/thread.cpp 7
/src/libzmq/src/io_thread.cpp 6
/src/libzmq/src/socket_base.cpp 28
/src/libzmq/src/pair.cpp 1
/src/libzmq/src/own.cpp 8
/src/libzmq/src/options.cpp 13
/src/libzmq/src/options.hpp 3
/src/libzmq/src/array.hpp 27
/src/libzmq/src/pipe.hpp 2
/src/libzmq/src/socket_base.hpp 2
/src/libzmq/src/mailbox_safe.cpp 2
/src/libzmq/src/condition_variable.hpp 2
/src/libzmq/src/pub.cpp 1
/src/libzmq/src/xpub.cpp 1
/src/libzmq/src/generic_mtrie_impl.hpp 2
/src/libzmq/src/dist.cpp 2
/src/libzmq/src/msg.cpp 16
/src/libzmq/src/endpoint.hpp 6
/src/libzmq/src/metadata.cpp 1
/src/libzmq/src/metadata.hpp 1
/src/libzmq/src/sub.cpp 1
/src/libzmq/src/xsub.cpp 1
/src/libzmq/src/fq.cpp 2
/src/libzmq/src/radix_tree.cpp 13
/src/libzmq/src/req.cpp 2
/src/libzmq/src/dealer.cpp 2
/src/libzmq/src/lb.cpp 2
/src/libzmq/src/random.cpp 4
/src/libzmq/src/rep.cpp 1
/src/libzmq/src/router.cpp 1
/src/libzmq/src/pull.cpp 1
/src/libzmq/src/push.cpp 1
/src/libzmq/src/stream.cpp 1
/src/libzmq/src/server.cpp 1
/src/libzmq/src/client.cpp 1
/src/libzmq/src/radio.cpp 2
/src/libzmq/src/dish.cpp 2
/src/libzmq/src/gather.cpp 1
/src/libzmq/src/scatter.cpp 1
/src/libzmq/src/dgram.cpp 1
/src/libzmq/src/peer.cpp 1
/src/libzmq/src/channel.cpp 1
/src/libzmq/src/pipe.cpp 20
/src/libzmq/src/ctx.hpp 4
/src/libzmq/src/address.cpp 4
/src/libzmq/src/udp_address.cpp 2
/src/libzmq/src/ip_resolver.cpp 24
/src/libzmq/src/ip_resolver.hpp 1
/src/libzmq/src/ws_address.hpp 1
/src/libzmq/src/ipc_address.cpp 6
/src/libzmq/src/session_base.cpp 4
/src/libzmq/src/io_object.cpp 3
/src/libzmq/src/ypipe_conflate.hpp 1
/src/libzmq/src/dbuffer.hpp 1
/src/libzmq/src/blob.hpp 2
/src/libzmq/src/tcp_address.cpp 10
/src/libzmq/src/ws_address.cpp 4
/src/libzmq/src/tipc_address.cpp 9
/usr/include/linux/tipc.h 4
/src/libzmq/src/tcp_listener.cpp 3
/src/libzmq/src/stream_listener_base.cpp 3
/src/libzmq/src/tcp.cpp 5
/src/libzmq/src/endpoint.cpp 2
/src/libzmq/src/ws_listener.cpp 3
/src/libzmq/src/ipc_listener.cpp 2
/src/libzmq/src/tipc_listener.cpp 2
/src/libzmq/src/mailbox.hpp 1
/src/libsodium/src/libsodium/sodium/core.c 4
/src/libsodium/src/libsodium/sodium/runtime.c 11
/src/libsodium/src/libsodium/randombytes/randombytes.c 4
/src/libsodium/src/libsodium/sodium/utils.c 1
/src/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.c 2
/src/libsodium/src/libsodium/crypto_generichash/blake2b/ref/generichash_blake2b.c 1
/src/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-ref.c 1
/src/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c 1
/src/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.c 1
/src/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20.c 1
/src/libsodium/src/libsodium/crypto_stream/salsa20/stream_salsa20.c 1
/src/libsodium/src/libsodium/crypto_aead/aegis128l/aead_aegis128l.c 1
/src/libsodium/src/libsodium/crypto_aead/aegis256/aead_aegis256.c 1
/src/libzmq/tests/testutil.cpp 3
/src/libzmq/src/zmq_utils.cpp 1

Fuzzer: test_connect_ws_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 1867 100.%
gold [1:9] 0 0.0%
yellow [10:29] 0 0.0%
greenyellow [30:49] 0 0.0%
lawngreen 50+ 0 0.0%
All colors 1867 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
1866 0 EP call site: 00000 zmq_ctx_term

Runtime coverage analysis

Covered functions
1
Functions that are reachable but not covered
1056
Reachable functions
1058
Percentage of reachable functions covered
0.19%
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/libzmq/tests/test_connect_ws_fuzzer.cpp 1
/src/libzmq/tests/testutil_unity.cpp 11
/src/libzmq/external/unity/unity.c 10
/src/libzmq/src/zmq.cpp 18
/src/libzmq/src/ctx.cpp 21
/src/libzmq/src/mutex.hpp 8
/src/libzmq/src/err.cpp 3
/src/libzmq/src/reaper.cpp 4
/src/libzmq/src/object.cpp 24
/src/libzmq/src/i_poll_events.hpp 2
/src/libzmq/src/mailbox.cpp 5
/src/libzmq/src/i_mailbox.hpp 2
/src/libzmq/src/ypipe.hpp 5
/src/libzmq/src/ypipe_base.hpp 4
/src/libzmq/src/yqueue.hpp 12
/src/libzmq/src/atomic_ptr.hpp 13
/src/libzmq/src/signaler.cpp 9
/src/libzmq/src/ip.cpp 13
/src/libzmq/src/epoll.cpp 4
/src/libzmq/src/poller_base.cpp 7
/src/libzmq/src/poller_base.hpp 2
/src/libzmq/src/clock.cpp 4
/src/libzmq/src/atomic_counter.hpp 4
/src/libzmq/src/thread.hpp 2
/src/libzmq/src/thread.cpp 7
/src/libzmq/src/io_thread.cpp 6
/src/libzmq/src/socket_base.cpp 28
/src/libzmq/src/pair.cpp 1
/src/libzmq/src/own.cpp 8
/src/libzmq/src/options.cpp 13
/src/libzmq/src/options.hpp 3
/src/libzmq/src/array.hpp 27
/src/libzmq/src/pipe.hpp 2
/src/libzmq/src/socket_base.hpp 2
/src/libzmq/src/mailbox_safe.cpp 2
/src/libzmq/src/condition_variable.hpp 2
/src/libzmq/src/pub.cpp 1
/src/libzmq/src/xpub.cpp 1
/src/libzmq/src/generic_mtrie_impl.hpp 2
/src/libzmq/src/dist.cpp 2
/src/libzmq/src/msg.cpp 16
/src/libzmq/src/endpoint.hpp 6
/src/libzmq/src/metadata.cpp 1
/src/libzmq/src/metadata.hpp 1
/src/libzmq/src/sub.cpp 1
/src/libzmq/src/xsub.cpp 1
/src/libzmq/src/fq.cpp 2
/src/libzmq/src/radix_tree.cpp 13
/src/libzmq/src/req.cpp 2
/src/libzmq/src/dealer.cpp 2
/src/libzmq/src/lb.cpp 2
/src/libzmq/src/random.cpp 4
/src/libzmq/src/rep.cpp 1
/src/libzmq/src/router.cpp 1
/src/libzmq/src/pull.cpp 1
/src/libzmq/src/push.cpp 1
/src/libzmq/src/stream.cpp 1
/src/libzmq/src/server.cpp 1
/src/libzmq/src/client.cpp 1
/src/libzmq/src/radio.cpp 2
/src/libzmq/src/dish.cpp 2
/src/libzmq/src/gather.cpp 1
/src/libzmq/src/scatter.cpp 1
/src/libzmq/src/dgram.cpp 1
/src/libzmq/src/peer.cpp 1
/src/libzmq/src/channel.cpp 1
/src/libzmq/src/pipe.cpp 20
/src/libzmq/src/ctx.hpp 4
/src/libzmq/src/address.cpp 4
/src/libzmq/src/udp_address.cpp 2
/src/libzmq/src/ip_resolver.cpp 24
/src/libzmq/src/ip_resolver.hpp 1
/src/libzmq/src/ws_address.hpp 1
/src/libzmq/src/ipc_address.cpp 6
/src/libzmq/src/session_base.cpp 4
/src/libzmq/src/io_object.cpp 3
/src/libzmq/src/ypipe_conflate.hpp 1
/src/libzmq/src/dbuffer.hpp 1
/src/libzmq/src/blob.hpp 2
/src/libzmq/src/tcp_address.cpp 10
/src/libzmq/src/ws_address.cpp 4
/src/libzmq/src/tipc_address.cpp 9
/usr/include/linux/tipc.h 4
/src/libzmq/src/tcp_listener.cpp 3
/src/libzmq/src/stream_listener_base.cpp 3
/src/libzmq/src/tcp.cpp 5
/src/libzmq/src/endpoint.cpp 2
/src/libzmq/src/ws_listener.cpp 3
/src/libzmq/src/ipc_listener.cpp 2
/src/libzmq/src/tipc_listener.cpp 2
/src/libzmq/src/mailbox.hpp 1
/src/libsodium/src/libsodium/sodium/core.c 4
/src/libsodium/src/libsodium/sodium/runtime.c 11
/src/libsodium/src/libsodium/randombytes/randombytes.c 4
/src/libsodium/src/libsodium/sodium/utils.c 1
/src/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.c 2
/src/libsodium/src/libsodium/crypto_generichash/blake2b/ref/generichash_blake2b.c 1
/src/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-ref.c 1
/src/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c 1
/src/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.c 1
/src/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20.c 1
/src/libsodium/src/libsodium/crypto_stream/salsa20/stream_salsa20.c 1
/src/libsodium/src/libsodium/crypto_aead/aegis128l/aead_aegis128l.c 1
/src/libsodium/src/libsodium/crypto_aead/aegis256/aead_aegis256.c 1
/src/libzmq/tests/testutil.cpp 3
/src/libzmq/src/zmq_utils.cpp 1

Fuzzer: test_bind_ws_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 1982 100.%
gold [1:9] 0 0.0%
yellow [10:29] 0 0.0%
greenyellow [30:49] 0 0.0%
lawngreen 50+ 0 0.0%
All colors 1982 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
1981 0 EP call site: 00000 zmq_ctx_term

Runtime coverage analysis

Covered functions
1
Functions that are reachable but not covered
1085
Reachable functions
1087
Percentage of reachable functions covered
0.18%
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/libzmq/tests/test_bind_ws_fuzzer.cpp 1
/src/libzmq/tests/testutil_unity.cpp 13
/src/libzmq/external/unity/unity.c 14
/src/libzmq/src/zmq.cpp 23
/src/libzmq/src/ctx.cpp 21
/src/libzmq/src/mutex.hpp 8
/src/libzmq/src/err.cpp 3
/src/libzmq/src/reaper.cpp 4
/src/libzmq/src/object.cpp 24
/src/libzmq/src/i_poll_events.hpp 2
/src/libzmq/src/mailbox.cpp 5
/src/libzmq/src/i_mailbox.hpp 2
/src/libzmq/src/ypipe.hpp 5
/src/libzmq/src/ypipe_base.hpp 4
/src/libzmq/src/yqueue.hpp 12
/src/libzmq/src/atomic_ptr.hpp 13
/src/libzmq/src/signaler.cpp 9
/src/libzmq/src/ip.cpp 13
/src/libzmq/src/epoll.cpp 4
/src/libzmq/src/poller_base.cpp 7
/src/libzmq/src/poller_base.hpp 2
/src/libzmq/src/clock.cpp 4
/src/libzmq/src/atomic_counter.hpp 4
/src/libzmq/src/thread.hpp 2
/src/libzmq/src/thread.cpp 7
/src/libzmq/src/io_thread.cpp 6
/src/libzmq/src/socket_base.cpp 31
/src/libzmq/src/pair.cpp 1
/src/libzmq/src/own.cpp 8
/src/libzmq/src/options.cpp 17
/src/libzmq/src/options.hpp 4
/src/libzmq/src/array.hpp 27
/src/libzmq/src/pipe.hpp 2
/src/libzmq/src/socket_base.hpp 2
/src/libzmq/src/mailbox_safe.cpp 2
/src/libzmq/src/condition_variable.hpp 2
/src/libzmq/src/pub.cpp 1
/src/libzmq/src/xpub.cpp 1
/src/libzmq/src/generic_mtrie_impl.hpp 2
/src/libzmq/src/dist.cpp 2
/src/libzmq/src/msg.cpp 16
/src/libzmq/src/endpoint.hpp 6
/src/libzmq/src/metadata.cpp 1
/src/libzmq/src/metadata.hpp 1
/src/libzmq/src/sub.cpp 1
/src/libzmq/src/xsub.cpp 1
/src/libzmq/src/fq.cpp 2
/src/libzmq/src/radix_tree.cpp 13
/src/libzmq/src/req.cpp 2
/src/libzmq/src/dealer.cpp 2
/src/libzmq/src/lb.cpp 2
/src/libzmq/src/random.cpp 4
/src/libzmq/src/rep.cpp 1
/src/libzmq/src/router.cpp 1
/src/libzmq/src/pull.cpp 1
/src/libzmq/src/push.cpp 1
/src/libzmq/src/stream.cpp 1
/src/libzmq/src/server.cpp 1
/src/libzmq/src/client.cpp 1
/src/libzmq/src/radio.cpp 2
/src/libzmq/src/dish.cpp 2
/src/libzmq/src/gather.cpp 1
/src/libzmq/src/scatter.cpp 1
/src/libzmq/src/dgram.cpp 1
/src/libzmq/src/peer.cpp 1
/src/libzmq/src/channel.cpp 1
/src/libzmq/src/pipe.cpp 20
/src/libzmq/src/ctx.hpp 4
/src/libzmq/src/address.cpp 4
/src/libzmq/src/udp_address.cpp 2
/src/libzmq/src/ip_resolver.cpp 24
/src/libzmq/src/ip_resolver.hpp 1
/src/libzmq/src/ws_address.hpp 1
/src/libzmq/src/ipc_address.cpp 6
/src/libzmq/src/session_base.cpp 4
/src/libzmq/src/io_object.cpp 3
/src/libzmq/src/ypipe_conflate.hpp 1
/src/libzmq/src/dbuffer.hpp 1
/src/libzmq/src/blob.hpp 2
/src/libzmq/src/tcp_address.cpp 10
/src/libzmq/src/ws_address.cpp 4
/src/libzmq/src/tipc_address.cpp 9
/usr/include/linux/tipc.h 4
/src/libzmq/src/tcp_listener.cpp 3
/src/libzmq/src/stream_listener_base.cpp 3
/src/libzmq/src/tcp.cpp 5
/src/libzmq/src/endpoint.cpp 2
/src/libzmq/src/ws_listener.cpp 3
/src/libzmq/src/ipc_listener.cpp 2
/src/libzmq/src/tipc_listener.cpp 2
/src/libzmq/src/mailbox.hpp 1
/src/libsodium/src/libsodium/sodium/core.c 4
/src/libsodium/src/libsodium/sodium/runtime.c 11
/src/libsodium/src/libsodium/randombytes/randombytes.c 4
/src/libsodium/src/libsodium/sodium/utils.c 1
/src/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.c 2
/src/libsodium/src/libsodium/crypto_generichash/blake2b/ref/generichash_blake2b.c 1
/src/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-ref.c 1
/src/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c 1
/src/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.c 1
/src/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20.c 1
/src/libsodium/src/libsodium/crypto_stream/salsa20/stream_salsa20.c 1
/src/libsodium/src/libsodium/crypto_aead/aegis128l/aead_aegis128l.c 1
/src/libsodium/src/libsodium/crypto_aead/aegis256/aead_aegis256.c 1
/src/libzmq/tests/testutil.cpp 3
/src/libzmq/src/zmq_utils.cpp 2

Fuzzer: test_connect_curve_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 1908 100.%
gold [1:9] 0 0.0%
yellow [10:29] 0 0.0%
greenyellow [30:49] 0 0.0%
lawngreen 50+ 0 0.0%
All colors 1908 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
1907 0 EP call site: 00000 zmq_ctx_term

Runtime coverage analysis

Covered functions
1
Functions that are reachable but not covered
1069
Reachable functions
1071
Percentage of reachable functions covered
0.19%
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/libzmq/tests/test_connect_curve_fuzzer.cpp 1
/src/libzmq/tests/testutil_unity.cpp 11
/src/libzmq/external/unity/unity.c 10
/src/libzmq/src/zmq.cpp 21
/src/libzmq/src/ctx.cpp 21
/src/libzmq/src/mutex.hpp 8
/src/libzmq/src/err.cpp 3
/src/libzmq/src/reaper.cpp 4
/src/libzmq/src/object.cpp 24
/src/libzmq/src/i_poll_events.hpp 2
/src/libzmq/src/mailbox.cpp 5
/src/libzmq/src/i_mailbox.hpp 2
/src/libzmq/src/ypipe.hpp 5
/src/libzmq/src/ypipe_base.hpp 4
/src/libzmq/src/yqueue.hpp 12
/src/libzmq/src/atomic_ptr.hpp 13
/src/libzmq/src/signaler.cpp 9
/src/libzmq/src/ip.cpp 13
/src/libzmq/src/epoll.cpp 4
/src/libzmq/src/poller_base.cpp 7
/src/libzmq/src/poller_base.hpp 2
/src/libzmq/src/clock.cpp 4
/src/libzmq/src/atomic_counter.hpp 4
/src/libzmq/src/thread.hpp 2
/src/libzmq/src/thread.cpp 7
/src/libzmq/src/io_thread.cpp 6
/src/libzmq/src/socket_base.cpp 29
/src/libzmq/src/pair.cpp 1
/src/libzmq/src/own.cpp 8
/src/libzmq/src/options.cpp 13
/src/libzmq/src/options.hpp 3
/src/libzmq/src/array.hpp 27
/src/libzmq/src/pipe.hpp 2
/src/libzmq/src/socket_base.hpp 2
/src/libzmq/src/mailbox_safe.cpp 2
/src/libzmq/src/condition_variable.hpp 2
/src/libzmq/src/pub.cpp 1
/src/libzmq/src/xpub.cpp 1
/src/libzmq/src/generic_mtrie_impl.hpp 2
/src/libzmq/src/dist.cpp 2
/src/libzmq/src/msg.cpp 16
/src/libzmq/src/endpoint.hpp 6
/src/libzmq/src/metadata.cpp 1
/src/libzmq/src/metadata.hpp 1
/src/libzmq/src/sub.cpp 1
/src/libzmq/src/xsub.cpp 1
/src/libzmq/src/fq.cpp 2
/src/libzmq/src/radix_tree.cpp 13
/src/libzmq/src/req.cpp 2
/src/libzmq/src/dealer.cpp 2
/src/libzmq/src/lb.cpp 2
/src/libzmq/src/random.cpp 4
/src/libzmq/src/rep.cpp 1
/src/libzmq/src/router.cpp 1
/src/libzmq/src/pull.cpp 1
/src/libzmq/src/push.cpp 1
/src/libzmq/src/stream.cpp 1
/src/libzmq/src/server.cpp 1
/src/libzmq/src/client.cpp 1
/src/libzmq/src/radio.cpp 2
/src/libzmq/src/dish.cpp 2
/src/libzmq/src/gather.cpp 1
/src/libzmq/src/scatter.cpp 1
/src/libzmq/src/dgram.cpp 1
/src/libzmq/src/peer.cpp 1
/src/libzmq/src/channel.cpp 1
/src/libzmq/src/pipe.cpp 20
/src/libzmq/src/ctx.hpp 4
/src/libzmq/src/address.cpp 4
/src/libzmq/src/udp_address.cpp 2
/src/libzmq/src/ip_resolver.cpp 24
/src/libzmq/src/ip_resolver.hpp 1
/src/libzmq/src/ws_address.hpp 1
/src/libzmq/src/ipc_address.cpp 6
/src/libzmq/src/session_base.cpp 4
/src/libzmq/src/io_object.cpp 3
/src/libzmq/src/ypipe_conflate.hpp 1
/src/libzmq/src/dbuffer.hpp 1
/src/libzmq/src/blob.hpp 2
/src/libzmq/src/tcp_address.cpp 10
/src/libzmq/src/ws_address.cpp 4
/src/libzmq/src/tipc_address.cpp 9
/usr/include/linux/tipc.h 4
/src/libzmq/src/tcp_listener.cpp 3
/src/libzmq/src/stream_listener_base.cpp 3
/src/libzmq/src/tcp.cpp 5
/src/libzmq/src/endpoint.cpp 2
/src/libzmq/src/ws_listener.cpp 3
/src/libzmq/src/ipc_listener.cpp 2
/src/libzmq/src/tipc_listener.cpp 2
/src/libzmq/src/mailbox.hpp 1
/src/libsodium/src/libsodium/sodium/core.c 4
/src/libsodium/src/libsodium/sodium/runtime.c 11
/src/libsodium/src/libsodium/randombytes/randombytes.c 4
/src/libsodium/src/libsodium/sodium/utils.c 1
/src/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.c 2
/src/libsodium/src/libsodium/crypto_generichash/blake2b/ref/generichash_blake2b.c 1
/src/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-ref.c 1
/src/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c 1
/src/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.c 1
/src/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20.c 1
/src/libsodium/src/libsodium/crypto_stream/salsa20/stream_salsa20.c 1
/src/libsodium/src/libsodium/crypto_aead/aegis128l/aead_aegis128l.c 1
/src/libsodium/src/libsodium/crypto_aead/aegis256/aead_aegis256.c 1
/src/libzmq/tests/testutil.cpp 3
/src/libzmq/tests/testutil_security.cpp 3
/src/libzmq/src/zmq_utils.cpp 1

Fuzzer: test_connect_null_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 1866 100.%
gold [1:9] 0 0.0%
yellow [10:29] 0 0.0%
greenyellow [30:49] 0 0.0%
lawngreen 50+ 0 0.0%
All colors 1866 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
1865 0 EP call site: 00000 zmq_ctx_term

Runtime coverage analysis

Covered functions
1
Functions that are reachable but not covered
1056
Reachable functions
1058
Percentage of reachable functions covered
0.19%
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/libzmq/tests/test_connect_null_fuzzer.cpp 1
/src/libzmq/tests/testutil_unity.cpp 11
/src/libzmq/external/unity/unity.c 10
/src/libzmq/src/zmq.cpp 18
/src/libzmq/src/ctx.cpp 21
/src/libzmq/src/mutex.hpp 8
/src/libzmq/src/err.cpp 3
/src/libzmq/src/reaper.cpp 4
/src/libzmq/src/object.cpp 24
/src/libzmq/src/i_poll_events.hpp 2
/src/libzmq/src/mailbox.cpp 5
/src/libzmq/src/i_mailbox.hpp 2
/src/libzmq/src/ypipe.hpp 5
/src/libzmq/src/ypipe_base.hpp 4
/src/libzmq/src/yqueue.hpp 12
/src/libzmq/src/atomic_ptr.hpp 13
/src/libzmq/src/signaler.cpp 9
/src/libzmq/src/ip.cpp 13
/src/libzmq/src/epoll.cpp 4
/src/libzmq/src/poller_base.cpp 7
/src/libzmq/src/poller_base.hpp 2
/src/libzmq/src/clock.cpp 4
/src/libzmq/src/atomic_counter.hpp 4
/src/libzmq/src/thread.hpp 2
/src/libzmq/src/thread.cpp 7
/src/libzmq/src/io_thread.cpp 6
/src/libzmq/src/socket_base.cpp 28
/src/libzmq/src/pair.cpp 1
/src/libzmq/src/own.cpp 8
/src/libzmq/src/options.cpp 13
/src/libzmq/src/options.hpp 3
/src/libzmq/src/array.hpp 27
/src/libzmq/src/pipe.hpp 2
/src/libzmq/src/socket_base.hpp 2
/src/libzmq/src/mailbox_safe.cpp 2
/src/libzmq/src/condition_variable.hpp 2
/src/libzmq/src/pub.cpp 1
/src/libzmq/src/xpub.cpp 1
/src/libzmq/src/generic_mtrie_impl.hpp 2
/src/libzmq/src/dist.cpp 2
/src/libzmq/src/msg.cpp 16
/src/libzmq/src/endpoint.hpp 6
/src/libzmq/src/metadata.cpp 1
/src/libzmq/src/metadata.hpp 1
/src/libzmq/src/sub.cpp 1
/src/libzmq/src/xsub.cpp 1
/src/libzmq/src/fq.cpp 2
/src/libzmq/src/radix_tree.cpp 13
/src/libzmq/src/req.cpp 2
/src/libzmq/src/dealer.cpp 2
/src/libzmq/src/lb.cpp 2
/src/libzmq/src/random.cpp 4
/src/libzmq/src/rep.cpp 1
/src/libzmq/src/router.cpp 1
/src/libzmq/src/pull.cpp 1
/src/libzmq/src/push.cpp 1
/src/libzmq/src/stream.cpp 1
/src/libzmq/src/server.cpp 1
/src/libzmq/src/client.cpp 1
/src/libzmq/src/radio.cpp 2
/src/libzmq/src/dish.cpp 2
/src/libzmq/src/gather.cpp 1
/src/libzmq/src/scatter.cpp 1
/src/libzmq/src/dgram.cpp 1
/src/libzmq/src/peer.cpp 1
/src/libzmq/src/channel.cpp 1
/src/libzmq/src/pipe.cpp 20
/src/libzmq/src/ctx.hpp 4
/src/libzmq/src/address.cpp 4
/src/libzmq/src/udp_address.cpp 2
/src/libzmq/src/ip_resolver.cpp 24
/src/libzmq/src/ip_resolver.hpp 1
/src/libzmq/src/ws_address.hpp 1
/src/libzmq/src/ipc_address.cpp 6
/src/libzmq/src/session_base.cpp 4
/src/libzmq/src/io_object.cpp 3
/src/libzmq/src/ypipe_conflate.hpp 1
/src/libzmq/src/dbuffer.hpp 1
/src/libzmq/src/blob.hpp 2
/src/libzmq/src/tcp_address.cpp 10
/src/libzmq/src/ws_address.cpp 4
/src/libzmq/src/tipc_address.cpp 9
/usr/include/linux/tipc.h 4
/src/libzmq/src/tcp_listener.cpp 3
/src/libzmq/src/stream_listener_base.cpp 3
/src/libzmq/src/tcp.cpp 5
/src/libzmq/src/endpoint.cpp 2
/src/libzmq/src/ws_listener.cpp 3
/src/libzmq/src/ipc_listener.cpp 2
/src/libzmq/src/tipc_listener.cpp 2
/src/libzmq/src/mailbox.hpp 1
/src/libsodium/src/libsodium/sodium/core.c 4
/src/libsodium/src/libsodium/sodium/runtime.c 11
/src/libsodium/src/libsodium/randombytes/randombytes.c 4
/src/libsodium/src/libsodium/sodium/utils.c 1
/src/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.c 2
/src/libsodium/src/libsodium/crypto_generichash/blake2b/ref/generichash_blake2b.c 1
/src/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-ref.c 1
/src/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c 1
/src/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.c 1
/src/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20.c 1
/src/libsodium/src/libsodium/crypto_stream/salsa20/stream_salsa20.c 1
/src/libsodium/src/libsodium/crypto_aead/aegis128l/aead_aegis128l.c 1
/src/libsodium/src/libsodium/crypto_aead/aegis256/aead_aegis256.c 1
/src/libzmq/tests/testutil.cpp 3
/src/libzmq/src/zmq_utils.cpp 1

Fuzzer: test_bind_curve_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 2356 100.%
gold [1:9] 0 0.0%
yellow [10:29] 0 0.0%
greenyellow [30:49] 0 0.0%
lawngreen 50+ 0 0.0%
All colors 2356 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
2355 0 EP call site: 00000 zmq_ctx_term

Runtime coverage analysis

Covered functions
1
Functions that are reachable but not covered
1228
Reachable functions
1230
Percentage of reachable functions covered
0.16%
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/libzmq/tests/test_bind_curve_fuzzer.cpp 1
/src/libzmq/tests/testutil_unity.cpp 16
/src/libzmq/external/unity/unity.c 17
/src/libzmq/src/zmq.cpp 37
/src/libzmq/src/ctx.cpp 22
/src/libzmq/src/mutex.hpp 8
/src/libzmq/src/err.cpp 3
/src/libzmq/src/reaper.cpp 4
/src/libzmq/src/object.cpp 25
/src/libzmq/src/i_poll_events.hpp 2
/src/libzmq/src/mailbox.cpp 5
/src/libzmq/src/i_mailbox.hpp 2
/src/libzmq/src/ypipe.hpp 5
/src/libzmq/src/ypipe_base.hpp 4
/src/libzmq/src/yqueue.hpp 12
/src/libzmq/src/atomic_ptr.hpp 13
/src/libzmq/src/signaler.cpp 10
/src/libzmq/src/ip.cpp 13
/src/libzmq/src/epoll.cpp 4
/src/libzmq/src/poller_base.cpp 7
/src/libzmq/src/poller_base.hpp 2
/src/libzmq/src/clock.cpp 4
/src/libzmq/src/atomic_counter.hpp 4
/src/libzmq/src/thread.hpp 2
/src/libzmq/src/thread.cpp 8
/src/libzmq/src/io_thread.cpp 6
/src/libzmq/src/socket_base.cpp 38
/src/libzmq/src/pair.cpp 1
/src/libzmq/src/own.cpp 9
/src/libzmq/src/options.cpp 17
/src/libzmq/src/options.hpp 4
/src/libzmq/src/array.hpp 27
/src/libzmq/src/pipe.hpp 2
/src/libzmq/src/socket_base.hpp 2
/src/libzmq/src/mailbox_safe.cpp 4
/src/libzmq/src/condition_variable.hpp 2
/src/libzmq/src/pub.cpp 1
/src/libzmq/src/xpub.cpp 1
/src/libzmq/src/generic_mtrie_impl.hpp 2
/src/libzmq/src/dist.cpp 2
/src/libzmq/src/msg.cpp 16
/src/libzmq/src/endpoint.hpp 6
/src/libzmq/src/metadata.cpp 1
/src/libzmq/src/metadata.hpp 1
/src/libzmq/src/sub.cpp 1
/src/libzmq/src/xsub.cpp 1
/src/libzmq/src/fq.cpp 2
/src/libzmq/src/radix_tree.cpp 13
/src/libzmq/src/req.cpp 2
/src/libzmq/src/dealer.cpp 2
/src/libzmq/src/lb.cpp 2
/src/libzmq/src/random.cpp 4
/src/libzmq/src/rep.cpp 1
/src/libzmq/src/router.cpp 1
/src/libzmq/src/pull.cpp 1
/src/libzmq/src/push.cpp 1
/src/libzmq/src/stream.cpp 1
/src/libzmq/src/server.cpp 1
/src/libzmq/src/client.cpp 1
/src/libzmq/src/radio.cpp 2
/src/libzmq/src/dish.cpp 2
/src/libzmq/src/gather.cpp 1
/src/libzmq/src/scatter.cpp 1
/src/libzmq/src/dgram.cpp 1
/src/libzmq/src/peer.cpp 1
/src/libzmq/src/channel.cpp 1
/src/libzmq/src/pipe.cpp 21
/src/libzmq/src/ctx.hpp 4
/src/libzmq/src/address.cpp 4
/src/libzmq/src/udp_address.cpp 2
/src/libzmq/src/ip_resolver.cpp 24
/src/libzmq/src/ip_resolver.hpp 1
/src/libzmq/src/ws_address.hpp 1
/src/libzmq/src/ipc_address.cpp 6
/src/libzmq/src/session_base.cpp 4
/src/libzmq/src/io_object.cpp 3
/src/libzmq/src/ypipe_conflate.hpp 1
/src/libzmq/src/dbuffer.hpp 1
/src/libzmq/src/blob.hpp 2
/src/libzmq/src/tcp_address.cpp 10
/src/libzmq/src/ws_address.cpp 4
/src/libzmq/src/tipc_address.cpp 9
/usr/include/linux/tipc.h 4
/src/libzmq/src/tcp_listener.cpp 3
/src/libzmq/src/stream_listener_base.cpp 3
/src/libzmq/src/tcp.cpp 5
/src/libzmq/src/endpoint.cpp 2
/src/libzmq/src/ws_listener.cpp 3
/src/libzmq/src/ipc_listener.cpp 2
/src/libzmq/src/tipc_listener.cpp 2
/src/libzmq/src/mailbox.hpp 1
/src/libsodium/src/libsodium/sodium/core.c 4
/src/libsodium/src/libsodium/sodium/runtime.c 11
/src/libsodium/src/libsodium/randombytes/randombytes.c 4
/src/libsodium/src/libsodium/sodium/utils.c 1
/src/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.c 2
/src/libsodium/src/libsodium/crypto_generichash/blake2b/ref/generichash_blake2b.c 1
/src/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-ref.c 1
/src/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c 1
/src/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.c 1
/src/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20.c 1
/src/libsodium/src/libsodium/crypto_stream/salsa20/stream_salsa20.c 1
/src/libsodium/src/libsodium/crypto_aead/aegis128l/aead_aegis128l.c 1
/src/libsodium/src/libsodium/crypto_aead/aegis256/aead_aegis256.c 1
/src/libzmq/tests/testutil_security.cpp 8
/src/libzmq/src/zmq_utils.cpp 7
/src/libzmq/tests/testutil.cpp 9
/src/libzmq/src/socket_poller.cpp 16
/src/libzmq/src/socket_poller.hpp 2
/src/libzmq/src/polling_util.hpp 3
/src/libzmq/src/polling_util.cpp 1

Fuzzer: test_bind_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 849 50.3%
gold [1:9] 74 4.39%
yellow [10:29] 16 0.94%
greenyellow [30:49] 2 0.11%
lawngreen 50+ 744 44.1%
All colors 1685 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
478 478 1 :

['close_zero_linger(void*)']

478 478 internal_manage_test_sockets(void*,bool) call site: 00000 /src/libzmq/tests/testutil_unity.cpp:142
296 735 14 :

['std::__1::basic_string , std::__1::allocator >::basic_string[abi:ne180100]()', 'zmq::address_t::address_t(std::__1::basic_string , std::__1::allocator > const&, std::__1::basic_string , std::__1::allocator > const&, zmq::ctx_t*)', 'zmq::session_base_t::create(zmq::io_thread_t*, bool, zmq::socket_base_t*, zmq::options_t const&, zmq::address_t*)', 'operator delete(void*)', 'zmq::object_t::get_ctx() const', 'zmq::endpoint_uri_pair_t::endpoint_uri_pair_t(std::__1::basic_string , std::__1::allocator > const&, std::__1::basic_string , std::__1::allocator > const&, zmq::endpoint_type_t)', 'zmq::pipepair(zmq::object_t**, zmq::pipe_t**, int const*, bool const*)', 'zmq::address_t::to_string(std::__1::basic_string , std::__1::allocator >&) const', 'zmq::address_t::~address_t()', 'zmq::socket_base_t::attach_pipe(zmq::pipe_t*, bool, bool)', 'zmq::udp_address_t::resolve(char const*, bool, bool)', 'zmq::session_base_t::attach_pipe(zmq::pipe_t*)', 'strerror', 'zmq::udp_address_t::udp_address_t()']

340 909 zmq::socket_base_t::bind(charconst*) call site: 00000 /src/libzmq/src/socket_base.cpp:564
45 45 2 :

['randombytes_sysrandom_random_dev_open', 'sodium_misuse']

47 47 randombytes_sysrandom_init call site: 00000 /src/libsodium/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c:270
35 35 1 :

['zmq::set_tcp_send_buffer(int, int)']

72 72 zmq::tcp_open_socket(charconst*,zmq::options_tconst&,bool,bool,zmq::tcp_address_t*) call site: 00000 /src/libzmq/src/tcp.cpp:384
35 35 1 :

['zmq::set_tcp_receive_buffer(int, int)']

37 37 zmq::tcp_open_socket(charconst*,zmq::options_tconst&,bool,bool,zmq::tcp_address_t*) call site: 00000 /src/libzmq/src/tcp.cpp:386
33 73 7 :

['zmq::msg_t::init_size(unsigned long)', 'fflush', 'zmq::msg_t::init()', 'zmq::zmq_abort(char const*)', 'strerror', 'zmq::msg_t::data()', 'zmq::msg_t::close()']

35 75 zmq::xpub_t::xsetsockopt(int,voidconst*,unsignedlong) call site: 00000 /src/libzmq/src/xpub.cpp:212
29 288 13 :

['zmq::tipc_address_t::to_string(std::__1::basic_string , std::__1::allocator >&) const', 'zmq::tipc_address_t::addrlen() const', 'listen', 'zmq::make_unconnected_bind_endpoint_pair(std::__1::basic_string , std::__1::allocator > const&)', 'zmq::tipc_address_t::tipc_address_t(sockaddr const*, unsigned int)', 'zmq::tipc_address_t::addr() const', 'zmq::socket_base_t::event_listening(zmq::endpoint_uri_pair_t const&, int)', 'zmq::endpoint_uri_pair_t::~endpoint_uri_pair_t()', 'zmq::tipc_address_t::is_service() const', 'bind', 'zmq::tipc_address_t::is_random() const', 'zmq::get_socket_address(int, zmq::socket_end_t, sockaddr_storage*)', '__errno_location']

29 288 zmq::tipc_listener_t::set_local_address(charconst*) call site: 00000 /src/libzmq/src/tipc_listener.cpp:78
29 29 6 :

['zmq::clock_t::now_ms()', 'std::__1::multimap , std::__1::allocator > >::begin[abi:ne180100]()', 'std::__1::__map_iterator , std::__1::__tree_node , void*>*, long> >::operator->[abi:ne180100]() const', 'std::__1::__map_iterator , std::__1::__tree_node , void*>*, long> >::__map_iterator[abi:ne180100]()', 'std::__1::multimap , std::__1::allocator > >::empty[abi:ne180100]() const', 'std::__1::multimap , std::__1::allocator > >::erase[abi:ne180100](std::__1::__map_iterator , std::__1::__tree_node , void*>*, long> >)']

29 29 zmq::poller_base_t::execute_timers() call site: 00000 /src/libzmq/src/poller_base.cpp:57
27 29 2 :

['zmq::mailbox_t::forked()', 'zmq::socket_base_t::get_mailbox() const']

57 451 zmq::ctx_t::terminate() call site: 00000 /src/libzmq/src/ctx.cpp:150
24 24 1 :

['zmq::signaler_t::recv()']

24 258 zmq::socket_base_t::in_event() call site: 00000 /src/libzmq/src/socket_base.cpp:1670
22 22 1 :

['zmq::set_ip_type_of_service(int, int)']

129 165 zmq::tcp_open_socket(charconst*,zmq::options_tconst&,bool,bool,zmq::tcp_address_t*) call site: 00000 /src/libzmq/src/tcp.cpp:367
20 20 1 :

['std::__1::basic_string , std::__1::allocator > make_address_string<8ul, 3ul>(char const*, unsigned short, char const (&) [8ul], char const (&) [3ul])']

20 20 zmq::tcp_address_t::to_string(std::__1::basic_string ,std::__1::allocator >&)const call site: 00000 /src/libzmq/src/tcp_address.cpp:132

Runtime coverage analysis

Covered functions
363
Functions that are reachable but not covered
413
Reachable functions
1013
Percentage of reachable functions covered
59.23%
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/libzmq/tests/test_bind_fuzzer.cpp 1
/src/libzmq/external/unity/unity.c 10
/src/libzmq/tests/testutil_unity.cpp 9
/src/libzmq/src/zmq.cpp 14
/src/libzmq/src/err.cpp 3
/src/libzmq/src/ctx.cpp 19
/src/libzmq/src/mutex.hpp 8
/src/libzmq/src/reaper.cpp 4
/src/libzmq/src/object.cpp 22
/src/libzmq/src/i_poll_events.hpp 2
/src/libzmq/src/mailbox.cpp 5
/src/libzmq/src/i_mailbox.hpp 2
/src/libzmq/src/ypipe.hpp 5
/src/libzmq/src/ypipe_base.hpp 4
/src/libzmq/src/yqueue.hpp 12
/src/libzmq/src/atomic_ptr.hpp 13
/src/libzmq/src/signaler.cpp 9
/src/libzmq/src/ip.cpp 13
/src/libzmq/src/epoll.cpp 4
/src/libzmq/src/poller_base.cpp 7
/src/libzmq/src/poller_base.hpp 2
/src/libzmq/src/clock.cpp 4
/src/libzmq/src/atomic_counter.hpp 4
/src/libzmq/src/thread.hpp 2
/src/libzmq/src/thread.cpp 7
/src/libzmq/src/io_thread.cpp 6
/src/libzmq/src/socket_base.cpp 23
/src/libzmq/src/pair.cpp 1
/src/libzmq/src/own.cpp 8
/src/libzmq/src/options.cpp 13
/src/libzmq/src/options.hpp 3
/src/libzmq/src/array.hpp 27
/src/libzmq/src/pipe.hpp 2
/src/libzmq/src/socket_base.hpp 2
/src/libzmq/src/mailbox_safe.cpp 2
/src/libzmq/src/condition_variable.hpp 2
/src/libzmq/src/pub.cpp 1
/src/libzmq/src/xpub.cpp 1
/src/libzmq/src/generic_mtrie_impl.hpp 2
/src/libzmq/src/dist.cpp 2
/src/libzmq/src/msg.cpp 16
/src/libzmq/src/endpoint.hpp 6
/src/libzmq/src/metadata.cpp 1
/src/libzmq/src/metadata.hpp 1
/src/libzmq/src/sub.cpp 1
/src/libzmq/src/xsub.cpp 1
/src/libzmq/src/fq.cpp 2
/src/libzmq/src/radix_tree.cpp 13
/src/libzmq/src/req.cpp 2
/src/libzmq/src/dealer.cpp 2
/src/libzmq/src/lb.cpp 2
/src/libzmq/src/random.cpp 4
/src/libzmq/src/rep.cpp 1
/src/libzmq/src/router.cpp 1
/src/libzmq/src/pull.cpp 1
/src/libzmq/src/push.cpp 1
/src/libzmq/src/stream.cpp 1
/src/libzmq/src/server.cpp 1
/src/libzmq/src/client.cpp 1
/src/libzmq/src/radio.cpp 2
/src/libzmq/src/dish.cpp 2
/src/libzmq/src/gather.cpp 1
/src/libzmq/src/scatter.cpp 1
/src/libzmq/src/dgram.cpp 1
/src/libzmq/src/peer.cpp 1
/src/libzmq/src/channel.cpp 1
/src/libzmq/src/pipe.cpp 20
/src/libzmq/src/ctx.hpp 2
/src/libzmq/src/address.cpp 4
/src/libzmq/src/udp_address.cpp 2
/src/libzmq/src/ip_resolver.cpp 24
/src/libzmq/src/ip_resolver.hpp 1
/src/libzmq/src/ws_address.hpp 1
/src/libzmq/src/ipc_address.cpp 6
/src/libzmq/src/session_base.cpp 4
/src/libzmq/src/io_object.cpp 3
/src/libzmq/src/ypipe_conflate.hpp 1
/src/libzmq/src/dbuffer.hpp 1
/src/libzmq/src/blob.hpp 2
/src/libzmq/src/tcp_address.cpp 10
/src/libzmq/src/ws_address.cpp 4
/src/libzmq/src/tipc_address.cpp 9
/usr/include/linux/tipc.h 4
/src/libzmq/src/tcp_listener.cpp 3
/src/libzmq/src/stream_listener_base.cpp 3
/src/libzmq/src/tcp.cpp 5
/src/libzmq/src/endpoint.cpp 1
/src/libzmq/src/ws_listener.cpp 3
/src/libzmq/src/ipc_listener.cpp 2
/src/libzmq/src/tipc_listener.cpp 2
/src/libzmq/src/mailbox.hpp 1
/src/libsodium/src/libsodium/sodium/core.c 4
/src/libsodium/src/libsodium/sodium/runtime.c 11
/src/libsodium/src/libsodium/randombytes/randombytes.c 4
/src/libsodium/src/libsodium/sodium/utils.c 1
/src/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.c 2
/src/libsodium/src/libsodium/crypto_generichash/blake2b/ref/generichash_blake2b.c 1
/src/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-ref.c 1
/src/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c 1
/src/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.c 1
/src/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20.c 1
/src/libsodium/src/libsodium/crypto_stream/salsa20/stream_salsa20.c 1
/src/libsodium/src/libsodium/crypto_aead/aegis128l/aead_aegis128l.c 1
/src/libsodium/src/libsodium/crypto_aead/aegis256/aead_aegis256.c 1
/src/libzmq/tests/testutil.cpp 1
/src/libzmq/src/zmq_utils.cpp 1

Fuzzer: test_socket_options_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 1066 64.2%
gold [1:9] 40 2.40%
yellow [10:29] 2 0.12%
greenyellow [30:49] 2 0.12%
lawngreen 50+ 550 33.1%
All colors 1660 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
45 45 2 :

['randombytes_sysrandom_random_dev_open', 'sodium_misuse']

47 47 randombytes_sysrandom_init call site: 00000 /src/libsodium/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c:270
29 29 6 :

['zmq::clock_t::now_ms()', 'std::__1::multimap , std::__1::allocator > >::begin[abi:ne180100]()', 'std::__1::__map_iterator , std::__1::__tree_node , void*>*, long> >::operator->[abi:ne180100]() const', 'std::__1::__map_iterator , std::__1::__tree_node , void*>*, long> >::__map_iterator[abi:ne180100]()', 'std::__1::multimap , std::__1::allocator > >::empty[abi:ne180100]() const', 'std::__1::multimap , std::__1::allocator > >::erase[abi:ne180100](std::__1::__map_iterator , std::__1::__tree_node , void*>*, long> >)']

29 29 zmq::poller_base_t::execute_timers() call site: 00000 /src/libzmq/src/poller_base.cpp:57
27 29 2 :

['zmq::mailbox_t::forked()', 'zmq::socket_base_t::get_mailbox() const']

57 451 zmq::ctx_t::terminate() call site: 00000 /src/libzmq/src/ctx.cpp:150
18 18 1 :

['sodium_misuse']

18 18 randombytes_sysrandom_buf call site: 00000 /src/libsodium/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c:350
18 18 1 :

['sodium_misuse']

18 18 _sodium_alloc_init call site: 00131 /src/libsodium/src/libsodium/sodium/utils.c:421
16 54 14 :

['bool std::__1::operator!=[abi:ne180100] (std::__1::__wrap_iter const&, std::__1::__wrap_iter const&)', 'epoll_wait', 'zmq::poller_base_t::execute_timers()', 'std::__1::vector >::clear[abi:ne180100]()', 'std::__1::__wrap_iter ::operator*[abi:ne180100]() const', 'operator delete(void*)', 'fflush', 'std::__1::__wrap_iter ::operator++[abi:ne180100]()', 'strerror', 'std::__1::vector >::end[abi:ne180100]()', 'zmq::zmq_abort(char const*)', 'zmq::poller_base_t::get_load() const', '__errno_location', 'std::__1::vector >::begin[abi:ne180100]()']

16 54 zmq::epoll_t::loop() call site: 00000 /src/libzmq/src/epoll.cpp:149
16 16 4 :

['zmq::zmq_abort(char const*)', '__errno_location', 'strerror', 'fflush']

16 16 zmq::make_fdpair(int*,int*) call site: 00000 /src/libzmq/src/ip.cpp:543
14 14 1 :

['safe_read']

32 32 randombytes_sysrandom_buf call site: 00000 /src/libsodium/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c:349
14 14 5 :

['zmq::zmq_abort(char const*)', 'gettimeofday', 'fflush', '__errno_location', 'strerror']

14 14 zmq::clock_t::now_us() call site: 00000 /src/libzmq/src/clock.cpp:154
10 10 3 :

['zmq::zmq_abort(char const*)', '__clang_call_terminate', 'fflush']

10 29 zmq::generic_mtrie_t ::~generic_mtrie_t() call site: 00000 /src/libzmq/src/generic_mtrie_impl.hpp:29
10 10 1 :

['zmq_z85_encode']

10 10 do_getsockopt_curve_key(void*,unsignedlongconst*,unsignedcharconst(&)[32]) call site: 00000 /src/libzmq/src/options.cpp:68
8 15 4 :

['zmq::atomic_ptr_t ::chunk_t>::xchg(zmq::yqueue_t ::chunk_t*)', 'zmq::yqueue_t ::allocate_chunk()', 'zmq::zmq_abort(char const*)', 'fflush']

8 15 zmq::yqueue_t ::push() call site: 00000 /src/libzmq/src/yqueue.hpp:83

Runtime coverage analysis

Covered functions
273
Functions that are reachable but not covered
541
Reachable functions
1001
Percentage of reachable functions covered
45.95%
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/libzmq/tests/test_socket_options_fuzzer.cpp 1
/src/libzmq/src/zmq.cpp 13
/src/libzmq/src/ip.cpp 13
/src/libzmq/src/ctx.cpp 19
/src/libzmq/src/mutex.hpp 8
/src/libzmq/src/err.cpp 2
/src/libzmq/src/array.hpp 27
/src/libzmq/src/mailbox.cpp 5
/src/libzmq/src/i_mailbox.hpp 2
/src/libzmq/src/ypipe.hpp 5
/src/libzmq/src/ypipe_base.hpp 4
/src/libzmq/src/yqueue.hpp 12
/src/libzmq/src/atomic_ptr.hpp 13
/src/libzmq/src/signaler.cpp 9
/src/libzmq/src/epoll.cpp 4
/src/libzmq/src/random.cpp 4
/src/libsodium/src/libsodium/sodium/core.c 4
/src/libsodium/src/libsodium/sodium/runtime.c 11
/src/libsodium/src/libsodium/randombytes/randombytes.c 4
/src/libsodium/src/libsodium/sodium/utils.c 1
/src/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.c 2
/src/libsodium/src/libsodium/crypto_generichash/blake2b/ref/generichash_blake2b.c 1
/src/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-ref.c 1
/src/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c 1
/src/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.c 1
/src/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20.c 1
/src/libsodium/src/libsodium/crypto_stream/salsa20/stream_salsa20.c 1
/src/libsodium/src/libsodium/crypto_aead/aegis128l/aead_aegis128l.c 1
/src/libsodium/src/libsodium/crypto_aead/aegis256/aead_aegis256.c 1
/src/libzmq/src/ctx.hpp 2
/src/libzmq/src/io_thread.cpp 6
/src/libzmq/src/object.cpp 22
/src/libzmq/external/unity/unity.c 6
/src/libzmq/src/reaper.cpp 4
/src/libzmq/src/i_poll_events.hpp 2
/src/libzmq/src/poller_base.cpp 7
/src/libzmq/src/poller_base.hpp 2
/src/libzmq/src/clock.cpp 4
/src/libzmq/src/atomic_counter.hpp 4
/src/libzmq/src/thread.hpp 2
/src/libzmq/src/thread.cpp 7
/src/libzmq/src/socket_base.cpp 26
/src/libzmq/src/pair.cpp 1
/src/libzmq/src/own.cpp 8
/src/libzmq/src/options.cpp 17
/src/libzmq/src/options.hpp 4
/src/libzmq/src/pipe.hpp 2
/src/libzmq/src/socket_base.hpp 2
/src/libzmq/src/mailbox_safe.cpp 2
/src/libzmq/src/condition_variable.hpp 2
/src/libzmq/src/pub.cpp 1
/src/libzmq/src/xpub.cpp 1
/src/libzmq/src/generic_mtrie_impl.hpp 2
/src/libzmq/src/dist.cpp 2
/src/libzmq/src/msg.cpp 16
/src/libzmq/src/endpoint.hpp 6
/src/libzmq/src/metadata.cpp 1
/src/libzmq/src/metadata.hpp 1
/src/libzmq/src/sub.cpp 1
/src/libzmq/src/xsub.cpp 1
/src/libzmq/src/fq.cpp 2
/src/libzmq/src/radix_tree.cpp 13
/src/libzmq/src/req.cpp 2
/src/libzmq/src/dealer.cpp 2
/src/libzmq/src/lb.cpp 2
/src/libzmq/src/rep.cpp 1
/src/libzmq/src/router.cpp 1
/src/libzmq/src/pull.cpp 1
/src/libzmq/src/push.cpp 1
/src/libzmq/src/stream.cpp 1
/src/libzmq/src/server.cpp 1
/src/libzmq/src/client.cpp 1
/src/libzmq/src/radio.cpp 2
/src/libzmq/src/dish.cpp 2
/src/libzmq/src/gather.cpp 1
/src/libzmq/src/scatter.cpp 1
/src/libzmq/src/dgram.cpp 1
/src/libzmq/src/peer.cpp 1
/src/libzmq/src/channel.cpp 1
/src/libzmq/src/tcp_address.cpp 10
/src/libzmq/src/ip_resolver.cpp 24
/src/libzmq/src/ip_resolver.hpp 1
/src/libzmq/src/zmq_utils.cpp 2
/src/libzmq/src/pipe.cpp 20
/src/libzmq/src/address.cpp 4
/src/libzmq/src/udp_address.cpp 2
/src/libzmq/src/ws_address.hpp 1
/src/libzmq/src/ipc_address.cpp 6
/src/libzmq/src/session_base.cpp 4
/src/libzmq/src/io_object.cpp 3
/src/libzmq/src/ypipe_conflate.hpp 1
/src/libzmq/src/dbuffer.hpp 1
/src/libzmq/src/blob.hpp 2
/src/libzmq/src/ws_address.cpp 4
/src/libzmq/src/tipc_address.cpp 9
/usr/include/linux/tipc.h 4
/src/libzmq/src/tcp_listener.cpp 3
/src/libzmq/src/stream_listener_base.cpp 3
/src/libzmq/src/tcp.cpp 5
/src/libzmq/src/endpoint.cpp 1
/src/libzmq/src/ws_listener.cpp 3
/src/libzmq/src/ipc_listener.cpp 2
/src/libzmq/src/tipc_listener.cpp 2
/src/libzmq/src/mailbox.hpp 1

Fuzzer: test_bind_stream_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 2016 100.%
gold [1:9] 0 0.0%
yellow [10:29] 0 0.0%
greenyellow [30:49] 0 0.0%
lawngreen 50+ 0 0.0%
All colors 2016 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
2015 0 EP call site: 00000 zmq_ctx_term

Runtime coverage analysis

Covered functions
1
Functions that are reachable but not covered
1101
Reachable functions
1103
Percentage of reachable functions covered
0.18%
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/libzmq/tests/test_bind_stream_fuzzer.cpp 1
/src/libzmq/tests/testutil_unity.cpp 14
/src/libzmq/external/unity/unity.c 14
/src/libzmq/src/zmq.cpp 26
/src/libzmq/src/ctx.cpp 21
/src/libzmq/src/mutex.hpp 8
/src/libzmq/src/err.cpp 3
/src/libzmq/src/reaper.cpp 4
/src/libzmq/src/object.cpp 24
/src/libzmq/src/i_poll_events.hpp 2
/src/libzmq/src/mailbox.cpp 5
/src/libzmq/src/i_mailbox.hpp 2
/src/libzmq/src/ypipe.hpp 5
/src/libzmq/src/ypipe_base.hpp 4
/src/libzmq/src/yqueue.hpp 12
/src/libzmq/src/atomic_ptr.hpp 13
/src/libzmq/src/signaler.cpp 9
/src/libzmq/src/ip.cpp 13
/src/libzmq/src/epoll.cpp 4
/src/libzmq/src/poller_base.cpp 7
/src/libzmq/src/poller_base.hpp 2
/src/libzmq/src/clock.cpp 4
/src/libzmq/src/atomic_counter.hpp 4
/src/libzmq/src/thread.hpp 2
/src/libzmq/src/thread.cpp 7
/src/libzmq/src/io_thread.cpp 6
/src/libzmq/src/socket_base.cpp 31
/src/libzmq/src/pair.cpp 1
/src/libzmq/src/own.cpp 8
/src/libzmq/src/options.cpp 17
/src/libzmq/src/options.hpp 4
/src/libzmq/src/array.hpp 27
/src/libzmq/src/pipe.hpp 2
/src/libzmq/src/socket_base.hpp 2
/src/libzmq/src/mailbox_safe.cpp 2
/src/libzmq/src/condition_variable.hpp 2
/src/libzmq/src/pub.cpp 1
/src/libzmq/src/xpub.cpp 1
/src/libzmq/src/generic_mtrie_impl.hpp 2
/src/libzmq/src/dist.cpp 2
/src/libzmq/src/msg.cpp 19
/src/libzmq/src/endpoint.hpp 6
/src/libzmq/src/metadata.cpp 2
/src/libzmq/src/metadata.hpp 1
/src/libzmq/src/sub.cpp 1
/src/libzmq/src/xsub.cpp 1
/src/libzmq/src/fq.cpp 2
/src/libzmq/src/radix_tree.cpp 13
/src/libzmq/src/req.cpp 2
/src/libzmq/src/dealer.cpp 2
/src/libzmq/src/lb.cpp 2
/src/libzmq/src/random.cpp 4
/src/libzmq/src/rep.cpp 1
/src/libzmq/src/router.cpp 1
/src/libzmq/src/pull.cpp 1
/src/libzmq/src/push.cpp 1
/src/libzmq/src/stream.cpp 1
/src/libzmq/src/server.cpp 1
/src/libzmq/src/client.cpp 1
/src/libzmq/src/radio.cpp 2
/src/libzmq/src/dish.cpp 2
/src/libzmq/src/gather.cpp 1
/src/libzmq/src/scatter.cpp 1
/src/libzmq/src/dgram.cpp 1
/src/libzmq/src/peer.cpp 1
/src/libzmq/src/channel.cpp 1
/src/libzmq/src/pipe.cpp 20
/src/libzmq/src/ctx.hpp 4
/src/libzmq/src/address.cpp 4
/src/libzmq/src/udp_address.cpp 2
/src/libzmq/src/ip_resolver.cpp 24
/src/libzmq/src/ip_resolver.hpp 1
/src/libzmq/src/ws_address.hpp 1
/src/libzmq/src/ipc_address.cpp 6
/src/libzmq/src/session_base.cpp 4
/src/libzmq/src/io_object.cpp 3
/src/libzmq/src/ypipe_conflate.hpp 1
/src/libzmq/src/dbuffer.hpp 1
/src/libzmq/src/blob.hpp 2
/src/libzmq/src/tcp_address.cpp 10
/src/libzmq/src/ws_address.cpp 4
/src/libzmq/src/tipc_address.cpp 9
/usr/include/linux/tipc.h 4
/src/libzmq/src/tcp_listener.cpp 3
/src/libzmq/src/stream_listener_base.cpp 3
/src/libzmq/src/tcp.cpp 5
/src/libzmq/src/endpoint.cpp 2
/src/libzmq/src/ws_listener.cpp 3
/src/libzmq/src/ipc_listener.cpp 2
/src/libzmq/src/tipc_listener.cpp 2
/src/libzmq/src/mailbox.hpp 1
/src/libsodium/src/libsodium/sodium/core.c 4
/src/libsodium/src/libsodium/sodium/runtime.c 11
/src/libsodium/src/libsodium/randombytes/randombytes.c 4
/src/libsodium/src/libsodium/sodium/utils.c 1
/src/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.c 2
/src/libsodium/src/libsodium/crypto_generichash/blake2b/ref/generichash_blake2b.c 1
/src/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-ref.c 1
/src/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c 1
/src/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.c 1
/src/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20.c 1
/src/libsodium/src/libsodium/crypto_stream/salsa20/stream_salsa20.c 1
/src/libsodium/src/libsodium/crypto_aead/aegis128l/aead_aegis128l.c 1
/src/libsodium/src/libsodium/crypto_aead/aegis256/aead_aegis256.c 1
/src/libzmq/tests/testutil.cpp 4
/src/libzmq/src/zmq_utils.cpp 2

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
zmq::xpub_t::xpipe_terminated(zmq::pipe_t*) /src/libzmq/src/xpub.cpp 2 ['N/A', 'N/A'] 4 0 58 9 4 42 0 481 459
zmq::ws_engine_t::handshake() /src/libzmq/src/ws_engine.cpp 1 ['N/A'] 10 0 197 36 7 225 0 645 363
zmq_proxy /src/libzmq/src/zmq.cpp 3 ['N/A', 'N/A', 'N/A'] 10 0 49 9 4 188 0 838 333
non-virtualthunktozmq::udp_engine_t::plug(zmq::io_thread_t*,zmq::session_base_t*) /src/libzmq/src/udp_engine.cpp 3 ['N/A', 'N/A', 'N/A'] 12 0 22 3 2 346 0 811 299
virtualthunktozmq::curve_server_t::process_handshake_command(zmq::msg_t*) /src/libzmq/src/curve_server.cpp 2 ['N/A', 'N/A'] 12 0 22 3 2 280 0 738 271
zmq::xpub_t::xread_activated(zmq::pipe_t*) /src/libzmq/src/xpub.cpp 2 ['N/A', 'N/A'] 6 0 436 81 16 92 0 361 241
non-virtualthunktozmq::socks_connecter_t::in_event() /src/libzmq/src/socks_connecter.cpp 1 ['N/A'] 12 0 16 3 2 230 0 502 209

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

Functions statically reachable by fuzzers
36.0%
860 / 2374
Cyclomatic complexity statically reachable by fuzzers
45.0%
5850 / 13130

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.

/src/libzmq/tests/test_z85_decode_fuzzer.cpp

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=['LLVMFuzzerTestOneInput']

/src/libzmq/tests/test_connect_fuzzer.cpp

Dictionary

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


/src/libzmq/tests/test_bind_null_fuzzer.cpp

Dictionary

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


/src/libzmq/tests/test_connect_stream_fuzzer.cpp

Dictionary

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


/src/libzmq/tests/test_connect_ws_fuzzer.cpp

Dictionary

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


/src/libzmq/tests/test_bind_ws_fuzzer.cpp

Dictionary

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


/src/libzmq/tests/test_connect_curve_fuzzer.cpp

Dictionary

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


/src/libzmq/tests/test_connect_null_fuzzer.cpp

Dictionary

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


/src/libzmq/tests/test_bind_curve_fuzzer.cpp

Dictionary

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


/src/libzmq/tests/test_bind_fuzzer.cpp

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=['zmq::ypipe_t::ypipe_t()', 'zmq::own_t::inc_seqnum()', 'zmq::options_t::setsockopt(int, void const*, unsigned long)', 'zmq::tcp_open_socket(char const*, zmq::options_t const&, bool, bool, zmq::tcp_address_t*)', 'zmq::msg_t::close()', 'zmq::xsub_t::xsub_t(zmq::ctx_t*, unsigned int, int)', 'LLVMFuzzerTestOneInput', 'zmq::io_object_t::io_object_t(zmq::io_thread_t*)', 'zmq::socket_base_t::~socket_base_t()', 'zmq::send_routing_id(zmq::pipe_t*, zmq::options_t const&)']

/src/libzmq/tests/test_socket_options_fuzzer.cpp

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=['zmq::ypipe_t::ypipe_t()', 'zmq::ctx_t::terminate()', 'zmq::socket_base_t::~socket_base_t()', 'zmq::msg_t::close()', 'LLVMFuzzerTestOneInput', 'zmq::socket_base_t::create(int, zmq::ctx_t*, unsigned int, int)', 'as_socket_base_t(void*)', 'zmq::ip_resolver_t::resolve(zmq::ip_addr_t*, char const*)', 'zmq::socket_base_t::~socket_base_t()', 'zmq::thread_t::applySchedulingParameters()']

/src/libzmq/tests/test_bind_stream_fuzzer.cpp

Dictionary

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


Runtime coverage analysis

This section shows analysis of runtime coverage data.

For futher technical details on how this section is generated, please see the Glossary .

Complex functions with low coverage

Func name Function total lines Lines covered at runtime percentage covered Reached by fuzzers
_sodium_runtime_intel_cpu_features 54 8 14.81% ['test_connect_null_fuzzer', 'test_bind_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_socket_options_fuzzer', 'test_connect_stream_fuzzer', 'test_bind_stream_fuzzer', 'test_connect_fuzzer']
zmq::ctx_t::get(int,void*,unsignedlongconst*) 66 25 37.87% ['test_connect_null_fuzzer', 'test_bind_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_socket_options_fuzzer', 'test_connect_stream_fuzzer', 'test_bind_stream_fuzzer', 'test_connect_fuzzer']
zmq::msg_t::close() 39 16 41.02% ['test_connect_null_fuzzer', 'test_bind_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_socket_options_fuzzer', 'test_connect_stream_fuzzer', 'test_bind_stream_fuzzer', 'test_connect_fuzzer']
zmq::object_t::process_command(zmq::command_tconst&) 80 27 33.75% ['test_connect_null_fuzzer', 'test_bind_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_socket_options_fuzzer', 'test_connect_stream_fuzzer', 'test_bind_stream_fuzzer', 'test_connect_fuzzer']
zmq::socket_base_t::create(int,zmq::ctx_t*,unsignedint,int) 78 14 17.94% ['test_connect_null_fuzzer', 'test_bind_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_socket_options_fuzzer', 'test_connect_stream_fuzzer', 'test_bind_stream_fuzzer', 'test_connect_fuzzer']
zmq::tcp_open_socket(charconst*,zmq::options_tconst&,bool,bool,zmq::tcp_address_t*) 41 19 46.34% ['test_connect_null_fuzzer', 'test_bind_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_socket_options_fuzzer', 'test_connect_stream_fuzzer', 'test_bind_stream_fuzzer', 'test_connect_fuzzer']
zmq::tipc_listener_t::set_local_address(charconst*) 40 13 32.5% ['test_connect_null_fuzzer', 'test_bind_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_socket_options_fuzzer', 'test_connect_stream_fuzzer', 'test_bind_stream_fuzzer', 'test_connect_fuzzer']
zmq::options_t::getsockopt(int,void*,unsignedlong*)const 316 170 53.79% ['test_bind_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_ws_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer']

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/libzmq/src/proxy.cpp [] []
/src/libzmq/src/xsub.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/compat.hpp [] []
/src/libsodium/src/libsodium/sodium/runtime.c ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.c ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/polling_util.cpp ['test_bind_curve_fuzzer'] []
/src/libzmq/src/pull.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/tests/test_bind_ws_fuzzer.cpp ['test_bind_ws_fuzzer'] []
/src/libzmq/src/err.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] []
/src/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-ref.c [] []
/src/libzmq/src/pipe.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/server.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/req.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libsodium/src/libsodium/crypto_aead/aegis256/aead_aegis256.c ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/socks.cpp [] []
/src/libzmq/src/i_poll_events.hpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-ref.c ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/ypipe_conflate.hpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/x25519_ref10.c [] []
/src/libsodium/src/libsodium/crypto_aead/aegis128l/aegis128l_aesni.c [] []
/src/libzmq/src/options.hpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/box_curve25519xsalsa20poly1305.c [] []
/src/libzmq/tests/test_socket_options_fuzzer.cpp ['test_socket_options_fuzzer'] ['test_socket_options_fuzzer']
/src/libzmq/src/socket_base.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libsodium/src/libsodium/crypto_pwhash/argon2/blamka-round-ssse3.h [] []
/src/libzmq/src/curve_client.cpp [] []
/src/libzmq/src/wire.hpp [] []
/src/libzmq/src/raw_encoder.cpp [] []
/src/libzmq/src/socket_base.hpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] []
/src/libzmq/src/dish.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/yqueue.hpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/epoll.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/raw_engine.cpp [] []
/src/libzmq/src/lb.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/options.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/poller_base.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/endpoint.hpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer']
/src/libsodium/src/libsodium/crypto_stream/salsa20/stream_salsa20.c ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libsodium/src/libsodium/crypto_box/crypto_box_easy.c [] []
/src/libzmq/src/tcp_listener.hpp [] []
/src/libzmq/src/v1_decoder.hpp [] []
/src/libzmq/src/ws_connecter.cpp [] []
/src/libzmq/src/array.hpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/v2_decoder.hpp [] []
/src/libzmq/src/tcp.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer']
/src/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna64.h [] []
/src/libzmq/src/generic_mtrie.hpp [] []
/src/libzmq/tests/test_connect_ws_fuzzer.cpp ['test_connect_ws_fuzzer'] []
/src/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.c ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/mailbox.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/xpub.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/ipc_connecter.cpp [] []
/src/libzmq/src/io_thread.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libsodium/src/libsodium/crypto_core/softaes/softaes.c [] []
/src/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ssse3.c [] []
/src/libzmq/src/ipc_address.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer']
/src/libzmq/src/object.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/mechanism_base.cpp [] []
/src/libsodium/src/libsodium/crypto_core/ed25519/ref10/fe_51/fe.h [] []
/src/libzmq/src/v3_1_encoder.cpp [] []
/src/libsodium/src/libsodium/crypto_pwhash/argon2/blake2b-long.c [] []
/src/libzmq/src/endpoint.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/tests/testutil_security.cpp ['test_connect_curve_fuzzer', 'test_bind_curve_fuzzer'] []
/src/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-avx2.c [] []
/src/libzmq/src/atomic_counter.hpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer']
/src/libsodium/src/libsodium/crypto_verify/verify.c [] []
/src/libzmq/src/mechanism.hpp [] []
/src/libzmq/src/ws_address.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/dealer.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/chacha20_dolbeau-avx2.c [] []
/src/libzmq/src/socks.hpp [] []
/src/libzmq/tests/test_bind_stream_fuzzer.cpp ['test_bind_stream_fuzzer'] []
/src/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305/secretbox_xsalsa20poly1305.c [] []
/src/libzmq/src/ws_encoder.cpp [] []
/src/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox_easy.c [] []
/src/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/ip_resolver.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/stream_connecter_base.cpp [] []
/src/libzmq/src/mechanism.cpp [] []
/src/libzmq/src/client.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/ctx.hpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer']
/src/libzmq/src/i_decoder.hpp [] []
/src/libzmq/src/curve_mechanism_base.hpp [] []
/src/libzmq/src/mechanism_base.hpp [] []
/src/libzmq/tests/test_bind_fuzzer.cpp ['test_bind_fuzzer'] ['test_bind_fuzzer']
/src/libzmq/src/socket_poller.hpp ['test_bind_curve_fuzzer'] []
/src/libsodium/src/libsodium/sodium/utils.c ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/tests/test_connect_null_fuzzer.cpp ['test_connect_null_fuzzer'] []
/src/libsodium/src/libsodium/./include/sodium/private/common.h [] []
/src/libsodium/src/libsodium/crypto_core/salsa/ref/core_salsa_ref.c [] []
/src/libsodium/src/libsodium/crypto_aead/aegis256/aegis256_common.h [] []
/src/libzmq/src/blob.hpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_socket_options_fuzzer']
/src/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna.c [] []
/src/libzmq/src/fq.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/udp_address.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libsodium/src/libsodium/crypto_core/ed25519/ref10/ed25519_ref10.c [] []
/src/libsodium/src/libsodium/sodium/core.c ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/tests/test_connect_stream_fuzzer.cpp ['test_connect_stream_fuzzer'] []
/src/libzmq/src/curve_mechanism_base.cpp [] []
/src/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-sse41.c [] []
/src/libzmq/src/gather.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/stream_engine_base.cpp [] []
/usr/local/bin/../include/c++/v1/stdexcept [] []
/src/libzmq/src/router.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/ip_resolver.hpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/clock.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20.c ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/v2_encoder.cpp [] []
/src/libsodium/src/libsodium/crypto_generichash/blake2b/ref/generichash_blake2b.c ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/dgram.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/ipc_connecter.hpp [] []
/src/libzmq/src/mutex.hpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/pipe.hpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/tests/test_bind_null_fuzzer.cpp ['test_bind_null_fuzzer'] []
/src/libzmq/src/ip.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/zmtp_engine.cpp [] []
/src/libzmq/src/encoder.hpp [] []
/usr/local/bin/../include/c++/v1/sstream [] []
/src/libzmq/src/metadata.hpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] []
/src/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-ssse3.c [] []
/src/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/salsa20_xmm6int-avx2.c [] []
/src/libzmq/src/msg.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/atomic_ptr.hpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/tipc_address.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer']
/src/libzmq/src/udp_engine.hpp [] []
/src/libzmq/src/i_engine.hpp [] []
/src/libsodium/src/libsodium/crypto_hash/sha512/cp/hash_sha512_cp.c [] []
/src/libzmq/src/raw_decoder.hpp [] []
/src/libzmq/src/stream_listener_base.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libsodium/src/libsodium/crypto_aead/aegis128l/aegis128l_common.h [] []
/src/libzmq/src/msg.hpp [] []
/usr/local/bin/../include/c++/v1/string [] []
/src/libzmq/src/tcp_connecter.cpp [] []
/src/libzmq/src/dist.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/raw_decoder.cpp [] []
/src/libzmq/src/zmq_utils.cpp ['test_z85_decode_fuzzer', 'test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_z85_decode_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/external/unity/unity.h [] []
/src/libzmq/src/io_object.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/plain_server.cpp [] []
/src/libzmq/src/curve_client_tools.hpp [] []
/src/libsodium/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c [] []
/src/libsodium/src/libsodium/crypto_pwhash/argon2/blamka-round-avx512f.h [] []
/src/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.h [] []
/src/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-ref.c [] []
/src/libzmq/src/decoder_allocators.hpp [] []
/src/libzmq/src/session_base.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c [] []
/src/libzmq/src/peer.hpp [] []
/src/libzmq/src/v1_decoder.cpp [] []
/src/libzmq/src/metadata.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer']
/src/libzmq/src/ws_address.hpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] []
/src/libzmq/src/address.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer']
/src/libzmq/src/curve_server.cpp [] []
/src/libzmq/src/timers.cpp [] []
/src/libzmq/src/udp_engine.cpp [] []
/src/libsodium/src/libsodium/crypto_scalarmult/crypto_scalarmult.c [] []
/usr/include/linux/tipc.h ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] []
/src/libzmq/external/sha1/sha1.c [] []
/src/libzmq/src/i_mailbox.hpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libsodium/src/libsodium/./include/sodium/private/softaes.h [] []
/src/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-avx2.c [] []
/src/libzmq/src/zmq.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/signaler.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/socket_poller.cpp ['test_bind_curve_fuzzer'] []
/src/libzmq/src/thread.hpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libsodium/src/libsodium/crypto_box/crypto_box.c [] []
/src/libzmq/src/mailbox.hpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] []
/src/libsodium/src/libsodium/randombytes/randombytes.c ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/thread.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox.c [] []
/src/libsodium/src/libsodium/crypto_aead/aegis256/aegis256_aesni.c [] []
/src/libzmq/src/ws_engine.cpp [] []
/src/libzmq/src/polling_util.hpp ['test_bind_curve_fuzzer'] []
/src/libzmq/src/own.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/ctx.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/tcp_address.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/decoder.hpp [] []
/src/libzmq/src/generic_mtrie_impl.hpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/tests/test_bind_curve_fuzzer.cpp ['test_bind_curve_fuzzer'] []
/src/libzmq/src/ipc_listener.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/external/unity/unity.c ['test_z85_decode_fuzzer', 'test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer']
/src/libzmq/src/radio.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/poller_base.hpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/address.hpp [] []
/src/libzmq/src/decoder_allocators.cpp [] []
/src/libzmq/src/push.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/tests/testutil.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_bind_stream_fuzzer'] []
/src/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/salsa20_xmm6int-sse2.c [] []
/src/libzmq/src/secure_allocator.hpp [] []
/src/libzmq/src/ipc_listener.hpp [] []
/src/libzmq/src/zap_client.cpp [] []
/src/libzmq/src/tipc_connecter.hpp [] []
/src/libzmq/src/tipc_listener.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/v1_encoder.cpp [] []
/src/libzmq/src/ws_decoder.hpp [] []
/src/libsodium/src/libsodium/crypto_stream/xsalsa20/stream_xsalsa20.c [] []
/src/libzmq/src/channel.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/zap_client.hpp [] []
/src/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-fill-block-avx512f.c [] []
/src/libzmq/src/condition_variable.hpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] []
/src/libzmq/src/random.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libsodium/src/libsodium/./include/sodium/private/ed25519_ref10_fe_51.h [] []
/src/libzmq/src/plain_client.cpp [] []
/src/libzmq/tests/testutil_monitoring.cpp [] []
/src/libzmq/src/tipc_connecter.cpp [] []
/src/libzmq/src/sub.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/tests/test_connect_fuzzer.cpp ['test_connect_fuzzer'] []
/src/libzmq/src/i_encoder.hpp [] []
/src/libzmq/tests/test_z85_decode_fuzzer.cpp ['test_z85_decode_fuzzer'] ['test_z85_decode_fuzzer']
/src/libzmq/src/mailbox_safe.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/radix_tree.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] []
/src/libzmq/src/scatter.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/null_mechanism.cpp [] []
/src/libzmq/src/peer.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/tipc_listener.hpp [] []
/src/libzmq/src/ypipe_base.hpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/pub.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/rep.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/ws_decoder.cpp [] []
/src/libzmq/src/v2_decoder.cpp [] []
/src/libzmq/src/stream.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/mailbox_safe.hpp [] []
/src/libzmq/tests/test_connect_curve_fuzzer.cpp ['test_connect_curve_fuzzer'] []
/src/libsodium/src/libsodium/crypto_core/hsalsa20/ref2/core_hsalsa20_ref2.c [] []
/src/libzmq/src/ypipe.hpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/dbuffer.hpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/reaper.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/pair.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/tests/testutil_unity.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer']
/src/libsodium/src/libsodium/crypto_aead/aegis128l/aead_aegis128l.c ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/stream_engine_base.hpp [] []
/src/libzmq/src/socks_connecter.cpp [] []
/src/libzmq/src/tcp_listener.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']
/src/libzmq/src/ws_listener.cpp ['test_connect_fuzzer', 'test_bind_null_fuzzer', 'test_connect_stream_fuzzer', 'test_connect_ws_fuzzer', 'test_bind_ws_fuzzer', 'test_connect_curve_fuzzer', 'test_connect_null_fuzzer', 'test_bind_curve_fuzzer', 'test_bind_fuzzer', 'test_socket_options_fuzzer', 'test_bind_stream_fuzzer'] ['test_bind_fuzzer', 'test_socket_options_fuzzer']

Directories in report

Directory
/src/libsodium/src/libsodium/crypto_onetimeauth/poly1305/
/src/libsodium/src/libsodium/crypto_hash/sha512/cp/
/src/libsodium/src/libsodium/crypto_secretbox/
/src/libsodium/src/libsodium/crypto_aead/aegis256/
/src/libsodium/src/libsodium/randombytes/
/src/libsodium/src/libsodium/./include/sodium/private/
/src/libzmq/src/
/src/libsodium/src/libsodium/crypto_pwhash/argon2/
/src/libsodium/src/libsodium/crypto_generichash/blake2b/ref/
/src/libsodium/src/libsodium/crypto_secretbox/xsalsa20poly1305/
/src/libzmq/external/sha1/
/src/libsodium/src/libsodium/randombytes/sysrandom/
/src/libsodium/src/libsodium/crypto_stream/chacha20/dolbeau/
/src/libsodium/src/libsodium/crypto_core/ed25519/ref10/
/src/libsodium/src/libsodium/crypto_scalarmult/
/src/libsodium/src/libsodium/crypto_scalarmult/curve25519/
/src/libsodium/src/libsodium/crypto_core/softaes/
/usr/include/linux/
/src/libsodium/src/libsodium/crypto_verify/
/src/libzmq/tests/
/src/libsodium/src/libsodium/crypto_core/hsalsa20/ref2/
/src/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/
/src/libsodium/src/libsodium/crypto_box/
/src/libzmq/external/unity/
/src/libsodium/src/libsodium/sodium/
/src/libsodium/src/libsodium/crypto_stream/chacha20/
/src/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/
/src/libsodium/src/libsodium/crypto_stream/xsalsa20/
/src/libsodium/src/libsodium/crypto_core/ed25519/ref10/fe_51/
/src/libsodium/src/libsodium/crypto_core/salsa/ref/
/src/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/
/src/libsodium/src/libsodium/crypto_aead/aegis128l/
/src/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/
/src/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/
/src/libsodium/src/libsodium/crypto_stream/salsa20/
/usr/local/bin/../include/c++/v1/

Metadata section

This sections shows the raw data that is used to produce this report. This is mainly used for further processing and developer debugging.

Fuzzer Calltree file Program data file Coverage file
test_z85_decode_fuzzer fuzzerLogFile-0-xI293z6EBG.data fuzzerLogFile-0-xI293z6EBG.data.yaml test_z85_decode_fuzzer.covreport
test_connect_fuzzer fuzzerLogFile-0-hKg0DxPw5X.data fuzzerLogFile-0-hKg0DxPw5X.data.yaml test_connect_fuzzer.covreport
test_bind_null_fuzzer fuzzerLogFile-0-oDrCngUbPo.data fuzzerLogFile-0-oDrCngUbPo.data.yaml test_bind_null_fuzzer.covreport
test_connect_stream_fuzzer fuzzerLogFile-0-IBulqTaTIA.data fuzzerLogFile-0-IBulqTaTIA.data.yaml test_connect_stream_fuzzer.covreport
test_connect_ws_fuzzer fuzzerLogFile-0-MH4mJD9u6t.data fuzzerLogFile-0-MH4mJD9u6t.data.yaml test_connect_ws_fuzzer.covreport
test_bind_ws_fuzzer fuzzerLogFile-0-rbrHdPCC9R.data fuzzerLogFile-0-rbrHdPCC9R.data.yaml test_bind_ws_fuzzer.covreport
test_connect_curve_fuzzer fuzzerLogFile-0-zMSNnhq7YB.data fuzzerLogFile-0-zMSNnhq7YB.data.yaml test_connect_curve_fuzzer.covreport
test_connect_null_fuzzer fuzzerLogFile-0-KcBmXrBuYZ.data fuzzerLogFile-0-KcBmXrBuYZ.data.yaml test_connect_null_fuzzer.covreport
test_bind_curve_fuzzer fuzzerLogFile-0-sW24qJ41Eb.data fuzzerLogFile-0-sW24qJ41Eb.data.yaml test_bind_curve_fuzzer.covreport
test_bind_fuzzer fuzzerLogFile-0-2qbp9E8k18.data fuzzerLogFile-0-2qbp9E8k18.data.yaml test_bind_fuzzer.covreport
test_socket_options_fuzzer fuzzerLogFile-0-fBWwcpxblu.data fuzzerLogFile-0-fBWwcpxblu.data.yaml test_socket_options_fuzzer.covreport
test_bind_stream_fuzzer fuzzerLogFile-0-XC5MLI2fvG.data fuzzerLogFile-0-XC5MLI2fvG.data.yaml test_bind_stream_fuzzer.covreport