summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Thode <mthode@mthode.org>2015-02-18 00:31:57 (GMT)
committerDavid S. Miller <davem@davemloft.net>2015-02-22 02:45:25 (GMT)
commita4176a9391868bfa87705bcd2e3b49e9b9dd2996 (patch)
tree03d617339ea5e540b5ca5951b2654efd55d44251
parentddede6d536d70c4ef2193ca14208db90740fcd22 (diff)
downloadlinux-a4176a9391868bfa87705bcd2e3b49e9b9dd2996.tar.xz
net: reject creation of netdev names with colons
colons are used as a separator in netdev device lookup in dev_ioctl.c Specific functions are SIOCGIFTXQLEN SIOCETHTOOL SIOCSIFNAME Signed-off-by: Matthew Thode <mthode@mthode.org> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--net/core/dev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/dev.c b/net/core/dev.c
index 8f9710c..962ee9d 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -946,7 +946,7 @@ bool dev_valid_name(const char *name)
return false;
while (*name) {
- if (*name == '/' || isspace(*name))
+ if (*name == '/' || *name == ':' || isspace(*name))
return false;
name++;
}