| /* SPDX-License-Identifier: LGPL-2.1+ */ |
| |
| #include "alloc-util.h" |
| #include "fd-util.h" |
| #include "fuzz.h" |
| #include "time-util.h" |
| #include "util.h" |
| |
| int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { |
| _cleanup_free_ char *str = NULL; |
| usec_t usec; |
| |
| if (!getenv("SYSTEMD_LOG_LEVEL")) |
| log_set_max_level(LOG_CRIT); |
| |
| str = memdup_suffix0(data, size); |
| |
| (void) parse_timestamp(str, &usec); |
| (void) parse_sec(str, &usec); |
| (void) parse_sec_fix_0(str, &usec); |
| (void) parse_sec_def_infinity(str, &usec); |
| (void) parse_time(str, &usec, USEC_PER_SEC); |
| (void) parse_nsec(str, &usec); |
| |
| (void) timezone_is_valid(str, LOG_DEBUG); |
| |
| return 0; |
| } |