Linux bluetooth development
 help / color / mirror / Atom feed
* [PATCH v3 0/3] Fix for handling unpaired devices
@ 2014-08-29  9:53 Lukasz Rymanowski
  2014-08-29  9:53 ` [PATCH v3 1/3] android/bluetooth: Add unpaired device callback Lukasz Rymanowski
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Lukasz Rymanowski @ 2014-08-29  9:53 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Lukasz Rymanowski

Following patches fix scenario when remote device is unpaired and
paired again. Issue found when testing HOG where basically after
re-pair HOG was not functional.

v2:
* bt_unpaired_register returns bool
* unpaired callback provides also bdaddr type

v3:
* Szymon comments addressed

Lukasz Rymanowski (3):
  android/bluetooth: Add unpaired device callback
  android/hidhost: Add remove bond handling
  android/gatt: Add remove bond handling

 android/bluetooth.c | 51 ++++++++++++++++++++++++++++++++++++++++++++++++---
 android/bluetooth.h |  4 ++++
 android/gatt.c      | 25 +++++++++++++++++++++++++
 android/hidhost.c   | 25 +++++++++++++++++++++++++
 4 files changed, 102 insertions(+), 3 deletions(-)

-- 
1.8.4


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH v3 1/3] android/bluetooth: Add unpaired device callback
  2014-08-29  9:53 [PATCH v3 0/3] Fix for handling unpaired devices Lukasz Rymanowski
@ 2014-08-29  9:53 ` Lukasz Rymanowski
  2014-08-29  9:53 ` [PATCH v3 2/3] android/hidhost: Add remove bond handling Lukasz Rymanowski
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Lukasz Rymanowski @ 2014-08-29  9:53 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Lukasz Rymanowski

GATT, HID, HOG, might be interested in the fact that some device has
been unpaired in order to clear cache or similar. This patch adds means
to register and unregister callback for unpaired event.
---
 android/bluetooth.c | 51 ++++++++++++++++++++++++++++++++++++++++++++++++---
 android/bluetooth.h |  4 ++++
 2 files changed, 52 insertions(+), 3 deletions(-)

diff --git a/android/bluetooth.c b/android/bluetooth.c
index 96f6101..99e2aab 100644
--- a/android/bluetooth.c
+++ b/android/bluetooth.c
@@ -41,6 +41,7 @@
 #include "lib/uuid.h"
 #include "src/shared/util.h"
 #include "src/shared/mgmt.h"
+#include "src/shared/queue.h"
 #include "src/eir.h"
 #include "lib/sdp.h"
 #include "lib/sdp_lib.h"
@@ -223,6 +224,8 @@ static struct ipc *hal_ipc = NULL;
 
 static bool kernel_conn_control = false;
 
+static struct queue *unpaired_cb_list = NULL;
+
 static void get_device_android_addr(struct device *dev, uint8_t *addr)
 {
 	/*
@@ -1700,6 +1703,24 @@ void bt_auto_connect_remove(const bdaddr_t *addr)
 	error("Failed to remove device");
 }
 
+static bool match_by_value(const void *data, const void *user_data)
+{
+	return data == user_data;
+}
+
+bool bt_unpaired_register(bt_unpaired_device_cb cb)
+{
+	if (queue_find(unpaired_cb_list, match_by_value, cb))
+		return false;
+
+	return queue_push_head(unpaired_cb_list, cb);
+}
+
+void bt_unpaired_unregister(bt_unpaired_device_cb cb)
+{
+	queue_remove(unpaired_cb_list, cb);
+}
+
 static bool rssi_above_threshold(int old, int new)
 {
 	/* only 8 dBm or more */
@@ -4325,6 +4346,14 @@ failed:
 									status);
 }
 
+static void send_unpaired_notification(void *data, void *user_data)
+{
+	bt_unpaired_device_cb cb = data;
+	struct mgmt_addr_info *addr = user_data;
+
+	cb(&addr->bdaddr, addr->type);
+}
+
 static void unpair_device_complete(uint8_t status, uint16_t length,
 					const void *param, void *user_data)
 {
@@ -4342,6 +4371,10 @@ static void unpair_device_complete(uint8_t status, uint16_t length,
 
 	update_device_state(dev, rp->addr.type, HAL_STATUS_SUCCESS, false,
 								false, false);
+
+	/* Cast rp->addr to (void *) since queue_foreach don't take const */
+	queue_foreach(unpaired_cb_list, send_unpaired_notification,
+							(void *)&rp->addr);
 }
 
 static void handle_remove_bond_cmd(const void *buf, uint16_t len)
@@ -5126,6 +5159,12 @@ bool bt_bluetooth_register(struct ipc *ipc, uint8_t mode)
 
 	DBG("mode 0x%x", mode);
 
+	unpaired_cb_list = queue_new();
+	if (!unpaired_cb_list) {
+		error("Can not allocate queue for unpaired callbacks");
+		return false;
+	}
+
 	missing_settings = adapter.current_settings ^
 					adapter.supported_settings;
 
@@ -5141,7 +5180,7 @@ bool bt_bluetooth_register(struct ipc *ipc, uint8_t mode)
 		/* Fail if controller does not support LE */
 		if (!(adapter.supported_settings & MGMT_SETTING_LE)) {
 			error("LE Mode not supported by controller");
-			return false;
+			goto failed;
 		}
 
 		/* If LE it is not yet enabled then enable it */
@@ -5156,7 +5195,7 @@ bool bt_bluetooth_register(struct ipc *ipc, uint8_t mode)
 		/* Fail if controller does not support BR/EDR */
 		if (!(adapter.supported_settings & MGMT_SETTING_BREDR)) {
 			error("BR/EDR Mode not supported");
-			return false;
+			goto failed;
 		}
 
 		/* Enable BR/EDR if it is not enabled */
@@ -5174,7 +5213,7 @@ bool bt_bluetooth_register(struct ipc *ipc, uint8_t mode)
 		break;
 	default:
 		error("Unknown mode 0x%x", mode);
-		return false;
+		goto failed;
 	}
 
 	hal_ipc = ipc;
@@ -5183,6 +5222,10 @@ bool bt_bluetooth_register(struct ipc *ipc, uint8_t mode)
 						G_N_ELEMENTS(cmd_handlers));
 
 	return true;
+
+failed:
+	queue_destroy(unpaired_cb_list, NULL);
+	return false;
 }
 
 void bt_bluetooth_unregister(void)
@@ -5197,4 +5240,6 @@ void bt_bluetooth_unregister(void)
 
 	ipc_unregister(hal_ipc, HAL_SERVICE_ID_CORE);
 	hal_ipc = NULL;
+
+	queue_destroy(unpaired_cb_list, NULL);
 }
diff --git a/android/bluetooth.h b/android/bluetooth.h
index ac7f3ad..fffb3cc 100644
--- a/android/bluetooth.h
+++ b/android/bluetooth.h
@@ -85,3 +85,7 @@ bool bt_kernel_conn_control(void);
 bool bt_auto_connect_add(const bdaddr_t *addr);
 
 void bt_auto_connect_remove(const bdaddr_t *addr);
+
+typedef void (*bt_unpaired_device_cb)(const bdaddr_t *addr, uint8_t type);
+bool bt_unpaired_register(bt_unpaired_device_cb cb);
+void bt_unpaired_unregister(bt_unpaired_device_cb cb);
-- 
1.8.4


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH v3 2/3] android/hidhost: Add remove bond handling
  2014-08-29  9:53 [PATCH v3 0/3] Fix for handling unpaired devices Lukasz Rymanowski
  2014-08-29  9:53 ` [PATCH v3 1/3] android/bluetooth: Add unpaired device callback Lukasz Rymanowski
@ 2014-08-29  9:53 ` Lukasz Rymanowski
  2014-08-29  9:54 ` [PATCH v3 3/3] android/gatt: " Lukasz Rymanowski
  2014-08-29 14:10 ` [PATCH v3 0/3] Fix for handling unpaired devices Szymon Janc
  3 siblings, 0 replies; 5+ messages in thread
From: Lukasz Rymanowski @ 2014-08-29  9:53 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Lukasz Rymanowski

With this patch HID/HOG is aware when remote device has been unpaired.
---
 android/hidhost.c | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/android/hidhost.c b/android/hidhost.c
index 5b31c95..476742e 100644
--- a/android/hidhost.c
+++ b/android/hidhost.c
@@ -1483,12 +1483,35 @@ static void connect_cb(GIOChannel *chan, GError *err, gpointer user_data)
 	}
 }
 
+static void hid_unpaired_cb(const bdaddr_t *addr, uint8_t type)
+{
+	GSList *l;
+	struct hid_device *dev;
+	char address[18];
+
+	l = g_slist_find_custom(devices, addr, device_cmp);
+	if (!l)
+		return;
+
+	dev = l->data;
+
+	ba2str(addr, address);
+	DBG("Unpaired device %s", address);
+
+	hid_device_remove(dev);
+}
+
 bool bt_hid_register(struct ipc *ipc, const bdaddr_t *addr, uint8_t mode)
 {
 	GError *err = NULL;
 
 	DBG("");
 
+	if (!bt_unpaired_register(hid_unpaired_cb)) {
+		error("hidhost: Could not register unpaired callback");
+		return false;
+	}
+
 	bacpy(&adapter_addr, addr);
 
 	ctrl_io = bt_io_listen(connect_cb, NULL, NULL, NULL, &err,
@@ -1552,4 +1575,6 @@ void bt_hid_unregister(void)
 
 	ipc_unregister(hal_ipc, HAL_SERVICE_ID_HIDHOST);
 	hal_ipc = NULL;
+
+	bt_unpaired_unregister(hid_unpaired_cb);
 }
-- 
1.8.4


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH v3 3/3] android/gatt: Add remove bond handling
  2014-08-29  9:53 [PATCH v3 0/3] Fix for handling unpaired devices Lukasz Rymanowski
  2014-08-29  9:53 ` [PATCH v3 1/3] android/bluetooth: Add unpaired device callback Lukasz Rymanowski
  2014-08-29  9:53 ` [PATCH v3 2/3] android/hidhost: Add remove bond handling Lukasz Rymanowski
@ 2014-08-29  9:54 ` Lukasz Rymanowski
  2014-08-29 14:10 ` [PATCH v3 0/3] Fix for handling unpaired devices Szymon Janc
  3 siblings, 0 replies; 5+ messages in thread
From: Lukasz Rymanowski @ 2014-08-29  9:54 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Lukasz Rymanowski

With this patch GATT is aware about unpaired devices so the local cache
can be cleared
---
 android/gatt.c | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/android/gatt.c b/android/gatt.c
index 89748d2..ae310f7 100644
--- a/android/gatt.c
+++ b/android/gatt.c
@@ -6496,10 +6496,34 @@ static bool start_listening(void)
 	return true;
 }
 
+static void gatt_unpaired_cb(const bdaddr_t *addr, uint8_t type)
+{
+	struct gatt_device *dev;
+	char address[18];
+
+	dev = find_device_by_addr(addr);
+	if (!dev)
+		return;
+
+	if (dev->bdaddr_type != type)
+		return;
+
+	ba2str(addr, address);
+	DBG("Unpaired device %s", address);
+
+	queue_remove(gatt_devices, dev);
+	destroy_device(dev);
+}
+
 bool bt_gatt_register(struct ipc *ipc, const bdaddr_t *addr)
 {
 	DBG("");
 
+	if (!bt_unpaired_register(gatt_unpaired_cb)) {
+		error("gatt: Could not register unpaired callback");
+		return false;
+	}
+
 	if (!start_listening())
 		return false;
 
@@ -6628,6 +6652,7 @@ void bt_gatt_unregister(void)
 	crypto = NULL;
 
 	bt_le_unregister();
+	bt_unpaired_unregister(gatt_unpaired_cb);
 }
 
 unsigned int bt_gatt_register_app(const char *uuid, gatt_type_t type,
-- 
1.8.4


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH v3 0/3] Fix for handling unpaired devices
  2014-08-29  9:53 [PATCH v3 0/3] Fix for handling unpaired devices Lukasz Rymanowski
                   ` (2 preceding siblings ...)
  2014-08-29  9:54 ` [PATCH v3 3/3] android/gatt: " Lukasz Rymanowski
@ 2014-08-29 14:10 ` Szymon Janc
  3 siblings, 0 replies; 5+ messages in thread
From: Szymon Janc @ 2014-08-29 14:10 UTC (permalink / raw)
  To: Lukasz Rymanowski; +Cc: linux-bluetooth

Hi Łukasz,

On Friday 29 of August 2014 11:53:57 Lukasz Rymanowski wrote:
> Following patches fix scenario when remote device is unpaired and
> paired again. Issue found when testing HOG where basically after
> re-pair HOG was not functional.
> 
> v2:
> * bt_unpaired_register returns bool
> * unpaired callback provides also bdaddr type
> 
> v3:
> * Szymon comments addressed
> 
> Lukasz Rymanowski (3):
>   android/bluetooth: Add unpaired device callback
>   android/hidhost: Add remove bond handling
>   android/gatt: Add remove bond handling
> 
>  android/bluetooth.c | 51 ++++++++++++++++++++++++++++++++++++++++++++++++---
>  android/bluetooth.h |  4 ++++
>  android/gatt.c      | 25 +++++++++++++++++++++++++
>  android/hidhost.c   | 25 +++++++++++++++++++++++++
>  4 files changed, 102 insertions(+), 3 deletions(-)
> 

Applied. Thanks. 

-- 
Best regards, 
Szymon Janc

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-08-29 14:10 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-29  9:53 [PATCH v3 0/3] Fix for handling unpaired devices Lukasz Rymanowski
2014-08-29  9:53 ` [PATCH v3 1/3] android/bluetooth: Add unpaired device callback Lukasz Rymanowski
2014-08-29  9:53 ` [PATCH v3 2/3] android/hidhost: Add remove bond handling Lukasz Rymanowski
2014-08-29  9:54 ` [PATCH v3 3/3] android/gatt: " Lukasz Rymanowski
2014-08-29 14:10 ` [PATCH v3 0/3] Fix for handling unpaired devices Szymon Janc

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox