Skip to content

Commit daf0ca7

Browse files
jasowanggregkh
authored andcommitted
tuntap: fix use after free during release
commit 7063efd upstream. After commit b196d88 ("tun: fix use after free for ptr_ring") we need clean up tx ring during release(). But unfortunately, it tries to do the cleanup blindly after socket were destroyed which will lead another use-after-free. Fix this by doing the cleanup before dropping the last reference of the socket in __tun_detach(). Backport Note :- Upstream commit moves the ptr_ring_cleanup call from tun_chr_close to __tun_detach. Upstream applied that patch after replacing skb_array with ptr_ring. This patch moves the skb_array_cleanup call from tun_chr_close to __tun_detach. Reported-by: Andrei Vagin <avagin@virtuozzo.com> Acked-by: Andrei Vagin <avagin@virtuozzo.com> Fixes: b196d88 ("tun: fix use after free for ptr_ring") Signed-off-by: Jason Wang <jasowang@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Zubin Mithra <zsm@chromium.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent ab75811 commit daf0ca7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/net/tun.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -575,6 +575,7 @@ static void __tun_detach(struct tun_file *tfile, bool clean)
575575
tun->dev->reg_state == NETREG_REGISTERED)
576576
unregister_netdevice(tun->dev);
577577
}
578+
skb_array_cleanup(&tfile->tx_array);
578579
sock_put(&tfile->sk);
579580
}
580581
}
@@ -2646,7 +2647,6 @@ static int tun_chr_close(struct inode *inode, struct file *file)
26462647
struct tun_file *tfile = file->private_data;
26472648

26482649
tun_detach(tfile, true);
2649-
skb_array_cleanup(&tfile->tx_array);
26502650

26512651
return 0;
26522652
}

0 commit comments

Comments
 (0)