]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
Bluetooth: hci_ldisc: Ensure hu->hdev set to NULL before freeing hdev
authorDean Jenkins <Dean_Jenkins@mentor.com>
Thu, 20 Apr 2017 17:06:40 +0000 (18:06 +0100)
committerMarcel Holtmann <marcel@holtmann.org>
Sat, 22 Apr 2017 08:28:40 +0000 (10:28 +0200)
When hci_register_dev() fails, hu->hdev should be set to NULL before
freeing hdev. This avoids potential use of hu->hdev after it has been
freed.

This commit sets hu->hdev to NULL before calling hci_free_dev() in error
handling scenarios in hci_uart_init_work() and hci_uart_register_dev().

Signed-off-by: Dean Jenkins <Dean_Jenkins@mentor.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
drivers/bluetooth/hci_ldisc.c

index 1166e3f5682d76e86f2f2b4c08260edbe442567f..b1096d1ab30edc55ecbb00d0dd5993d313cabed5 100644 (file)
@@ -177,6 +177,7 @@ static void hci_uart_init_work(struct work_struct *work)
 {
        struct hci_uart *hu = container_of(work, struct hci_uart, init_ready);
        int err;
+       struct hci_dev *hdev;
 
        if (!test_and_clear_bit(HCI_UART_INIT_PENDING, &hu->hdev_flags))
                return;
@@ -184,8 +185,9 @@ static void hci_uart_init_work(struct work_struct *work)
        err = hci_register_dev(hu->hdev);
        if (err < 0) {
                BT_ERR("Can't register HCI device");
-               hci_free_dev(hu->hdev);
+               hdev = hu->hdev;
                hu->hdev = NULL;
+               hci_free_dev(hdev);
                hu->proto->close(hu);
                return;
        }
@@ -603,6 +605,7 @@ static int hci_uart_register_dev(struct hci_uart *hu)
 
        if (hci_register_dev(hdev) < 0) {
                BT_ERR("Can't register HCI device");
+               hu->hdev = NULL;
                hci_free_dev(hdev);
                return -ENODEV;
        }