mirror of
https://github.com/systemd/systemd.git
synced 2026-07-24 16:25:52 +00: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
26 lines
768 B
C
26 lines
768 B
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
|
|
#include "device-internal.h"
|
|
#include "device-private.h"
|
|
#include "fd-util.h"
|
|
#include "fs-util.h"
|
|
#include "fuzz.h"
|
|
#include "tmpfile-util.h"
|
|
|
|
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
|
_cleanup_(sd_device_unrefp) sd_device *dev = NULL;
|
|
_cleanup_(unlink_tempfilep) char filename[] = "/tmp/fuzz-udev-database.XXXXXX";
|
|
_cleanup_fclose_ FILE *f = NULL;
|
|
|
|
fuzz_setup_logging();
|
|
|
|
assert_se(fmkostemp_safe(filename, "r+", &f) == 0);
|
|
if (size != 0)
|
|
assert_se(fwrite(data, size, 1, f) == 1);
|
|
|
|
fflush(f);
|
|
assert_se(device_new_aux(&dev) >= 0);
|
|
(void) device_read_db_internal_filename(dev, filename);
|
|
return 0;
|
|
}
|