Commit 4618793e authored by Matthew Thode's avatar Matthew Thode Committed by Luis Henriques

net: reject creation of netdev names with colons

commit a4176a93 upstream.

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 avatarLuis Henriques <luis.henriques@canonical.com>
parent 494f09b0
......@@ -940,7 +940,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