]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
Bluetooth: hci_ldisc: Fix another race when closing the tty.
authorRonald Tschalär <ronald@innovation.ch>
Thu, 26 Oct 2017 05:15:19 +0000 (22:15 -0700)
committerMarcel Holtmann <marcel@holtmann.org>
Mon, 30 Oct 2017 14:48:32 +0000 (15:48 +0100)
The following race condition still existed:

         P1                                P2
  cancel_work_sync()
                                     hci_uart_tx_wakeup()
                                     hci_uart_write_work()
                                     hci_uart_dequeue()
  clear_bit(HCI_UART_PROTO_READY)
  hci_unregister_dev(hdev)
  hci_free_dev(hdev)
  hu->proto->close(hu)
  kfree(hu)
                                     access to hdev and hu

Cancelling the work after clearing the HCI_UART_PROTO_READY bit avoids
this as any hci_uart_tx_wakeup() issued after the flag is cleared will
detect that and not schedule further work.

Signed-off-by: Ronald Tschalär <ronald@innovation.ch>
Reviewed-by: Lukas Wunner <lukas@wunner.de>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
drivers/bluetooth/hci_ldisc.c

index 31def781a562f4d6333a9a16c3cb1fc71d0269c4..c823914b3a80a0ce550dff8244df835b23ec66ec 100644 (file)
@@ -523,13 +523,13 @@ static void hci_uart_tty_close(struct tty_struct *tty)
        if (hdev)
                hci_uart_close(hdev);
 
-       cancel_work_sync(&hu->write_work);
-
        if (test_bit(HCI_UART_PROTO_READY, &hu->flags)) {
                percpu_down_write(&hu->proto_lock);
                clear_bit(HCI_UART_PROTO_READY, &hu->flags);
                percpu_up_write(&hu->proto_lock);
 
+               cancel_work_sync(&hu->write_work);
+
                if (hdev) {
                        if (test_bit(HCI_UART_REGISTERED, &hu->flags))
                                hci_unregister_dev(hdev);