[PATCH BlueZ 1/4] Add hciops_allow_sniff to disable and restore LMP_SNIFF bit

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

 



Add hciops_allow_sniff that disables sniff bit mode in link policy
settings or restores link policy to its default value allowing going
to sniff mode.
---
 plugins/hciops.c |   34 ++++++++++++++++++++++++++++++++++
 src/adapter.h    |    1 +
 2 files changed, 35 insertions(+), 0 deletions(-)

diff --git a/plugins/hciops.c b/plugins/hciops.c
index bc38c9b..d68fe00 100644
--- a/plugins/hciops.c
+++ b/plugins/hciops.c
@@ -128,6 +128,9 @@ static struct dev_info {
 	GSList *keys;
 	uint8_t pin_length;
 
+	/* default link policy */
+	uint16_t link_policy;
+
 	GSList *oob_data;
 
 	GSList *uuids;
@@ -461,6 +464,7 @@ static void start_adapter(int index)
 	if (!(dev->features[1] & LMP_PARK))
 		link_policy &= ~HCI_LP_PARK;
 
+	dev->link_policy = link_policy;
 	link_policy = htobs(link_policy);
 	hci_send_cmd(dev->sk, OGF_LINK_POLICY, OCF_WRITE_DEFAULT_LINK_POLICY,
 					sizeof(link_policy), &link_policy);
@@ -3686,6 +3690,35 @@ static int hciops_remove_remote_oob_data(int index, bdaddr_t *bdaddr)
 	return 0;
 }
 
+static int hciops_allow_sniff(int index, bdaddr_t *bdaddr, gboolean enable)
+{
+	struct dev_info *dev = &devs[index];
+	struct bt_conn *conn;
+	write_link_policy_cp cp;
+	char addr[18];
+
+	conn = find_connection(dev, bdaddr);
+	if (conn == NULL)
+		return -EINVAL;
+
+	if (enable)
+		cp.policy = dev->link_policy;
+	else
+		cp.policy = dev->link_policy & ~HCI_LP_SNIFF;
+
+	cp.handle = htobs(conn->handle);
+	cp.policy = htobs(cp.policy);
+
+	ba2str(bdaddr, addr);
+	DBG("hci%d bdaddr %s handle 0x%04x link_policy 0x%04x",
+					index, addr, cp.handle, cp.policy);
+	if (hci_send_cmd(dev->sk, OGF_LINK_POLICY, OCF_WRITE_LINK_POLICY,
+					WRITE_LINK_POLICY_CP_SIZE, &cp) < 0)
+		return -EINVAL;
+
+	return 0;
+}
+
 static struct btd_adapter_ops hci_ops = {
 	.setup = hciops_setup,
 	.cleanup = hciops_cleanup,
@@ -3728,6 +3761,7 @@ static struct btd_adapter_ops hci_ops = {
 	.read_local_oob_data = hciops_read_local_oob_data,
 	.add_remote_oob_data = hciops_add_remote_oob_data,
 	.remove_remote_oob_data = hciops_remove_remote_oob_data,
+	.allow_sniff = hciops_allow_sniff,
 };
 
 static int hciops_init(void)
diff --git a/src/adapter.h b/src/adapter.h
index 308af75..6e57d17 100644
--- a/src/adapter.h
+++ b/src/adapter.h
@@ -241,6 +241,7 @@ struct btd_adapter_ops {
 	int (*add_remote_oob_data) (int index, bdaddr_t *bdaddr, uint8_t *hash,
 							uint8_t *randomizer);
 	int (*remove_remote_oob_data) (int index, bdaddr_t *bdaddr);
+	int (*allow_sniff) (int index, bdaddr_t *bdaddr, gboolean enable);
 };
 
 int btd_register_adapter_ops(struct btd_adapter_ops *ops, gboolean priority);
-- 
1.7.5.4

--
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