]> git.baikalelectronics.ru Git - kernel.git/commit
vsock: cope with memory allocation failure at socket creation time
authorPaolo Abeni <pabeni@redhat.com>
Thu, 7 Feb 2019 13:13:18 +0000 (14:13 +0100)
committerDavid S. Miller <davem@davemloft.net>
Sat, 9 Feb 2019 06:32:05 +0000 (22:32 -0800)
commit74d6d132a07e87e9ecdb0750f01056f21226cc0b
treeafec17ea479f9b610d7c8ac6cf0032d7f9a234a8
parentab7c723316968243892be0d4073d0a77007f27f2
vsock: cope with memory allocation failure at socket creation time

In the unlikely event that the kmalloc call in vmci_transport_socket_init()
fails, we end-up calling vmci_transport_destruct() with a NULL vmci_trans()
and oopsing.

This change addresses the above explicitly checking for zero vmci_trans()
at destruction time.

Reported-by: Xiumei Mu <xmu@redhat.com>
Fixes: 031acdb8ab77 ("VSOCK: Introduce VM Sockets")
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Reviewed-by: Stefano Garzarella <sgarzare@redhat.com>
Reviewed-by: Jorgen Hansen <jhansen@vmware.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/vmw_vsock/vmci_transport.c