From: John Crispin Date: Mon, 16 Jul 2018 08:32:08 +0000 (+0200) Subject: netifd: make sure the vlan ifname fits into the buffer X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ca970979e9a2b62646b610bfc32f655993527d03;p=oweals%2Fnetifd.git netifd: make sure the vlan ifname fits into the buffer Signed-off-by: John Crispin --- diff --git a/vlan.c b/vlan.c index 221c79c..c3ab2d2 100644 --- a/vlan.c +++ b/vlan.c @@ -106,6 +106,9 @@ static struct device *get_vlan_device(struct device *dev, int id, bool create) struct vlan_device *vldev; struct device_user *dep; + if (strlen(dev->ifname) > (IFNAMSIZ - 6)) + return NULL; + /* look for an existing interface before creating a new one */ list_for_each_entry(dep, &dev->users.list, list.list) { if (dep->cb != vlan_dev_cb)