From: Zbigniew Jędrzejewski-Szmek Date: Thu, 4 Mar 2021 13:40:55 +0000 (+0100) Subject: fuzz-bus-message: move sources to src/libsystemd/ X-Git-Tag: v248-rc3~42^2~10 X-Git-Url: http://git-history.diyao.me/?a=commitdiff_plain;h=49ba1522fc585d9b9a8867de41a215dabd3b2c1a;p=systemd%2F.git fuzz-bus-message: move sources to src/libsystemd/ There's also fuzz-bus-label, but despite the name, it tests code that is in src/shared/, so it shouldn't move. --- diff --git a/src/fuzz/fuzz-bus-message.c b/src/fuzz/fuzz-bus-message.c deleted file mode 100644 index af3dbf4d57..0000000000 --- a/src/fuzz/fuzz-bus-message.c +++ /dev/null @@ -1,45 +0,0 @@ -/* SPDX-License-Identifier: LGPL-2.1-or-later */ - -#include "alloc-util.h" -#include "bus-dump.h" -#include "bus-message.h" -#include "env-util.h" -#include "fd-util.h" -#include "fileio.h" -#include "fuzz.h" - -int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { - _cleanup_free_ char *out = NULL; /* out should be freed after g */ - size_t out_size; - _cleanup_fclose_ FILE *g = NULL; - _cleanup_(sd_bus_unrefp) sd_bus *bus = NULL; - _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL; - _cleanup_free_ void *buffer = NULL; - int r; - - /* We don't want to fill the logs with messages about parse errors. - * Disable most logging if not running standalone */ - if (!getenv("SYSTEMD_LOG_LEVEL")) - log_set_max_level(LOG_CRIT); - - r = sd_bus_new(&bus); - assert_se(r >= 0); - - assert_se(buffer = memdup(data, size)); - - r = bus_message_from_malloc(bus, buffer, size, NULL, 0, NULL, &m); - if (r == -EBADMSG) - return 0; - assert_se(r >= 0); - TAKE_PTR(buffer); - - if (getenv_bool("SYSTEMD_FUZZ_OUTPUT") <= 0) - assert_se(g = open_memstream_unlocked(&out, &out_size)); - - sd_bus_message_dump(m, g ?: stdout, SD_BUS_MESSAGE_DUMP_WITH_HEADER); - - r = sd_bus_message_rewind(m, true); - assert_se(r >= 0); - - return 0; -} diff --git a/src/fuzz/meson.build b/src/fuzz/meson.build index 96528a191d..1ed1dd8251 100644 --- a/src/fuzz/meson.build +++ b/src/fuzz/meson.build @@ -1,8 +1,6 @@ # SPDX-License-Identifier: LGPL-2.1-or-later fuzzers += [ - [['src/fuzz/fuzz-bus-message.c']], - [['src/fuzz/fuzz-catalog.c']], [['src/fuzz/fuzz-json.c']], diff --git a/src/libsystemd/meson.build b/src/libsystemd/meson.build index b8a9bbe222..2fe1978d02 100644 --- a/src/libsystemd/meson.build +++ b/src/libsystemd/meson.build @@ -315,3 +315,9 @@ if cxx_cmd != '' [['src/libsystemd/sd-bus/test-bus-vtable-cc.cc']], ] endif + +############################################################ + +fuzzers += [ + [['src/libsystemd/sd-bus/fuzz-bus-message.c']], +] diff --git a/src/libsystemd/sd-bus/fuzz-bus-message.c b/src/libsystemd/sd-bus/fuzz-bus-message.c new file mode 100644 index 0000000000..af3dbf4d57 --- /dev/null +++ b/src/libsystemd/sd-bus/fuzz-bus-message.c @@ -0,0 +1,45 @@ +/* SPDX-License-Identifier: LGPL-2.1-or-later */ + +#include "alloc-util.h" +#include "bus-dump.h" +#include "bus-message.h" +#include "env-util.h" +#include "fd-util.h" +#include "fileio.h" +#include "fuzz.h" + +int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { + _cleanup_free_ char *out = NULL; /* out should be freed after g */ + size_t out_size; + _cleanup_fclose_ FILE *g = NULL; + _cleanup_(sd_bus_unrefp) sd_bus *bus = NULL; + _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL; + _cleanup_free_ void *buffer = NULL; + int r; + + /* We don't want to fill the logs with messages about parse errors. + * Disable most logging if not running standalone */ + if (!getenv("SYSTEMD_LOG_LEVEL")) + log_set_max_level(LOG_CRIT); + + r = sd_bus_new(&bus); + assert_se(r >= 0); + + assert_se(buffer = memdup(data, size)); + + r = bus_message_from_malloc(bus, buffer, size, NULL, 0, NULL, &m); + if (r == -EBADMSG) + return 0; + assert_se(r >= 0); + TAKE_PTR(buffer); + + if (getenv_bool("SYSTEMD_FUZZ_OUTPUT") <= 0) + assert_se(g = open_memstream_unlocked(&out, &out_size)); + + sd_bus_message_dump(m, g ?: stdout, SD_BUS_MESSAGE_DUMP_WITH_HEADER); + + r = sd_bus_message_rewind(m, true); + assert_se(r >= 0); + + return 0; +}