]> git.baikalelectronics.ru Git - kernel.git/commit
vhost_net: validate sock before trying to put its fd
authorJason Wang <jasowang@redhat.com>
Thu, 21 Jun 2018 05:11:31 +0000 (13:11 +0800)
committerDavid S. Miller <davem@davemloft.net>
Sat, 23 Jun 2018 01:23:49 +0000 (10:23 +0900)
commit573c338ac28809d2231b13e4b1f50a0491d5869d
tree106b3508db9867582594c1f7d7e740afd350c6be
parent5ac92e679e45391ee1515bb64b7f8c6059f28b20
vhost_net: validate sock before trying to put its fd

Sock will be NULL if we pass -1 to vhost_net_set_backend(), but when
we meet errors during ubuf allocation, the code does not check for
NULL before calling sockfd_put(), this will lead NULL
dereferencing. Fixing by checking sock pointer before.

Fixes: 2c001603f4f3 ("vhost: vhost TX zero-copy support")
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/vhost/net.c