mirror of
https://github.com/Dasharo/systemd.git
synced 2026-03-06 15:02:31 -08: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
24 lines
540 B
C
24 lines
540 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
|
|
#include "alloc-util.h"
|
|
#include "fd-util.h"
|
|
#include "fuzz.h"
|
|
#include "nspawn-settings.h"
|
|
|
|
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
|
_cleanup_fclose_ FILE *f = NULL;
|
|
_cleanup_(settings_freep) Settings *s = NULL;
|
|
|
|
if (outside_size_range(size, 0, 65536))
|
|
return 0;
|
|
|
|
f = data_to_file(data, size);
|
|
assert_se(f);
|
|
|
|
fuzz_setup_logging();
|
|
|
|
(void) settings_load(f, "/dev/null", &s);
|
|
|
|
return 0;
|
|
}
|