mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 00:47:10 +09:00
Make sure we don't log anything when running in "fuzzing" mode. Also, when at it, unify the setup logic into a helper, pretty similar to the test_setup_logging() one. Addresses: - https://github.com/systemd/systemd/pull/29558#pullrequestreview-1676060607 - https://github.com/systemd/systemd/pull/29558#discussion_r1358940663
28 lines
837 B
C
28 lines
837 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
|
|
#include "fd-util.h"
|
|
#include "fs-util.h"
|
|
#include "fuzz.h"
|
|
#include "networkd-manager.h"
|
|
#include "tmpfile-util.h"
|
|
|
|
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
|
_cleanup_(manager_freep) Manager *manager = NULL;
|
|
_cleanup_fclose_ FILE *f = NULL;
|
|
_cleanup_(unlink_tempfilep) char netdev_config[] = "/tmp/fuzz-networkd.XXXXXX";
|
|
|
|
if (outside_size_range(size, 0, 65536))
|
|
return 0;
|
|
|
|
fuzz_setup_logging();
|
|
|
|
assert_se(fmkostemp_safe(netdev_config, "r+", &f) == 0);
|
|
if (size != 0)
|
|
assert_se(fwrite(data, size, 1, f) == 1);
|
|
|
|
fflush(f);
|
|
assert_se(manager_new(&manager, /* test_mode = */ true) >= 0);
|
|
(void) netdev_load_one(manager, netdev_config);
|
|
return 0;
|
|
}
|