Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1338659

Re: [PATCH] Bluetooth: hci_core: Avoid mixing up req_complete and req_complete_skb

From Marcel Holtmann <marcel@holtmann.org>
Newsgroups linux.kernel
Subject Re: [PATCH] Bluetooth: hci_core: Avoid mixing up req_complete and req_complete_skb
Date 2016-02-20 09:10 +0100
Message-ID <r4aM1-28b-5@gated-at.bofh.it> (permalink)
References <r41IK-3Oe-5@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


Hi Douglas,

> In commit 44d271377479 ("Bluetooth: Compress the size of struct
> hci_ctrl") we squashed down the size of the structure by using a union
> with the assumption that all users would use the flag to determine
> whether we had a req_complete or a req_complete_skb.
> 
> Unfortunately we had a case in hci_req_cmd_complete() where we weren't
> looking at the flag.  This can result in a situation where we might be
> storing a hci_req_complete_skb_t in a hci_req_complete_t variable, or
> vice versa.
> 
> During some testing I found at least one case where the function
> hci_req_sync_complete() was called improperly because the kernel thought
> that it didn't require an SKB.  Looking through the stack in kgdb I
> found that it was called by hci_event_packet() and that
> hci_event_packet() had both of its locals "req_complete" and
> "req_complete_skb" pointing to the same place: both to
> hci_req_sync_complete().
> 
> Let's make sure we always check the flag.
> 
> For more details on debugging done, see <http://crbug.com/588288>.
> 
> Fixes: 44d271377479 ("Bluetooth: Compress the size of struct hci_ctrl")
> Signed-off-by: Douglas Anderson <dianders@chromium.org>
> ---
> Testing was done on a Chrome OS device on kernel 3.14 w/
> bluetooth-next backports.  Since I couldn't reliably reproduce the
> problem, I simply confirmed that existing functionality worked.
> 
> net/bluetooth/hci_core.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)

patch has been applied to bluetooth-stable tree.

Regards

Marcel

Back to linux.kernel | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

[PATCH] Bluetooth: hci_core: Avoid mixing up req_complete and req_complete_skb Douglas Anderson <dianders@chromium.org> - 2016-02-19 23:30 +0100
  Re: [PATCH] Bluetooth: hci_core: Avoid mixing up req_complete and  req_complete_skb Johan Hedberg <johan.hedberg@gmail.com> - 2016-02-20 08:10 +0100
  Re: [PATCH] Bluetooth: hci_core: Avoid mixing up req_complete and req_complete_skb Marcel Holtmann <marcel@holtmann.org> - 2016-02-20 09:10 +0100

csiph-web