diff --git a/src/network/netdev/netdev.c b/src/network/netdev/netdev.c index 9ec16579e41..f9a2246d08a 100644 --- a/src/network/netdev/netdev.c +++ b/src/network/netdev/netdev.c @@ -97,7 +97,41 @@ static const char* const netdev_kind_table[_NETDEV_KIND_MAX] = { }; DEFINE_STRING_TABLE_LOOKUP(netdev_kind, NetDevKind); -DEFINE_CONFIG_PARSE_ENUM(config_parse_netdev_kind, netdev_kind, NetDevKind, "Failed to parse netdev kind"); + +int config_parse_netdev_kind( + const char *unit, + const char *filename, + unsigned line, + const char *section, + unsigned section_line, + const char *lvalue, + int ltype, + const char *rvalue, + void *data, + void *userdata) { + + NetDevKind k, *kind = data; + + assert(rvalue); + assert(data); + + k = netdev_kind_from_string(rvalue); + if (k < 0) { + log_syntax(unit, LOG_ERR, filename, line, 0, "Failed to parse netdev kind, ignoring assignment: %s", rvalue); + return 0; + } + + if (*kind != _NETDEV_KIND_INVALID && *kind != k) { + log_syntax(unit, LOG_ERR, filename, line, 0, + "Specified netdev kind is different from the previous value '%s', ignoring assignment: %s", + netdev_kind_to_string(*kind), rvalue); + return 0; + } + + *kind = k; + + return 0; +} static void netdev_callbacks_clear(NetDev *netdev) { netdev_join_callback *callback; diff --git a/src/network/netdev/wireguard.h b/src/network/netdev/wireguard.h index bd970045195..70690ee2b8d 100644 --- a/src/network/netdev/wireguard.h +++ b/src/network/netdev/wireguard.h @@ -46,17 +46,14 @@ struct Wireguard { NetDev meta; unsigned last_peer_section; - char interface[IFNAMSIZ]; uint32_t flags; - uint8_t public_key[WG_KEY_LEN]; uint8_t private_key[WG_KEY_LEN]; uint32_t fwmark; uint16_t port; LIST_HEAD(WireguardPeer, peers); - size_t allocation_size; LIST_HEAD(WireguardEndpoint, unresolved_endpoints); LIST_HEAD(WireguardEndpoint, failed_endpoints); diff --git a/test/fuzz/fuzz-netdev-parser/oss-fuzz-11279 b/test/fuzz/fuzz-netdev-parser/oss-fuzz-11279 new file mode 100644 index 00000000000..f7a99bdaa13 Binary files /dev/null and b/test/fuzz/fuzz-netdev-parser/oss-fuzz-11279 differ diff --git a/test/fuzz/fuzz-netdev-parser/oss-fuzz-11280 b/test/fuzz/fuzz-netdev-parser/oss-fuzz-11280 new file mode 100644 index 00000000000..33d24990b74 Binary files /dev/null and b/test/fuzz/fuzz-netdev-parser/oss-fuzz-11280 differ