* [PATCH] Bluetooth: Fix calling request callback more than once
@ 2013-07-27 18:29 johan.hedberg
2013-07-27 18:57 ` Marcel Holtmann
0 siblings, 1 reply; 5+ messages in thread
From: johan.hedberg @ 2013-07-27 18:29 UTC (permalink / raw)
To: linux-bluetooth
From: Johan Hedberg <johan.hedberg@intel.com>
In certain circumstances, such as an HCI driver using __hci_cmd_sync_ev
with HCI_EV_CMD_COMPLETE as the expected completion event there is the
chance that hci_event_packet will call hci_req_cmd_complete twice (once
for the explicitly looked after event and another time in the actual
handler of cmd_complete).
In the case of __hci_cmd_sync_ev this introduces a race where the first
call wakes up the blocking __hci_cmd_sync_ev and lets it complete.
However, by the time that a second __hci_cmd_sync_ev call is already in
progress the second hci_req_cmd_complete call (from the previous
operation) will wake up the blocking function prematurely and cause it
to fail, as witnessed by the following log:
[ 639.232195] hci_rx_work: hci0 Event packet
[ 639.232201] hci_req_cmd_complete: opcode 0xfc8e status 0x00
[ 639.232205] hci_sent_cmd_data: hci0 opcode 0xfc8e
[ 639.232210] hci_req_sync_complete: hci0 result 0x00
[ 639.232220] hci_cmd_complete_evt: hci0 opcode 0xfc8e
[ 639.232225] hci_req_cmd_complete: opcode 0xfc8e status 0x00
[ 639.232228] __hci_cmd_sync_ev: hci0 end: err 0
[ 639.232234] __hci_cmd_sync_ev: hci0
[ 639.232238] hci_req_add_ev: hci0 opcode 0xfc8e plen 250
[ 639.232242] hci_prepare_cmd: skb len 253
[ 639.232246] hci_req_run: length 1
[ 639.232250] hci_sent_cmd_data: hci0 opcode 0xfc8e
[ 639.232255] hci_req_sync_complete: hci0 result 0x00
[ 639.232266] hci_cmd_work: hci0 cmd_cnt 1 cmd queued 1
[ 639.232271] __hci_cmd_sync_ev: hci0 end: err 0
[ 639.232276] Bluetooth: hci0 sending Intel patch command (0xfc8e) failed (-61)
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
---
net/bluetooth/hci_core.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c
index b821b19..1f461fc 100644
--- a/net/bluetooth/hci_core.c
+++ b/net/bluetooth/hci_core.c
@@ -3399,6 +3399,13 @@ void hci_req_cmd_complete(struct hci_dev *hdev, u16 opcode, u8 status)
*/
if (hdev->sent_cmd) {
req_complete = bt_cb(hdev->sent_cmd)->req.complete;
+
+ /* We must set the complete callback to NULL to avoid
+ * calling the callback more than once if this
+ * function gets called again.
+ */
+ bt_cb(hdev->sent_cmd)->req.complete = NULL;
+
if (req_complete)
goto call_complete;
}
--
1.8.3.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] Bluetooth: Fix calling request callback more than once
2013-07-27 18:29 [PATCH] Bluetooth: Fix calling request callback more than once johan.hedberg
@ 2013-07-27 18:57 ` Marcel Holtmann
2013-07-27 19:11 ` [PATCH v2] " johan.hedberg
0 siblings, 1 reply; 5+ messages in thread
From: Marcel Holtmann @ 2013-07-27 18:57 UTC (permalink / raw)
To: johan.hedberg; +Cc: linux-bluetooth
Hi Johan,
> In certain circumstances, such as an HCI driver using __hci_cmd_sync_ev
> with HCI_EV_CMD_COMPLETE as the expected completion event there is the
> chance that hci_event_packet will call hci_req_cmd_complete twice (once
> for the explicitly looked after event and another time in the actual
> handler of cmd_complete).
>
> In the case of __hci_cmd_sync_ev this introduces a race where the first
> call wakes up the blocking __hci_cmd_sync_ev and lets it complete.
> However, by the time that a second __hci_cmd_sync_ev call is already in
> progress the second hci_req_cmd_complete call (from the previous
> operation) will wake up the blocking function prematurely and cause it
> to fail, as witnessed by the following log:
>
> [ 639.232195] hci_rx_work: hci0 Event packet
> [ 639.232201] hci_req_cmd_complete: opcode 0xfc8e status 0x00
> [ 639.232205] hci_sent_cmd_data: hci0 opcode 0xfc8e
> [ 639.232210] hci_req_sync_complete: hci0 result 0x00
> [ 639.232220] hci_cmd_complete_evt: hci0 opcode 0xfc8e
> [ 639.232225] hci_req_cmd_complete: opcode 0xfc8e status 0x00
> [ 639.232228] __hci_cmd_sync_ev: hci0 end: err 0
> [ 639.232234] __hci_cmd_sync_ev: hci0
> [ 639.232238] hci_req_add_ev: hci0 opcode 0xfc8e plen 250
> [ 639.232242] hci_prepare_cmd: skb len 253
> [ 639.232246] hci_req_run: length 1
> [ 639.232250] hci_sent_cmd_data: hci0 opcode 0xfc8e
> [ 639.232255] hci_req_sync_complete: hci0 result 0x00
> [ 639.232266] hci_cmd_work: hci0 cmd_cnt 1 cmd queued 1
> [ 639.232271] __hci_cmd_sync_ev: hci0 end: err 0
> [ 639.232276] Bluetooth: hci0 sending Intel patch command (0xfc8e) failed (-61)
>
> Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
> ---
> net/bluetooth/hci_core.c | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c
> index b821b19..1f461fc 100644
> --- a/net/bluetooth/hci_core.c
> +++ b/net/bluetooth/hci_core.c
> @@ -3399,6 +3399,13 @@ void hci_req_cmd_complete(struct hci_dev *hdev, u16 opcode, u8 status)
> */
> if (hdev->sent_cmd) {
> req_complete = bt_cb(hdev->sent_cmd)->req.complete;
> +
> + /* We must set the complete callback to NULL to avoid
> + * calling the callback more than once if this
> + * function gets called again.
> + */
> + bt_cb(hdev->sent_cmd)->req.complete = NULL;
> +
> if (req_complete)
> goto call_complete;
so strictly speaking we could move the NULL setting into the if clause. There is really no point in setting things back to NULL all the time.
Regards
Marcel
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH v2] Bluetooth: Fix calling request callback more than once
2013-07-27 18:57 ` Marcel Holtmann
@ 2013-07-27 19:11 ` johan.hedberg
2013-07-27 19:28 ` Marcel Holtmann
2013-07-29 12:20 ` Gustavo Padovan
0 siblings, 2 replies; 5+ messages in thread
From: johan.hedberg @ 2013-07-27 19:11 UTC (permalink / raw)
To: linux-bluetooth
From: Johan Hedberg <johan.hedberg@intel.com>
In certain circumstances, such as an HCI driver using __hci_cmd_sync_ev
with HCI_EV_CMD_COMPLETE as the expected completion event there is the
chance that hci_event_packet will call hci_req_cmd_complete twice (once
for the explicitly looked after event and another time in the actual
handler of cmd_complete).
In the case of __hci_cmd_sync_ev this introduces a race where the first
call wakes up the blocking __hci_cmd_sync_ev and lets it complete.
However, by the time that a second __hci_cmd_sync_ev call is already in
progress the second hci_req_cmd_complete call (from the previous
operation) will wake up the blocking function prematurely and cause it
to fail, as witnessed by the following log:
[ 639.232195] hci_rx_work: hci0 Event packet
[ 639.232201] hci_req_cmd_complete: opcode 0xfc8e status 0x00
[ 639.232205] hci_sent_cmd_data: hci0 opcode 0xfc8e
[ 639.232210] hci_req_sync_complete: hci0 result 0x00
[ 639.232220] hci_cmd_complete_evt: hci0 opcode 0xfc8e
[ 639.232225] hci_req_cmd_complete: opcode 0xfc8e status 0x00
[ 639.232228] __hci_cmd_sync_ev: hci0 end: err 0
[ 639.232234] __hci_cmd_sync_ev: hci0
[ 639.232238] hci_req_add_ev: hci0 opcode 0xfc8e plen 250
[ 639.232242] hci_prepare_cmd: skb len 253
[ 639.232246] hci_req_run: length 1
[ 639.232250] hci_sent_cmd_data: hci0 opcode 0xfc8e
[ 639.232255] hci_req_sync_complete: hci0 result 0x00
[ 639.232266] hci_cmd_work: hci0 cmd_cnt 1 cmd queued 1
[ 639.232271] __hci_cmd_sync_ev: hci0 end: err 0
[ 639.232276] Bluetooth: hci0 sending Intel patch command (0xfc8e) failed (-61)
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
---
v2: Only set complete callback to NULL if it was not already so
net/bluetooth/hci_core.c | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c
index b821b19..5b8a8cb 100644
--- a/net/bluetooth/hci_core.c
+++ b/net/bluetooth/hci_core.c
@@ -3399,8 +3399,16 @@ void hci_req_cmd_complete(struct hci_dev *hdev, u16 opcode, u8 status)
*/
if (hdev->sent_cmd) {
req_complete = bt_cb(hdev->sent_cmd)->req.complete;
- if (req_complete)
+
+ if (req_complete) {
+ /* We must set the complete callback to NULL to
+ * avoid calling the callback more than once if
+ * this function gets called again.
+ */
+ bt_cb(hdev->sent_cmd)->req.complete = NULL;
+
goto call_complete;
+ }
}
/* Remove all pending commands belonging to this request */
--
1.8.3.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH v2] Bluetooth: Fix calling request callback more than once
2013-07-27 19:11 ` [PATCH v2] " johan.hedberg
@ 2013-07-27 19:28 ` Marcel Holtmann
2013-07-29 12:20 ` Gustavo Padovan
1 sibling, 0 replies; 5+ messages in thread
From: Marcel Holtmann @ 2013-07-27 19:28 UTC (permalink / raw)
To: johan.hedberg; +Cc: linux-bluetooth
Hi Johan,
> In certain circumstances, such as an HCI driver using __hci_cmd_sync_ev
> with HCI_EV_CMD_COMPLETE as the expected completion event there is the
> chance that hci_event_packet will call hci_req_cmd_complete twice (once
> for the explicitly looked after event and another time in the actual
> handler of cmd_complete).
>
> In the case of __hci_cmd_sync_ev this introduces a race where the first
> call wakes up the blocking __hci_cmd_sync_ev and lets it complete.
> However, by the time that a second __hci_cmd_sync_ev call is already in
> progress the second hci_req_cmd_complete call (from the previous
> operation) will wake up the blocking function prematurely and cause it
> to fail, as witnessed by the following log:
>
> [ 639.232195] hci_rx_work: hci0 Event packet
> [ 639.232201] hci_req_cmd_complete: opcode 0xfc8e status 0x00
> [ 639.232205] hci_sent_cmd_data: hci0 opcode 0xfc8e
> [ 639.232210] hci_req_sync_complete: hci0 result 0x00
> [ 639.232220] hci_cmd_complete_evt: hci0 opcode 0xfc8e
> [ 639.232225] hci_req_cmd_complete: opcode 0xfc8e status 0x00
> [ 639.232228] __hci_cmd_sync_ev: hci0 end: err 0
> [ 639.232234] __hci_cmd_sync_ev: hci0
> [ 639.232238] hci_req_add_ev: hci0 opcode 0xfc8e plen 250
> [ 639.232242] hci_prepare_cmd: skb len 253
> [ 639.232246] hci_req_run: length 1
> [ 639.232250] hci_sent_cmd_data: hci0 opcode 0xfc8e
> [ 639.232255] hci_req_sync_complete: hci0 result 0x00
> [ 639.232266] hci_cmd_work: hci0 cmd_cnt 1 cmd queued 1
> [ 639.232271] __hci_cmd_sync_ev: hci0 end: err 0
> [ 639.232276] Bluetooth: hci0 sending Intel patch command (0xfc8e) failed (-61)
>
> Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
> ---
> v2: Only set complete callback to NULL if it was not already so
>
> net/bluetooth/hci_core.c | 10 +++++++++-
> 1 file changed, 9 insertions(+), 1 deletion(-)
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Regards
Marcel
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v2] Bluetooth: Fix calling request callback more than once
2013-07-27 19:11 ` [PATCH v2] " johan.hedberg
2013-07-27 19:28 ` Marcel Holtmann
@ 2013-07-29 12:20 ` Gustavo Padovan
1 sibling, 0 replies; 5+ messages in thread
From: Gustavo Padovan @ 2013-07-29 12:20 UTC (permalink / raw)
To: johan.hedberg; +Cc: linux-bluetooth
Hi Johan,
* johan.hedberg@gmail.com <johan.hedberg@gmail.com> [2013-07-27 14:11:14 -0500]:
> From: Johan Hedberg <johan.hedberg@intel.com>
>
> In certain circumstances, such as an HCI driver using __hci_cmd_sync_ev
> with HCI_EV_CMD_COMPLETE as the expected completion event there is the
> chance that hci_event_packet will call hci_req_cmd_complete twice (once
> for the explicitly looked after event and another time in the actual
> handler of cmd_complete).
>
> In the case of __hci_cmd_sync_ev this introduces a race where the first
> call wakes up the blocking __hci_cmd_sync_ev and lets it complete.
> However, by the time that a second __hci_cmd_sync_ev call is already in
> progress the second hci_req_cmd_complete call (from the previous
> operation) will wake up the blocking function prematurely and cause it
> to fail, as witnessed by the following log:
>
> [ 639.232195] hci_rx_work: hci0 Event packet
> [ 639.232201] hci_req_cmd_complete: opcode 0xfc8e status 0x00
> [ 639.232205] hci_sent_cmd_data: hci0 opcode 0xfc8e
> [ 639.232210] hci_req_sync_complete: hci0 result 0x00
> [ 639.232220] hci_cmd_complete_evt: hci0 opcode 0xfc8e
> [ 639.232225] hci_req_cmd_complete: opcode 0xfc8e status 0x00
> [ 639.232228] __hci_cmd_sync_ev: hci0 end: err 0
> [ 639.232234] __hci_cmd_sync_ev: hci0
> [ 639.232238] hci_req_add_ev: hci0 opcode 0xfc8e plen 250
> [ 639.232242] hci_prepare_cmd: skb len 253
> [ 639.232246] hci_req_run: length 1
> [ 639.232250] hci_sent_cmd_data: hci0 opcode 0xfc8e
> [ 639.232255] hci_req_sync_complete: hci0 result 0x00
> [ 639.232266] hci_cmd_work: hci0 cmd_cnt 1 cmd queued 1
> [ 639.232271] __hci_cmd_sync_ev: hci0 end: err 0
> [ 639.232276] Bluetooth: hci0 sending Intel patch command (0xfc8e) failed (-61)
>
> Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
> ---
> v2: Only set complete callback to NULL if it was not already so
>
> net/bluetooth/hci_core.c | 10 +++++++++-
> 1 file changed, 9 insertions(+), 1 deletion(-)
Patch has been applied to bluetooth.git. Thanks.
Gustavo
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-07-29 12:20 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-27 18:29 [PATCH] Bluetooth: Fix calling request callback more than once johan.hedberg
2013-07-27 18:57 ` Marcel Holtmann
2013-07-27 19:11 ` [PATCH v2] " johan.hedberg
2013-07-27 19:28 ` Marcel Holtmann
2013-07-29 12:20 ` Gustavo Padovan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).