[PATCH net-next v2 2/5] vxlan: vnifilter: bound the number of VNIs one request may touch
From: Ali Firas <hidden>
Date: 2026-09-16 19:37:44
Also in:
lkml
Subsystem:
networking drivers, the rest · Maintainers:
Andrew Lunn, "David S. Miller", Eric Dumazet, Jakub Kicinski, Paolo Abeni, Linus Torvalds
With both endpoints bounded to the 24-bit space, a single RTM_NEWTUNNEL or RTM_DELTUNNEL message can still ask for all of it. vxlan_vni_add_del() loops over the span creating one VNI node and one per-CPU stats block per iteration, all under rtnl_lock. The span of one VXLAN_VNIFILTER_ENTRY is not the quantity to bound. vxlan_vnifilter_process() calls vxlan_process_vni_filter() once per entry, vni_filter_policy places no limit on how many entries the nest may carry, and an entry carrying just START and END is 20 bytes on the wire, so bounding each entry on its own would still let one message ask for thousands of times the bound. Sum the spans of every entry and reject the message as a whole in vxlan_vnifilter_check_msg(), before the dispatch loop rather than inside it: entries are applied and notified one at a time, so a limit enforced during dispatch would return -EINVAL only after every preceding entry had already created its VNIs and sent its notifications. The limit is 4096, which follows from how the interface is used on bridged VXLAN devices where the VNI is derived from the VLAN and so cannot exceed the usable VLAN ID space. It bounds one message, not how many VNIs a device may hold: a device can still be populated with the whole space, it just takes more than one message. It is a driver-local constant rather than VLAN_N_VID because a bound on a VXLAN netlink request is not a count of VLAN IDs. One asymmetry is deliberate: vxlan_vnifilter_dump_dev() merges a contiguous run sharing a remote into a single entry with no clamp, so a device populated by several accepted requests can dump as one entry this check refuses on replay. Chunking the dump would not remove that, since the same run split into capped entries still exceeds the limit when they arrive in one message. Assisted-by: LLM Signed-off-by: Ali Firas <redacted> --- v1: https://lore.kernel.org/netdev/20260909092645.3105263-1-alishmery18@gmail.com/ (local) drivers/net/vxlan/vxlan_vnifilter.c | 88 ++++++++++++++++++++++++++--- 1 file changed, 80 insertions(+), 8 deletions(-)
diff --git a/drivers/net/vxlan/vxlan_vnifilter.c b/drivers/net/vxlan/vxlan_vnifilter.c
index 5aaaaeee8110..9a1baca39d8b 100644
--- a/drivers/net/vxlan/vxlan_vnifilter.c
+++ b/drivers/net/vxlan/vxlan_vnifilter.c@@ -17,6 +17,15 @@ #include "vxlan_private.h" +/* Maximum number of VNIs one RTM_NEWTUNNEL or RTM_DELTUNNEL message may add or + * delete, summed over all of its VXLAN_VNIFILTER_ENTRY attributes. VNI + * filtering is mainly used on bridged VXLAN devices where the VNI is derived + * from the VLAN, so a message touching more VNIs than the VLAN ID space has no + * practical use, while an unbounded message can walk the whole 24-bit space + * under rtnl_lock. + */ +#define VXLAN_VNI_FILTER_MSG_MAX 4096 + static inline int vxlan_vni_cmp(struct rhashtable_compare_arg *arg, const void *ptr) {
@@ -846,12 +855,77 @@ static int vxlan_vni_add_del(struct vxlan_dev *vxlan, __u32 start_vni, return err; } +/* Derive the VNI range one VXLAN_VNIFILTER_ENTRY selects. Shared so that the + * count taken by vxlan_vnifilter_check_msg() cannot drift from the range + * vxlan_process_vni_filter() then acts on. + */ +static void vxlan_vni_filter_entry_range(struct nlattr **vattrs, u32 *vni_start, + u32 *vni_end) +{ + *vni_start = 0; + *vni_end = 0; + + if (vattrs[VXLAN_VNIFILTER_ENTRY_START]) { + *vni_start = nla_get_u32(vattrs[VXLAN_VNIFILTER_ENTRY_START]); + *vni_end = *vni_start; + } + + if (vattrs[VXLAN_VNIFILTER_ENTRY_END]) + *vni_end = nla_get_u32(vattrs[VXLAN_VNIFILTER_ENTRY_END]); +} + +/* Reject a message asking for more than VXLAN_VNI_FILTER_MSG_MAX VNIs before + * any of its entries is acted on. Entries are applied one at a time and each + * one notifies as it goes, so a limit checked inside the dispatch loop would + * leave the entries ahead of the offending one already applied. + */ +static int vxlan_vnifilter_check_msg(const struct nlmsghdr *nlh, + struct netlink_ext_ack *extack) +{ + struct nlattr *vattrs[VXLAN_VNIFILTER_ENTRY_MAX + 1]; + struct nlattr *attr; + u32 vnis = 0; + int err, rem; + + nlmsg_for_each_attr_type(attr, VXLAN_VNIFILTER_ENTRY, nlh, + sizeof(struct tunnel_msg), rem) { + u32 vni_start, vni_end; + + err = nla_parse_nested(vattrs, VXLAN_VNIFILTER_ENTRY_MAX, attr, + vni_filter_entry_policy, extack); + if (err) + return err; + + vxlan_vni_filter_entry_range(vattrs, &vni_start, &vni_end); + + /* A start above the end selects no VNI at all and costs + * nothing; leave it behaving as it does today. + */ + if (vni_end < vni_start) + continue; + + /* vni_filter_entry_policy has already bounded both endpoints + * to below VXLAN_N_VID, so one entry adds at most VXLAN_N_VID + * and vnis cannot wrap before the test below rejects it. + */ + vnis += vni_end - vni_start + 1; + if (vnis > VXLAN_VNI_FILTER_MSG_MAX) { + NL_SET_ERR_MSG_ATTR_FMT(extack, attr, + "Request asks for more than %u VNIs", + VXLAN_VNI_FILTER_MSG_MAX); + return -EINVAL; + } + } + + return 0; +} + static int vxlan_process_vni_filter(struct vxlan_dev *vxlan, struct nlattr *nlvnifilter, int cmd, struct netlink_ext_ack *extack) { struct nlattr *vattrs[VXLAN_VNIFILTER_ENTRY_MAX + 1]; - u32 vni_start = 0, vni_end = 0; + u32 vni_start, vni_end; union vxlan_addr group; int err;
@@ -862,13 +936,7 @@ static int vxlan_process_vni_filter(struct vxlan_dev *vxlan, if (err) return err; - if (vattrs[VXLAN_VNIFILTER_ENTRY_START]) { - vni_start = nla_get_u32(vattrs[VXLAN_VNIFILTER_ENTRY_START]); - vni_end = vni_start; - } - - if (vattrs[VXLAN_VNIFILTER_ENTRY_END]) - vni_end = nla_get_u32(vattrs[VXLAN_VNIFILTER_ENTRY_END]); + vxlan_vni_filter_entry_range(vattrs, &vni_start, &vni_end); if (!vni_start && !vni_end) { NL_SET_ERR_MSG_ATTR(extack, nlvnifilter,
@@ -975,6 +1043,10 @@ static int vxlan_vnifilter_process(struct sk_buff *skb, struct nlmsghdr *nlh, if (!(vxlan->cfg.flags & VXLAN_F_VNIFILTER)) return -EOPNOTSUPP; + err = vxlan_vnifilter_check_msg(nlh, extack); + if (err) + return err; + nlmsg_for_each_attr_type(attr, VXLAN_VNIFILTER_ENTRY, nlh, sizeof(*tmsg), rem) { err = vxlan_process_vni_filter(vxlan, attr, nlh->nlmsg_type,
--
2.53.0