2022-03-21 06:20:21

by Manish Mandlik

[permalink] [raw]
Subject: [BlueZ PATCH 4/9] adv_monitor: Do not remove the device while monitoring

Bluetoothd clears temporary devices if they are not seen for 30 seconds.
When controller offloading is enabled and SamplingPeriod is set to 0xFF,
the controller sends only one advertisement report per device during the
monitoring period. In such a case, don't remove the temporary devices if
they are being monitored.

Reviewed-by: Miao-chen Chou <[email protected]>
---

src/adv_monitor.c | 4 ++++
src/device.c | 22 +++++++++++++++++++++-
src/device.h | 1 +
3 files changed, 26 insertions(+), 1 deletion(-)

diff --git a/src/adv_monitor.c b/src/adv_monitor.c
index 35d9bc9c8..77b8ea10d 100644
--- a/src/adv_monitor.c
+++ b/src/adv_monitor.c
@@ -1663,6 +1663,8 @@ static void adv_monitor_device_found_callback(uint16_t index, uint16_t length,
return;
}

+ btd_device_set_monitored(info.device, true);
+
/* Check for matched monitor in all apps */
info.monitor_handle = handle;
queue_foreach(manager->apps, notify_device_found_per_app,
@@ -1745,6 +1747,8 @@ static void adv_monitor_device_lost_callback(uint16_t index, uint16_t length,
/* Check for matched monitor in all apps */
info.monitor_handle = handle;
queue_foreach(manager->apps, notify_device_lost_per_app, &info);
+
+ btd_device_set_monitored(info.device, false);
}

/* Allocates a manager object */
diff --git a/src/device.c b/src/device.c
index 3992f9a0c..00d0cc2fb 100644
--- a/src/device.c
+++ b/src/device.c
@@ -218,6 +218,7 @@ struct btd_device {
GSList *services; /* List of btd_service */
GSList *pending; /* Pending services */
GSList *watches; /* List of disconnect_data */
+ bool monitored; /* Tracked by Adv Monitor */
bool temporary;
bool connectable;
unsigned int disconn_timer;
@@ -3206,11 +3207,30 @@ static bool device_disappeared(gpointer user_data)

dev->temporary_timer = 0;

- btd_adapter_remove_device(dev->adapter, dev);
+ /* Do not remove the device if it is being tracked by an Advertisement
+ * Monitor. It will be removed when the Advertisement Monitor stops
+ * tracking that device.
+ */
+ if (!dev->monitored)
+ btd_adapter_remove_device(dev->adapter, dev);

return FALSE;
}

+void btd_device_set_monitored(struct btd_device *device, bool monitored)
+{
+ if (!device)
+ return;
+
+ device->monitored = monitored;
+
+ /* If the device is not being monitored and the temporary_timer has
+ * already expired, it indicates that the device can be removed.
+ */
+ if (!monitored && device->temporary && !device->temporary_timer)
+ device_disappeared(device);
+}
+
static void set_temporary_timer(struct btd_device *dev, unsigned int timeout)
{
clear_temporary_timer(dev);
diff --git a/src/device.h b/src/device.h
index 071576d6b..0a4103747 100644
--- a/src/device.h
+++ b/src/device.h
@@ -87,6 +87,7 @@ bool device_is_connectable(struct btd_device *device);
bool device_is_paired(struct btd_device *device, uint8_t bdaddr_type);
bool device_is_bonded(struct btd_device *device, uint8_t bdaddr_type);
gboolean device_is_trusted(struct btd_device *device);
+void btd_device_set_monitored(struct btd_device *device, bool monitored);
void device_set_paired(struct btd_device *dev, uint8_t bdaddr_type);
void device_set_unpaired(struct btd_device *dev, uint8_t bdaddr_type);
void btd_device_set_temporary(struct btd_device *device, bool temporary);
--
2.35.1.894.gb6a874cedc-goog