mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-03-10 00:58:20 +03:00
tests: fuzz etc_hosts_parse
That's just a follow-up to https://github.com/systemd/systemd/pull/22179
This commit is contained in:
parent
98b1eb711c
commit
e0ec0450e9
20
src/resolve/fuzz-etc-hosts.c
Normal file
20
src/resolve/fuzz-etc-hosts.c
Normal file
@ -0,0 +1,20 @@
|
||||
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
||||
|
||||
#include "fd-util.h"
|
||||
#include "fuzz.h"
|
||||
#include "resolved-etc-hosts.h"
|
||||
|
||||
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
||||
_cleanup_fclose_ FILE *f = NULL;
|
||||
_cleanup_(etc_hosts_free) EtcHosts h = {};
|
||||
|
||||
if (!getenv("SYSTEMD_LOG_LEVEL"))
|
||||
log_set_max_level(LOG_CRIT);
|
||||
|
||||
f = data_to_file(data, size);
|
||||
assert_se(f);
|
||||
|
||||
(void) etc_hosts_parse(&h, f);
|
||||
|
||||
return 0;
|
||||
}
|
@ -221,4 +221,11 @@ fuzzers += [
|
||||
libshared],
|
||||
[lib_openssl_or_gcrypt,
|
||||
libm]],
|
||||
[files('fuzz-etc-hosts.c',
|
||||
'resolved-etc-hosts.c',
|
||||
'resolved-etc-hosts.h'),
|
||||
[libsystemd_resolve_core,
|
||||
libshared],
|
||||
[lib_openssl_or_gcrypt,
|
||||
libm]],
|
||||
]
|
||||
|
@ -73,6 +73,11 @@ done
|
||||
zip -jqr "$OUT/fuzz-bcd_seed_corpus.zip" "$bcd"
|
||||
rm -rf "$bcd"
|
||||
|
||||
hosts=$(mktemp)
|
||||
wget -O "$hosts" https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts
|
||||
zip -jq "$OUT/fuzz-etc-hosts_seed_corpus.zip" "$hosts"
|
||||
rm -rf "$hosts"
|
||||
|
||||
# The seed corpus is a separate flat archive for each fuzzer,
|
||||
# with a fixed name ${fuzzer}_seed_corpus.zip.
|
||||
for d in "$(dirname "$0")/../test/fuzz/fuzz-"*; do
|
||||
|
Loading…
x
Reference in New Issue
Block a user