]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
net: tun: release the reference of tun device in tun_recvmsg
authorGao feng <gaofeng@cn.fujitsu.com>
Wed, 24 Apr 2013 21:59:23 +0000 (21:59 +0000)
committerDavid S. Miller <davem@davemloft.net>
Mon, 29 Apr 2013 15:06:37 +0000 (11:06 -0400)
We forget to release the reference of tun device in tun_recvmsg.
bug introduced in commit 54f968d6efdbf7dec36faa44fc11f01b0e4d1990
(tuntap: move socket to tun_file)

Signed-off-by: Gao feng <gaofeng@cn.fujitsu.com>
Acked-by: Jason Wang <jasowang@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/tun.c

index 0c9df2fe8f05a4d6b74051449cacb9ba3d1c80e4..dcd0c19a431e1dc7c982b38bd1deff0aa9b38280 100644 (file)
@@ -1471,14 +1471,17 @@ static int tun_recvmsg(struct kiocb *iocb, struct socket *sock,
        if (!tun)
                return -EBADFD;
 
-       if (flags & ~(MSG_DONTWAIT|MSG_TRUNC))
-               return -EINVAL;
+       if (flags & ~(MSG_DONTWAIT|MSG_TRUNC)) {
+               ret = -EINVAL;
+               goto out;
+       }
        ret = tun_do_read(tun, tfile, iocb, m->msg_iov, total_len,
                          flags & MSG_DONTWAIT);
        if (ret > total_len) {
                m->msg_flags |= MSG_TRUNC;
                ret = flags & MSG_TRUNC ? ret : total_len;
        }
+out:
        tun_put(tun);
        return ret;
 }