Commit 465146d2 authored by Matthew Thode's avatar Matthew Thode Committed by Greg Kroah-Hartman

net: reject creation of netdev names with colons

[ Upstream commit a4176a93 ]

colons are used as a separator in netdev device lookup in dev_ioctl.c

Specific functions are SIOCGIFTXQLEN SIOCETHTOOL SIOCSIFNAME
Signed-off-by: default avatarMatthew Thode <mthode@mthode.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9d0ba3cf
......@@ -945,7 +945,7 @@ bool dev_valid_name(const char *name)
return false;
while (*name) {
if (*name == '/' || isspace(*name))
if (*name == '/' || *name == ':' || isspace(*name))
return false;
name++;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment