]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
tuntap: add sanity checks about msg_controllen in sendmsg
authorHarold Huang <baymaxhuang@gmail.com>
Thu, 3 Mar 2022 02:24:40 +0000 (10:24 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 13 Apr 2022 19:00:59 +0000 (21:00 +0200)
[ Upstream commit 74a335a07a17d131b9263bfdbdcb5e40673ca9ca ]

In patch [1], tun_msg_ctl was added to allow pass batched xdp buffers to
tun_sendmsg. Although we donot use msg_controllen in this path, we should
check msg_controllen to make sure the caller pass a valid msg_ctl.

[1]: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=fe8dd45bb7556246c6b76277b1ba4296c91c2505

Reported-by: Eric Dumazet <eric.dumazet@gmail.com>
Suggested-by: Jason Wang <jasowang@redhat.com>
Signed-off-by: Harold Huang <baymaxhuang@gmail.com>
Acked-by: Jason Wang <jasowang@redhat.com>
Link: https://lore.kernel.org/r/20220303022441.383865-1-baymaxhuang@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/tap.c
drivers/net/tun.c
drivers/vhost/net.c

index f549d3a8e59c0380c7f2d375d88900bf422b4675..8f7bb15206e9f3dd9f06e62d85b5e794b27f77a6 100644 (file)
@@ -1202,7 +1202,8 @@ static int tap_sendmsg(struct socket *sock, struct msghdr *m,
        struct xdp_buff *xdp;
        int i;
 
-       if (ctl && (ctl->type == TUN_MSG_PTR)) {
+       if (m->msg_controllen == sizeof(struct tun_msg_ctl) &&
+           ctl && ctl->type == TUN_MSG_PTR) {
                for (i = 0; i < ctl->num; i++) {
                        xdp = &((struct xdp_buff *)ctl->ptr)[i];
                        tap_get_user_xdp(q, xdp);
index ffbc7eda95eed1614edaa916761c6fd870f6c599..55ce141c93c75cb5b70576844b5f4327cb95110f 100644 (file)
@@ -2499,7 +2499,8 @@ static int tun_sendmsg(struct socket *sock, struct msghdr *m, size_t total_len)
        if (!tun)
                return -EBADFD;
 
-       if (ctl && (ctl->type == TUN_MSG_PTR)) {
+       if (m->msg_controllen == sizeof(struct tun_msg_ctl) &&
+           ctl && ctl->type == TUN_MSG_PTR) {
                struct tun_page tpage;
                int n = ctl->num;
                int flush = 0;
index da02c3e96e7b2ed4b71a6713418f3933bff36fb2..e303f6f073d2bf21f4398ee73bdefcc07288b968 100644 (file)
@@ -472,6 +472,7 @@ static void vhost_tx_batch(struct vhost_net *net,
                goto signal_used;
 
        msghdr->msg_control = &ctl;
+       msghdr->msg_controllen = sizeof(ctl);
        err = sock->ops->sendmsg(sock, msghdr, 0);
        if (unlikely(err < 0)) {
                vq_err(&nvq->vq, "Fail to batch sending packets\n");