aboutsummaryrefslogtreecommitdiffstats
path: root/net/bluetooth/hci_conn.c
diff options
context:
space:
mode:
authorPeter Hurley <peter@hurleysoftware.com>2012-01-13 09:11:30 -0500
committerJohan Hedberg <johan.hedberg@intel.com>2012-02-13 10:01:31 -0500
commitb7d05bad1c10a363b6b99f66ac1fa76b6892e618 (patch)
treef91706b1946c634cab519f9868e529cec289be8d /net/bluetooth/hci_conn.c
parent9ef866adf9602238c2e83e951a72a1037d4179de (diff)
Bluetooth: Fix l2cap conn failures for ssp devices
Commit 330605423c fixed l2cap conn establishment for non-ssp remote devices by not setting HCI_CONN_ENCRYPT_PEND every time conn security is tested (which was always returning failure on any subsequent security checks). However, this broke l2cap conn establishment for ssp remote devices when an ACL link was already established at SDP-level security. This fix ensures that encryption must be pending whenever authentication is also pending. Signed-off-by: Peter Hurley <peter@hurleysoftware.com> Tested-by: Daniel Wagner <daniel.wagner@bmw-carit.de> Acked-by: Marcel Holtmann <marcel@holtmann.org> Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'net/bluetooth/hci_conn.c')
-rw-r--r--net/bluetooth/hci_conn.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/net/bluetooth/hci_conn.c b/net/bluetooth/hci_conn.c
index 67c94c4dfc3c..aca71c087a1d 100644
--- a/net/bluetooth/hci_conn.c
+++ b/net/bluetooth/hci_conn.c
@@ -630,6 +630,10 @@ static int hci_conn_auth(struct hci_conn *conn, __u8 sec_level, __u8 auth_type)
630 630
631 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) { 631 if (!test_and_set_bit(HCI_CONN_AUTH_PEND, &conn->flags)) {
632 struct hci_cp_auth_requested cp; 632 struct hci_cp_auth_requested cp;
633
634 /* encrypt must be pending if auth is also pending */
635 set_bit(HCI_CONN_ENCRYPT_PEND, &conn->flags);
636
633 cp.handle = cpu_to_le16(conn->handle); 637 cp.handle = cpu_to_le16(conn->handle);
634 hci_send_cmd(conn->hdev, HCI_OP_AUTH_REQUESTED, 638 hci_send_cmd(conn->hdev, HCI_OP_AUTH_REQUESTED,
635 sizeof(cp), &cp); 639 sizeof(cp), &cp);