]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
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)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 23 Feb 2019 08:04:25 +0000 (09:04 +0100)
[ Upstream commit 225d9464268599a5b4d094d02ec17808e44c7553 ]

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: d021c344051a ("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>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
net/vmw_vsock/vmci_transport.c

index f44b9b5d187ba76f58650fd20b7e7effd2b304e9..4da423cbe7cfb00ac6dc918c0482ed035a0392d6 100644 (file)
@@ -1663,6 +1663,10 @@ static int vmci_transport_socket_init(struct vsock_sock *vsk,
 
 static void vmci_transport_destruct(struct vsock_sock *vsk)
 {
+       /* transport can be NULL if we hit a failure at init() time */
+       if (!vmci_trans(vsk))
+               return;
+
        if (vmci_trans(vsk)->attach_sub_id != VMCI_INVALID_ID) {
                vmci_event_unsubscribe(vmci_trans(vsk)->attach_sub_id);
                vmci_trans(vsk)->attach_sub_id = VMCI_INVALID_ID;