diff options
author | Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> | 2012-07-19 02:13:36 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-07-20 14:21:06 -0400 |
commit | b09e786bd1dd66418b69348cb110f3a64764626a (patch) | |
tree | e4f12db01edc11d669f32a2d3d6832b22f57f656 /drivers/net/tun.c | |
parent | 521f549097a79dc55e18c3bc752ef2127ad70ac5 (diff) |
tun: fix a crash bug and a memory leak
This patch fixes a crash
tun_chr_close -> netdev_run_todo -> tun_free_netdev -> sk_release_kernel ->
sock_release -> iput(SOCK_INODE(sock))
introduced by commit 1ab5ecb90cb6a3df1476e052f76a6e8f6511cb3d
The problem is that this socket is embedded in struct tun_struct, it has
no inode, iput is called on invalid inode, which modifies invalid memory
and optionally causes a crash.
sock_release also decrements sockets_in_use, this causes a bug that
"sockets: used" field in /proc/*/net/sockstat keeps on decreasing when
creating and closing tun devices.
This patch introduces a flag SOCK_EXTERNALLY_ALLOCATED that instructs
sock_release to not free the inode and not decrement sockets_in_use,
fixing both memory corruption and sockets_in_use underflow.
It should be backported to 3.3 an 3.4 stabke.
Signed-off-by: Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
Cc: stable@kernel.org
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/tun.c')
-rw-r--r-- | drivers/net/tun.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/tun.c b/drivers/net/tun.c index 961fad1f7053..f3a454c3295a 100644 --- a/drivers/net/tun.c +++ b/drivers/net/tun.c | |||
@@ -358,6 +358,8 @@ static void tun_free_netdev(struct net_device *dev) | |||
358 | { | 358 | { |
359 | struct tun_struct *tun = netdev_priv(dev); | 359 | struct tun_struct *tun = netdev_priv(dev); |
360 | 360 | ||
361 | BUG_ON(!test_bit(SOCK_EXTERNALLY_ALLOCATED, &tun->socket.flags)); | ||
362 | |||
361 | sk_release_kernel(tun->socket.sk); | 363 | sk_release_kernel(tun->socket.sk); |
362 | } | 364 | } |
363 | 365 | ||
@@ -1115,6 +1117,7 @@ static int tun_set_iff(struct net *net, struct file *file, struct ifreq *ifr) | |||
1115 | tun->flags = flags; | 1117 | tun->flags = flags; |
1116 | tun->txflt.count = 0; | 1118 | tun->txflt.count = 0; |
1117 | tun->vnet_hdr_sz = sizeof(struct virtio_net_hdr); | 1119 | tun->vnet_hdr_sz = sizeof(struct virtio_net_hdr); |
1120 | set_bit(SOCK_EXTERNALLY_ALLOCATED, &tun->socket.flags); | ||
1118 | 1121 | ||
1119 | err = -ENOMEM; | 1122 | err = -ENOMEM; |
1120 | sk = sk_alloc(&init_net, AF_UNSPEC, GFP_KERNEL, &tun_proto); | 1123 | sk = sk_alloc(&init_net, AF_UNSPEC, GFP_KERNEL, &tun_proto); |