[PATCH 2/2] Bluetooth: Disable page scan if all whitelisted devices are connected

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



From: Johan Hedberg <johan.hedberg@xxxxxxxxx>

When we're not connectable and all whitelisted (BR/EDR) devices are
connected it doesn't make sense to keep page scan enabled. This patch
adds code to remove entries from the whitelist upon connection complete
and to put them back into it upon disconnection complete. A new flag is
also needed so that we know which devices need to be re-entered into the
whitelist.

Signed-off-by: Johan Hedberg <johan.hedberg@xxxxxxxxx>
---
 include/net/bluetooth/hci_core.h |  1 +
 net/bluetooth/hci_event.c        | 35 ++++++++++++++++++++++++++++++++---
 2 files changed, 33 insertions(+), 3 deletions(-)

diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h
index 8394abc4fd87..48b372a415ce 100644
--- a/include/net/bluetooth/hci_core.h
+++ b/include/net/bluetooth/hci_core.h
@@ -551,6 +551,7 @@ enum {
 	HCI_CONN_FIPS,
 	HCI_CONN_STK_ENCRYPT,
 	HCI_CONN_AUTH_INITIATOR,
+	HCI_CONN_WHITELIST,
 };
 
 static inline bool hci_conn_ssp_enabled(struct hci_conn *conn)
diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c
index ba26fbfe481a..493a4bfb45e3 100644
--- a/net/bluetooth/hci_event.c
+++ b/net/bluetooth/hci_event.c
@@ -2071,6 +2071,20 @@ static void hci_conn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
 			cp.handle = ev->handle;
 			hci_send_cmd(hdev, HCI_OP_READ_REMOTE_FEATURES,
 				     sizeof(cp), &cp);
+
+			if (!hci_bdaddr_list_del(&hdev->whitelist, &ev->bdaddr,
+						 BDADDR_BREDR)) {
+				set_bit(HCI_CONN_WHITELIST, &conn->flags);
+
+				if (list_empty(&hdev->whitelist) &&
+				    !test_bit(HCI_CONNECTABLE,
+					      &hdev->dev_flags)) {
+					u8 scan = SCAN_DISABLED;
+					hci_send_cmd(hdev,
+						     HCI_OP_WRITE_SCAN_ENABLE,
+						     1, &scan);
+				}
+			}
 		}
 
 		/* Set packet type for incoming connection */
@@ -2247,9 +2261,24 @@ static void hci_disconn_complete_evt(struct hci_dev *hdev, struct sk_buff *skb)
 	mgmt_device_disconnected(hdev, &conn->dst, conn->type, conn->dst_type,
 				reason, mgmt_connected);
 
-	if (conn->type == ACL_LINK &&
-	    test_bit(HCI_CONN_FLUSH_KEY, &conn->flags))
-		hci_remove_link_key(hdev, &conn->dst);
+	if (conn->type == ACL_LINK) {
+		if (test_bit(HCI_CONN_FLUSH_KEY, &conn->flags))
+			hci_remove_link_key(hdev, &conn->dst);
+
+		if (test_bit(HCI_CONN_WHITELIST, &conn->flags)) {
+			bool was_empty = list_empty(&hdev->whitelist);
+
+			hci_bdaddr_list_add(&hdev->whitelist, &conn->dst,
+					    BDADDR_BREDR);
+
+			if (!test_bit(HCI_CONNECTABLE, &hdev->dev_flags) &&
+			    was_empty && !mgmt_powering_down(hdev)) {
+				u8 scan = SCAN_PAGE;
+				hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, 1,
+					     &scan);
+			}
+		}
+	}
 
 	params = hci_conn_params_lookup(hdev, &conn->dst, conn->dst_type);
 	if (params) {
-- 
1.9.3

--
To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




[Index of Archives]     [Bluez Devel]     [Linux Wireless Networking]     [Linux Wireless Personal Area Networking]     [Linux ATH6KL]     [Linux USB Devel]     [Linux Media Drivers]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [Big List of Linux Books]

  Powered by Linux