aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMathias Krause <minipli@googlemail.com>2012-07-29 19:45:14 +0000
committerDavid S. Miller <davem@davemloft.net>2012-07-29 23:18:31 -0700
commita117dacde0288f3ec60b6e5bcedae8fa37ee0dfc (patch)
treec32e1dc90154dbd1ab9e694fee3fa810755b6403
parenttg3: Update version to 3.124 (diff)
downloadlinux-dev-a117dacde0288f3ec60b6e5bcedae8fa37ee0dfc.tar.xz
linux-dev-a117dacde0288f3ec60b6e5bcedae8fa37ee0dfc.zip
net/tun: fix ioctl() based info leaks
The tun module leaks up to 36 bytes of memory by not fully initializing a structure located on the stack that gets copied to user memory by the TUNGETIFF and SIOCGIFHWADDR ioctl()s. Signed-off-by: Mathias Krause <minipli@googlemail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--drivers/net/tun.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/tun.c b/drivers/net/tun.c
index c62163e272cd..f55c46222613 100644
--- a/drivers/net/tun.c
+++ b/drivers/net/tun.c
@@ -1379,9 +1379,11 @@ static long __tun_chr_ioctl(struct file *file, unsigned int cmd,
int vnet_hdr_sz;
int ret;
- if (cmd == TUNSETIFF || _IOC_TYPE(cmd) == 0x89)
+ if (cmd == TUNSETIFF || _IOC_TYPE(cmd) == 0x89) {
if (copy_from_user(&ifr, argp, ifreq_len))
return -EFAULT;
+ } else
+ memset(&ifr, 0, sizeof(ifr));
if (cmd == TUNGETFEATURES) {
/* Currently this just means: "what IFF flags are valid?".